I was trying to fix some code last night and had a similar experience. The CGI version had some problems and I added a few
print STDERR lines so I could run the script from the command line, redirect the output to a dummy file, and read what was being printed.
The command line version never entered the subroutines I was expecting it to. It took me a while to figure out that the difference was the CGI was getting a bunch of empty parameters in the URL and I was leaving those out of the command line version. For example, the URL said:
http://localhost/cgi-bin/script.pl?param1=apple¶m2=¶m3=
While, at the command line, I was entering:
perl -w script.pl param1=apple > foo
I don't know if that could be what's happening in your case, but it hung me up for a while. Once I added the empty parameters to the command line, the print statements told me what I needed to know.
Hope that helps.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.