Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
iwpt_comile
vinylrecord
hi can anyone help us with iwpt_compile.....
we are running the foll. command and getting the errors as shown.
can anyon efigure out he errors...
/softwares/interwoven/iw-home/bin/iwpt_compile.ipl -pt /default/main/insurance/WORKAREA/SOP/templatedata/category1/template1/presentation/main.tpl -iw_pt-dcr /default/main/insurance/WORKAREA/SOP/templatedata/category1/template1/data/dcr1 -ofile /softwares/J/a2.htm
Useless use of a variable in void context at (eval 9) line 71.
Useless use of a variable in void context at (eval 9) line 72.
Useless use of a variable in void context at (eval 9) line 73.
Useless use of a variable in void context at (eval 9) line 74.
Use of uninitialized value at (eval 9) line 100.
Use of uninitialized value at (eval 9) line 101.
Find more posts tagged with
Comments
tvaughan
Those line numbers are referring to an in-memory perl file that you can capture and debug if you use the -ocode command.
So, add this string to the end of your command: "-ocode ****.ipl"
Then, once you run it, you'll see a file named "****.ipl" in your current directory. Crack it open, then check out lines 71, 72, 73, and 74.
If you make that file executable and run it, you should get "a2.htm"
Hope that helps,
Tom
RobertPisor
After you generate the perl file as Tom describes, you can step through the code using the perl debugger if eyeballing the code doesn't help.
Robert