Salve,

ho installato l'interprete PERL su apache 2.2.4 e ho configurato il file httpd.conf specifando queste direttive aggiuntive:

APACHE è installato in c:\programmi\apache su piattaforma Windows (XP SP3)

ma quando eseguo lo script con questo riferimento http://localhost/cgi-bin/test.pl mi dice:
Forbidden
You don't have permission to access /test.pl on this server.




<Directory />
Options FollowSymLinks +ExecCGI
AllowOverride None
Allow from all
</Directory>


AddHandler cgi-script .pl
ScriptAlias /cgi-bin/ "C:/Programmi/Apache/cgi-bin/"


dove test contiene:
Codice PHP:
 #!c:/Perl/bin/perl.exe
use CGI;
$mio_nome 'Gabriel';
print
"Content-type: text/html\n\n"
print 
"Ciao, mi chiamo $mio_nome"

<Directory />
Options FollowSymLinks +ExecCGI
AllowOverride None
Allow from all
</Directory>


AddHandler cgi-script .pl
ScriptAlias /cgi-bin/ "C:/Programmi/Apache/cgi-bin/"


un suggerimento ? vi ringrazio