Re: PB URGENT APACHE

Pàgina inicial

Reply to this message
Autor: sCALP
Data:  
A: guilde
CC: n_hahn
Assumpte: Re: PB URGENT APACHE
salut!
quel est le probleme dans ton error_log ?
pense a mettre les bonnes directives dans ton httpd.conf, je pense a:

<Directory "/usr/local/httpd/cgi-local">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>


et

<Location /cgi-local>
AllowOverride None
Options +ExecCGI -Includes
SetHandler cgi-script
<IfDefine PERL>
AddHandler perl-script .pl
PerlHandler Apache::Registry
PerlSendHeader On
</IfDefine>
</Location>

ensuite, essaie de creer un fichier perl minimaliste pour voir:

#!/usr/bin/perl
print "Content-type: text/plain\n\n";
print "test";

et vois si ca marche... (bien sur, chmod 755)

(bon, je vais VRAIMENT prendre un peu de temp pour rediger ce HOWTOSTART
pour apache... ca craint, j'ai toutes mes notes, mais j'arrive pas a faire
qq chose de propre...)