> I've got the below script saved on my server - but every time I use it I > get an Internel Server Error! I've set the permission to 755 but still no > luck. Any ideas folks?
First of all, make your life easier with use strict; use warnings; right after the shebang line. Second of all, the simple error page that most browsers show is not verbose enough to help you debug your program. Check your web server's error log, that will give you Perl's error output and help you with relevant error messages, not just "Hey, an error occured but I have no idea what it is..." If you still have trouble finding out what the error is after doing that and checking the messages in your error log, come back, post the errors and the script, and we'll probably be able to help you better. Good luck, J-S -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>