Bonjour à tous,

Je suis confronté à un soucis de configuration de mon serveur apache.
Dans mon fichier de conf inclut dans le httpd.conf, j'ai ceci:

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
39
 
ameVirtualHost *:80
 
<VirtualHost *:80>
  ServerName localhost
  DocumentRoot "C:/www/html"
  #php_value include_path ".;C:/www/lib"
 
  DirectoryIndex index.php
  <Directory "C:/www/html">
    #
    # 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.2/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>
</VirtualHost>
Comme vous pouvez le constater, j'ai été forcé de commencer le php_value include_path ".;C:/www/lib". Dès que je dé-commente cette ligne, j'ai une erreur au démarrage du service httpd:

"The requested operation has failed!" (sans écriture dans error.log)

Vous aurez deviné: le service tourne sous Windows (Server 2003).

Une idée ?