|
They have to give the folder permission to execute scripts like that:
<Directory "/data_hdd/work/httpd/htdocs/test_cgi/">
Options +ExecCGI
</Directory>
(from a Debian config file)
and if you want to use various filenames, they need to be named as well like that:
AddHandler cgi-script .cgi .pl .ph
|