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>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>Eingabe</title>
</head>
<body>
<div align="center">
<form action="ausgabe.phtml" method="post">
Feld1: <input name="feld1" size="60" maxlength="60"><br>
Feld2: <input name="feld2" size="60" maxlength="60"><br>
<input type="submit" value="OK">
<input type="reset" value="Abbrechen">
</form>
</div>
</body>
</html>
</pre><hr>
Fichier ausgabe.phtml :
<pre><font class="small">code:</font><hr>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>Ausgabe</title>
</head><body>
<?php
print "Feld 1:".$feld1."<br>Feld 2:".$feld2;
?>
</body>
</html>
</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
++
Fichier eingabe.html :
<pre><font class="small">code:</font><hr>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>Eingabe</title>
</head>
<body>
<div align="center">
<form action="ausgabe.phtml" method="post">
Feld1: <input name="feld1" size="60" maxlength="60"><br>
Feld2: <input name="feld2" size="60" maxlength="60"><br>
<input type="submit" value="OK">
<input type="reset" value="Abbrechen">
</form>
</div>
</body>
</html>
</pre><hr>
Fichier ausgabe.phtml :
<pre><font class="small">code:</font><hr>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>Ausgabe</title>
</head><body>
<?php
print "Feld 1:".$feld1."<br>Feld 2:".$feld2;
?>
</body>
</html>
</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
++