in reply to Problem using Image::Magick
Or make this to see if Image::Magick is working:
!/usr/local/bin/perl print "Content-type: text/html\n\n" ; print "<pre>\n" ; eval{ use Image::Magick ;}; print "$@\n" ; eval{ my $image = Image::Magick->new ;} ; print "$@\n" ; print "</pre>\n" ;
Check you Perl path too! I use: #!/usr/bin/perl
And make a simple script to see if Perl works:
#!/usr/bin/perl print "Content-type: text/html\n\n" ; print "Hello!\n" ;
Note that exit(0) can be interpreted as error in some OS!
Graciliano M. P.
"The creativity is the expression of the liberty".
|
|---|