This kind of problem from a CGI script yells out to pay attention to the current directory. It's often "/" instead of the directory in which the script resides. If that's the problem, adding the following will do the trick.
use File::Spec::Functions qw( rel2abs ); use File::Basename qw( dirname ); BEGIN { chdir(dirname(rel2abs($0))); }
Update: Oops, typed basename instead of rel2abs. Fixed.
In reply to Re^3: wait command syntax
by ikegami
in thread wait command syntax
by jperlq
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |