Thanks for the prompt response. I am afraid I have covered all the common screw ups (I have been know to make them quite often). Everything you site has been checked and is ok. The problem appears to be an area where the perl code is actually generating some javascript (not my script). The code appears to be attempting a windows.open on a simple text file (a log) as in ".....window.open("data/lo
Thanks,
Pete
Main Topics
Browse All Topics





by: edster9999Posted on 2009-06-07 at 12:39:30ID: 24567812
This error happens when you are running an external script like a .pl or .cgi type script and it has to call an external program to run it.
Check the firstl line of the script. It will (should) be something like
#!/bin/perl
make sure you have perl installed. Make sure the executable is in that place and can be run by the web user.
make sure the script file you are running has 'x' permision for the user the apache is running as (or the one that would run the script)