in reply to execute perl script in html
#!/perl/bin/perl.exe makes this look like you're running on Windows. If you type counter.pl while in your cgi-bin directory, does your script execute? If not, you need to associate .pl files with the perl executable.
Alternately, invoke perl with your script as an argument instead of trying to invoke your script directly.
If you're not on Windows, make sure the execute bit is set on your script.
|
|---|