Petit problème PHP-Apache-HTML

Einbert

Membre expert
Club iGen
24 Avril 2001
1 239
20
Voilà, j'ai configuré Apache pour faire fonctionner PHP, les scripts cgi et le shtml...J'ai fait de petit test et tout fonctionnait...J'ai fait encore un autre test et là...oups, petit problème...Je ne sais pas si c'est dû à Apache où il faut encore paramétrer qqch, ou si c'est une question de privilège...Le mieux c'est que je mette d'abord mon code html test, resp. les 2 fichiers html et leur code respectif :

Fichier eingabe.html :
<pre><font class="small">code:</font><hr>
&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Eingabe&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div align="center"&gt;
&lt;form action="ausgabe.phtml" method="post"&gt;
Feld1: &lt;input name="feld1" size="60" maxlength="60"&gt;&lt;br&gt;
Feld2: &lt;input name="feld2" size="60" maxlength="60"&gt;&lt;br&gt;
&lt;input type="submit" value="OK"&gt;
&lt;input type="reset" value="Abbrechen"&gt;
&lt;/form&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre><hr>

Fichier ausgabe.phtml :
<pre><font class="small">code:</font><hr>
&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Ausgabe&lt;/title&gt;
&lt;/head&gt;&lt;body&gt;
&lt;?php
print "Feld 1:".$feld1."&lt;br&gt;Feld 2:".$feld2;
?&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre><hr>

Ces 2 fichiers se trouvent dans mon répertoire Sites. Comme vous l'aurez remarqué j'ai 2 champs où je peux rentrer qqch avec le fichier eingabe.html .J'y accède par l'adresse http://127.0.0.1/~einbert/eingabe.html
Quand je rentre des valeurs dans chaque champ et que je presse le bouton OK, voici ce que ça m'affiche :

Method Not Allowed

The requested method POST is not allowed for the URL /~einbert/ausgabe.phtml.



Apache/1.3.26 Server at 127.0.0.1 Port 80



Donc le problème vient-il d'Apache ou d'un problème de permission ou des deux ?? /ubbthreads/http://forums.macg.co/vbulletin/images/smiliesold/confused.gif

Merci

++
 
J'ai modifié le fichier httpd.conf

++
 
En effet...c'était juste ça, merci /ubbthreads/http://forums.macg.co/vbulletin/images/smiliesold/smile.gif

++
 
Si tu veux k il gère le .phtml il faut l ajouter aussi dans le fichier de config d'Apache, ou alors (si tu as un os x server) dans la partie "MIME" du serveur web dans Admin Server.