
August 15th, 2000, 01:11 PM
|
|
Junior Member
|
|
Join Date: Aug 2000
Location: Frederick,MD USA
Posts: 6
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
I don't know if you're running the public html from a unix box, but if you are, check your permission settings by doing 'll' at the command line, and make sure it is executable to the public. it needs to look like this:
progname.pl -rwxr-xr-x
if your setting are not like this, try changing the permission:
chmod a-r-w-x progname.pl <enter>
chmod u=rwx g=rx o=rx progname.pl<enter>
If this doesn't work, then you are calling the script wrong from your html code.
|