in reply to Problem using Image::Magick
Since you appear to be new to CGIs, let me suggest a two-step debugging process that will start to give you some experience and confidence. First, try the simple script
Assuming this works, try#!/usr/bin/perl print "Content-type: text/plain\n\n"; print "It works!\n";
If this fails, your ISP hasn't installed Image::Magick. If it works, however, you're on your way. Uncomment the lines in your script and try again.#!/usr/bin/perl use Image::Magick; print "Content-type: text/plain\n\n"; print "It still works!\n";
Your server's error logs, if you have access to them, might also provide some useful information.
|
|---|