in reply to PerlMagick "file not found" issues
use CGI; use strict; my $cgi = new CGI; print $cgi->header; print $cgi->start_html; open (FH,"<full path of your file>") or print "Can't :$!"; close FH; print $cgi->end_html;
or something similar. That should narrow down whether you have a code problem (which looks unlikely) or a problem actually reading the file, for whatever (possibly apache related) reason.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: PerlMagick "file not found" issues
by darkphorm (Beadle) on Mar 17, 2005 at 16:43 UTC |