Bonjour,

J'explique ma config
Windows 2003
apache 2.2
php 5.2.4
oracle 10G

apparement tout est bien installé.Apache + php +oracle communiquent bien ensemble.

Le probléme est le suivant. J'ai une page de connexion. Je post ma page sur elle même et apache me renvois une erreur 500.
Dans le error.log d'appache aucune erreur.
dans le acces.log j'ai:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
 
IP - - [02/Jul/2008:12:56:06 +0200] "GET /login.php HTTP/1.1" 200 1670
IP - - [02/Jul/2008:12:56:17 +0200] "POST /login.php HTTP/1.1" 500 459
Visiblement l'acces a la page via GET se passe bien, mais par POST, il y a une erreur.
J'ai viré tout les fichiers .htaccess

le httpd.conf est configuré comme ca:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
 
 
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>
 
 
<Directory "C:/Program Files/Apache Group/Apache2/htdocs">
 
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
#   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important.  Please see
# http://httpd.apache.org/docs/2.0/mod/core.html#options
# for more information.
#
    Options Indexes FollowSymLinks
 
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
#   Options FileInfo AuthConfig Limit
#
    AllowOverride None
 
#
# Controls who can get stuff from this server.
#
    Order allow,deny
    Allow from all
 
</Directory>

Je ne comprend pas.Quelqu'un aurrait-il une idéee?

Merci