I want to execute a CGI on my server, but I have this issue:
run-detectors: unable to find an interpreter for /media/FTP/outils/cgi-bin/monitorCGI.cgi, >refererer: http://outils.mynd/backburner.
Premature end of scripts header: monitorCGI.cgi, referer: >http://outils.mynd/backburner.
My apache2.conf
looks like so:
<location /media/FTP/racine/cgi-bin/>
Options +ExecCGI
AddHandler cgi-script .cgi
</Location>
My Vhost looks like so:
>VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName SERV-FTP
DocumentRoot /media/FTP
Directory /media/FTP/racine/cgi-bin>
Options +Indexes FollowSymLinks MultiViews +ExecCGI
AddHandler cgi-script cgi
Order allow,deny
allow from all
/Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Should I link wine to execute this CGI ?