-
view PDF, etc from TS
Not certain what is happening If I click on a PDF/DOC/etc in TS 6.5 (Solaris) it asks me if I want to download it. click download & the browser starts it up in the appropriate plugin. Going to the apache http://server:81/iwmount/..../blah.pdf works great. So it only does this through TS. No proxy settings. Anyway to get…
-
view DCR view source of VFE ?
In TS 5.5 when you did a view DCR, it showed the source content of the VFE rahter than the rendered content. In 6.5 is shows the rendered information when you click on a DCR. I would expect 99% of the world thinks this is an improvement. I happen to be working at the 1 %. Any way to turn this off ? Andy
-
iPlanet support ?
Customer is doing a new implementation. The TS 6.5 SP2 doc as well as the compatibility matrix say iPlanet 6.0 SP2, customer tells me that 6.0 is EOL coming up soon. So they want 6.1 Anyone know the differences ? Anything major ? Basic assumption is that this is no big deal. But do not know for sure. Obviously TS 6.5 SP2…
-
Remove Workflow Tab ?
Hey I am trying to remove the workflow tab on cc-pro TS 6.5 SP2 on Solaris I thought I could remove this line: <tab id="iw.ccpro.workflow.tab" target="_top"/> from: /usr/iw-home/local/config/lib/content_center/reference/etc/conf/ref_ccpro_ui_common.xml and rebuilding the GUI, no luck
-
Backingstore from Solaris to Linux ?
I am investigating a Linux install. Customer has Solaris. I know the backingstore from DOS to Unix does not work. What about within flavors of Unix ? If the users are the same (LDAP) can I copy iwstore from Unix and expect it to work on Linux ? This is not planned until the 6.7 release of TS on Linux.
-
remove menu items per role
So the latest UI customization guide says you cannot remove specific menu items based on role, like you could in 5.X. Any changes to this ? Is this functionality planned ? Andy
-
Does iwodcmd require GUI install ?
OD 6.0.2 Solaris 2.8 I can run iwodstart foo & it works however iwodcmd start foo fails ***ERROR - Starting deployment. Caught exception. Details: REQUEST_DENIED I added myself to odadmin and did a serverreset. Tips/Pointers/RTFMs appreciated
-
6.5 SP not autostarting...
I am puzzled. Solaris 2.8 installed 6.5 (no search) installed OD 6.0.2 Base works fine Installed 6.5 SP2 (BTW, it took 1 GB in uninstall space) Now TS does not auto start. OpenAPI is failing. I stop OD, then start TS, and OD everything works. Anybody see this before ? Andy
-
Adding Buttons to VFE
I am trying the example in VFE Devlopers Guide I created an html page in iw-home/httpd/iw/ewebeditpro/glossary.html (attached) These 2 lines are in the visualformat.cfg (in the appropriate spots): <button command="glosslink" /> <cmd name="glosslink" key="world" /> The new button shows up, but nothing happens when pressed.…
-
right click in VFE ?
I need to add some functionality in VFE. So if a user selects some text, they need to be able to insert some JS around it. Since it is JS, the users should not need to do it by hand. I am pretty certain on how to do this with a button, but it appears there is no way to add to the right click menu, correct ? Any other ways…
-
Changing Event Subsystem after the fact ?
TS 6.5 Solaris 2.8 Event subsystem is full & shut everything down. Completely. So I am looking to move it to Oracle. I have found instructions to move it to MSSQL on DOS, but nothing on Unix. The only instructions are to reinstall (which is really not that bad, but...) Anyone know how to change it on Unix ? TIA Andy
-
multiple file DCR upload ?
I have a callout in a DCR to upload a file. Similar to the one posted in the tech lib, it uses <INPUT TYPE="file" NAME="filename"... to pop up a browser to select a local file for upload. Now the users want multiple file upload. I can add a button that is upload and browse for another file. But that is not very clean.…
-
FormAPI to change initial dir
From a previous post, I tried this to change the initalDIr for a browse window var sectionImg = IWDatacapture.getItem("/sectionImg"); alert(sectionImg); sectionImg.initialDir ="/images/category/Computers"; whether or not the initialDir is defined, nothing get changed. No errors get posted, my alerts are fine.…
-
change vailid extensions via formapi ?
Cannot find it in the docs, but can one change the expected extensions via formAPI ? Any clue how ?
-
JS changes not being picked up
This is very strange Solaris 2.9, TS 6.5 I have a JS, (autonaming of DCR) use this call: <script src="/iw/autoname_dcr.js"/> Any changes (add an alert, etc) never happen. It is like it is cached somewhere (from my implementation yesterday) If I copy it to autoname_dcr1.js and point my DCT to it, everything works. Tried…
-
OD not sending complete file
sender, on Solaris iwodstart -v Version 5.6.0.1.0 Build 21220 Interwoven 20030618 Receiver on Linux: ./iwodserverstatus -v Version 5.6.0.1.0 Build 21220 Interwoven 20030618 File sent: -rwxrwxr-x 1 pandeyam interwvn 5986 Oct 19 19:33 globalNav.xml OD says it sent: Directories deployed : 0 Files deployed : 1 Links deployed :…
-
set encoding for PT ?
Not certian if/how this should work I have a field in a DCR, Title = This & That It is saved in the DCR as This & That Cool My PT (defined as UTF-8) has the following line: <Title><iw_value name="dcr.Title"/></Title> Which provides <Title>This & That</Title> I thought by specifying the encoding (and leaving…
-
bad duration ?
TS 6.5 Solaris 2.9 I have a script to help clean old jobs, but I am seeing some that return a negative # for the duration: $time = $task->GetDuration(); I get this task id - 11699 time - -23 But the job & task has been active for 5 days. Ever seen this before ? Here is the whole code I am running:…
-
TPL for preview only ?
Is there a way to set up a TPL for preview only and another for generate ? Does not look like there is a way to tell templating.cfg to use 1 for preview and another for generate. The only option I can think of is to have 1 tpl, that figures out if it is a review or generate (how ? by looking at output file name zz_ ?) and…
-
listener cannot bind...
Hi In a test environment, OD 5.6 SP1 (cannot upgrade right now) Linux on a virtual server (there are multiple IP addresses, OD is assigned to a standalone VS) I have changed RMI, odrcvr, deploy, etc to virtual IP address netstat -an shows no conflicts on 20014 [root@ussdiweb92v log]# netstat -an | grep 20014…
-
replicants and formapi
I have a replicant of the folloing container: Text islink Radio (Y/N) URL so if the radio is Y then URL is visible otherwise not. my problem is that if I have 2 replicants, and add a 3rd in the middle, then the last replicant does not work anymore. DCT attached Tips/Pointers/RTFMs appreciated Andy