Article details
| |
Permission set to 755, but it still errors?
The solution is to add '-w' after the Perl path in your Perl script.
It will look like this: #!/usr/bin/perl -w
This will enable 'warnings' in Perl.
Some Perl scripts do not run without this option.
Also, all perl and cgi files must be saved in Unix format. If you have used notepad to save your file, it will save it in Windows format which will cause the error.
|
Comments
|