IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Apache Discussion :

[Apache2.2+Php5] Php5 refuse de fonctionner .. [Fait]


Sujet :

Apache

  1. #1
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Août 2005
    Messages
    48
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 48
    Points : 28
    Points
    28
    Par défaut [Apache2.2+Php5] Php5 refuse de fonctionner ..
    Bonjour,

    Desirant passer à une configuration plus "pro" que Xampp et autres EsayPhp, je me suis lancé dans une installation séparée de Apache et Php5 sur Windows (idem pour MySQL,etc... mais pour l'instant je galere deja à l'etape de Php5).
    Donc apres avoir installé Apache puis Php5 et configuré les fichiers httpd.conf et php.ini, tout fonctionne bien pour le code html mais dès qu'il y a du code php j'obtiens invariablement une page blanche ... et aucun message d'erreur.

    Exemple:

    test.html avec juste ....
    <div style="text-align:center;font-size:24px;font-weight:bold;">
    ...Ca marche (je passe les autres balises <html> <title> etc)


    Mais si je remplace par un simple <?php echo "Bonjour!"; ?> (et renomme test.php bien sur) , ben là ça marche plus .
    J'obtiens une page blanche sans meme un message d'erreur, j'ai essayé pleins d'autres scripts php c'est pareil.


    Vraiment j'y comprends rien et n'ai aucune idée d'où vient le problème.


    Config Materiel : Windows XP Pro sur un PIII 1GHz 512Mo de RAM

    Config Logiciel: - apache_2.2.9-win32-x86-no_ssl-r2.msi
    - php-5.2.6-win32-installer.msi

    Répertoire d'installation d'Apache c:\OCS\Apache2.2
    Répertoire d'installation de PHP c:\OCS\php5
    Répertoire racine web c:\OCS\Apache2.2\htdocs

    /!\ Lors de de l'installation de php j'ai bien choisi en tant que module d'Apache 2.2, et bien choisi le bon repertoire pour le lien vers le fichier httpd.conf


    Fichier httpd.conf
    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
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    #
    # This is the main Apache HTTP server configuration file.  It contains the
    # configuration directives that give the server its instructions.
    # See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
    # In particular, see 
    # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
    # for a discussion of each configuration directive.
    #
    # Do NOT simply read the instructions in here without understanding
    # what they do.  They're here only as hints or reminders.  If you are unsure
    # consult the online docs. You have been warned.  
    #
    # Configuration and logfile names: If the filenames you specify for many
    # of the server's control files begin with "/" (or "drive:/" for Win32), the
    # server will use that explicit path.  If the filenames do *not* begin
    # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
    # with ServerRoot set to "C:/OCS/Apache2.2" will be interpreted by the
    # server as "C:/OCS/Apache2.2/logs/foo.log".
    #
    # NOTE: Where filenames are specified, you must use forward slashes
    # instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
    # If a drive letter is omitted, the drive on which httpd.exe is located
    # will be used by default.  It is recommended that you always supply
    # an explicit drive letter in absolute paths to avoid confusion.
     
    #
    # ServerRoot: The top of the directory tree under which the server's
    # configuration, error, and log files are kept.
    #
    # Do not add a slash at the end of the directory path.  If you point
    # ServerRoot at a non-local disk, be sure to point the LockFile directive
    # at a local disk.  If you wish to share the same ServerRoot for multiple
    # httpd daemons, you will need to change at least LockFile and PidFile.
    #
    ServerRoot "C:/OCS/Apache2.2"
     
    #
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, instead of the default. See also the <VirtualHost>
    # directive.
    #
    # Change this to Listen on specific IP addresses as shown below to 
    # prevent Apache from glomming onto all bound IP addresses.
    #
    #Listen 12.34.56.78:80
    Listen 80
     
    #
    # Dynamic Shared Object (DSO) Support
    #
    # To be able to use the functionality of a module which was built as a DSO you
    # have to place corresponding `LoadModule' lines at this location so the
    # directives contained in it are actually available _before_ they are used.
    # Statically compiled modules (those listed by `httpd -l') do not need
    # to be loaded here.
    #
    # Example:
    # LoadModule foo_module modules/mod_foo.so
    #
    LoadModule actions_module modules/mod_actions.so
    LoadModule alias_module modules/mod_alias.so
    LoadModule asis_module modules/mod_asis.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    #LoadModule auth_digest_module modules/mod_auth_digest.so
    #LoadModule authn_alias_module modules/mod_authn_alias.so
    #LoadModule authn_anon_module modules/mod_authn_anon.so
    #LoadModule authn_dbd_module modules/mod_authn_dbd.so
    #LoadModule authn_dbm_module modules/mod_authn_dbm.so
    LoadModule authn_default_module modules/mod_authn_default.so
    LoadModule authn_file_module modules/mod_authn_file.so
    #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
    #LoadModule authz_dbm_module modules/mod_authz_dbm.so
    LoadModule authz_default_module modules/mod_authz_default.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_host_module modules/mod_authz_host.so
    #LoadModule authz_owner_module modules/mod_authz_owner.so
    LoadModule authz_user_module modules/mod_authz_user.so
    LoadModule autoindex_module modules/mod_autoindex.so
    #LoadModule cache_module modules/mod_cache.so
    #LoadModule cern_meta_module modules/mod_cern_meta.so
    LoadModule cgi_module modules/mod_cgi.so
    #LoadModule charset_lite_module modules/mod_charset_lite.so
    #LoadModule dav_module modules/mod_dav.so
    #LoadModule dav_fs_module modules/mod_dav_fs.so
    #LoadModule dav_lock_module modules/mod_dav_lock.so
    #LoadModule dbd_module modules/mod_dbd.so
    #LoadModule deflate_module modules/mod_deflate.so
    LoadModule dir_module modules/mod_dir.so
    #LoadModule disk_cache_module modules/mod_disk_cache.so
    #LoadModule dumpio_module modules/mod_dumpio.so
    LoadModule env_module modules/mod_env.so
    #LoadModule expires_module modules/mod_expires.so
    #LoadModule ext_filter_module modules/mod_ext_filter.so
    #LoadModule file_cache_module modules/mod_file_cache.so
    #LoadModule filter_module modules/mod_filter.so
    #LoadModule headers_module modules/mod_headers.so
    #LoadModule ident_module modules/mod_ident.so
    #LoadModule imagemap_module modules/mod_imagemap.so
    LoadModule include_module modules/mod_include.so
    #LoadModule info_module modules/mod_info.so
    LoadModule isapi_module modules/mod_isapi.so
    #LoadModule ldap_module modules/mod_ldap.so
    #LoadModule logio_module modules/mod_logio.so
    LoadModule log_config_module modules/mod_log_config.so
    #LoadModule log_forensic_module modules/mod_log_forensic.so
    #LoadModule mem_cache_module modules/mod_mem_cache.so
    LoadModule mime_module modules/mod_mime.so
    #LoadModule mime_magic_module modules/mod_mime_magic.so
    LoadModule negotiation_module modules/mod_negotiation.so
    #LoadModule proxy_module modules/mod_proxy.so
    #LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    #LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    #LoadModule proxy_connect_module modules/mod_proxy_connect.so
    #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    #LoadModule proxy_http_module modules/mod_proxy_http.so
    #LoadModule rewrite_module modules/mod_rewrite.so
    LoadModule setenvif_module modules/mod_setenvif.so
    #LoadModule speling_module modules/mod_speling.so
    #LoadModule ssl_module modules/mod_ssl.so
    #LoadModule status_module modules/mod_status.so
    #LoadModule substitute_module modules/mod_substitute.so
    #LoadModule unique_id_module modules/mod_unique_id.so
    #LoadModule userdir_module modules/mod_userdir.so
    #LoadModule usertrack_module modules/mod_usertrack.so
    #LoadModule version_module modules/mod_version.so
    #LoadModule vhost_alias_module modules/mod_vhost_alias.so
     
    <IfModule !mpm_netware_module>
    <IfModule !mpm_winnt_module>
    #
    # If you wish httpd to run as a different user or group, you must run
    # httpd as root initially and it will switch.  
    #
    # User/Group: The name (or #number) of the user/group to run httpd as.
    # It is usually good practice to create a dedicated user and group for
    # running httpd, as with most system services.
    #
    User daemon
    Group daemon
     
    </IfModule>
    </IfModule>
     
    # 'Main' server configuration
    #
    # The directives in this section set up the values used by the 'main'
    # server, which responds to any requests that aren't handled by a
    # <VirtualHost> definition.  These values also provide defaults for
    # any <VirtualHost> containers you may define later in the file.
    #
    # All of these directives may appear inside <VirtualHost> containers,
    # in which case these default settings will be overridden for the
    # virtual host being defined.
    #
     
    #
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed.  This address appears on some server-generated pages, such
    # as error documents.  e.g. admin@your-domain.com
    #
    ServerAdmin "secret ;o)"
     
    #
    # ServerName gives the name and port that the server uses to identify itself.
    # This can often be determined automatically, but we recommend you specify
    # it explicitly to prevent problems during startup.
    #
    # If your host doesn't have a registered DNS name, enter its IP address here.
    #
    ServerName "secret ;o)"
     
    #
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    #
    DocumentRoot "C:/OCS/Apache2.2/htdocs"
     
    #
    # Each directory to which Apache has access can be configured with respect
    # to which services and features are allowed and/or disabled in that
    # directory (and its subdirectories). 
    #
    # First, we configure the "default" to be a very restrictive set of 
    # features.  
    #
    <Directory />
        Options FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
    </Directory>
     
    #
    # Note that from this point forward you must specifically allow
    # particular features to be enabled - so if something's not working as
    # you might expect, make sure that you have specifically enabled it
    # below.
    #
     
    #
    # This should be changed to whatever you set DocumentRoot to.
    #
    <Directory "C:/OCS/Apache2.2/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.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>
     
    #
    # DirectoryIndex: sets the file that Apache will serve if a directory
    # is requested.
    #
    <IfModule dir_module>
        DirectoryIndex index.html
    </IfModule>
     
    #
    # The following lines prevent .htaccess and .htpasswd files from being 
    # viewed by Web clients. 
    #
    <FilesMatch "^\.ht">
        Order allow,deny
        Deny from all
        Satisfy All
    </FilesMatch>
     
    #
    # ErrorLog: The location of the error log file.
    # If you do not specify an ErrorLog directive within a <VirtualHost>
    # container, error messages relating to that virtual host will be
    # logged here.  If you *do* define an error logfile for a <VirtualHost>
    # container, that host's errors will be logged there and not here.
    #
    ErrorLog "logs/error.log"
     
    #
    # LogLevel: Control the number of messages logged to the error_log.
    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    #
    LogLevel warn
     
    <IfModule log_config_module>
        #
        # The following directives define some format nicknames for use with
        # a CustomLog directive (see below).
        #
        LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
        LogFormat "%h %l %u %t \"%r\" %>s %b" common
     
        <IfModule logio_module>
          # You need to enable mod_logio.c to use %I and %O
          LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
        </IfModule>
     
        #
        # The location and format of the access logfile (Common Logfile Format).
        # If you do not define any access logfiles within a <VirtualHost>
        # container, they will be logged here.  Contrariwise, if you *do*
        # define per-<VirtualHost> access logfiles, transactions will be
        # logged therein and *not* in this file.
        #
        CustomLog "logs/access.log" common
     
        #
        # If you prefer a logfile with access, agent, and referer information
        # (Combined Logfile Format) you can use the following directive.
        #
        #CustomLog "logs/access.log" combined
    </IfModule>
     
    <IfModule alias_module>
        #
        # Redirect: Allows you to tell clients about documents that used to 
        # exist in your server's namespace, but do not anymore. The client 
        # will make a new request for the document at its new location.
        # Example:
        # Redirect permanent /foo http://"secret ;o)"/bar
     
        #
        # Alias: Maps web paths into filesystem paths and is used to
        # access content that does not live under the DocumentRoot.
        # Example:
        # Alias /webpath /full/filesystem/path
        #
        # If you include a trailing / on /webpath then the server will
        # require it to be present in the URL.  You will also likely
        # need to provide a <Directory> section to allow access to
        # the filesystem path.
     
        #
        # ScriptAlias: This controls which directories contain server scripts. 
        # ScriptAliases are essentially the same as Aliases, except that
        # documents in the target directory are treated as applications and
        # run by the server when requested rather than as documents sent to the
        # client.  The same rules about trailing "/" apply to ScriptAlias
        # directives as to Alias.
        #
        ScriptAlias /cgi-bin/ "C:/OCS/Apache2.2/cgi-bin/"
     
    </IfModule>
     
    <IfModule cgid_module>
        #
        # ScriptSock: On threaded servers, designate the path to the UNIX
        # socket used to communicate with the CGI daemon of mod_cgid.
        #
        #Scriptsock logs/cgisock
    </IfModule>
     
    #
    # "C:/OCS/Apache2.2/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    #
    <Directory "C:/OCS/Apache2.2/cgi-bin">
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
    </Directory>
     
    #
    # DefaultType: the default MIME type the server will use for a document
    # if it cannot otherwise determine one, such as from filename extensions.
    # If your server contains mostly text or HTML documents, "text/plain" is
    # a good value.  If most of your content is binary, such as applications
    # or images, you may want to use "application/octet-stream" instead to
    # keep browsers from trying to display binary files as though they are
    # text.
    #
    DefaultType text/plain
     
    <IfModule mime_module>
        #
        # TypesConfig points to the file containing the list of mappings from
        # filename extension to MIME-type.
        #
        TypesConfig conf/mime.types
     
        #
        # AddType allows you to add to or override the MIME configuration
        # file specified in TypesConfig for specific file types.
        #
        #AddType application/x-gzip .tgz
        #
        # AddEncoding allows you to have certain browsers uncompress
        # information on the fly. Note: Not all browsers support this.
        #
        #AddEncoding x-compress .Z
        #AddEncoding x-gzip .gz .tgz
        #
        # If the AddEncoding directives above are commented-out, then you
        # probably should define those extensions to indicate media types:
        #
        AddType application/x-compress .Z
        AddType application/x-gzip .gz .tgz
     
        #
        # AddHandler allows you to map certain file extensions to "handlers":
        # actions unrelated to filetype. These can be either built into the server
        # or added with the Action directive (see below)
        #
        # To use CGI scripts outside of ScriptAliased directories:
        # (You will also need to add "ExecCGI" to the "Options" directive.)
        #
        #AddHandler cgi-script .cgi
     
        # For type maps (negotiated resources):
        #AddHandler type-map var
     
        #
        # Filters allow you to process content before it is sent to the client.
        #
        # To parse .shtml files for server-side includes (SSI):
        # (You will also need to add "Includes" to the "Options" directive.)
        #
        #AddType text/html .shtml
        #AddOutputFilter INCLUDES .shtml
    </IfModule>
     
    #
    # The mod_mime_magic module allows the server to use various hints from the
    # contents of the file itself to determine its type.  The MIMEMagicFile
    # directive tells the module where the hint definitions are located.
    #
    #MIMEMagicFile conf/magic
     
    #
    # Customizable error responses come in three flavors:
    # 1) plain text 2) local redirects 3) external redirects
    #
    # Some examples:
    #ErrorDocument 500 "The server made a boo boo."
    #ErrorDocument 404 /missing.html
    #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
    #ErrorDocument 402 http://"secret"/subscription_info.html
    #
     
    #
    # EnableMMAP and EnableSendfile: On systems that support it, 
    # memory-mapping or the sendfile syscall is used to deliver
    # files.  This usually improves server performance, but must
    # be turned off when serving from networked-mounted 
    # filesystems or if support for these functions is otherwise
    # broken on your system.
    #
    #EnableMMAP off
    #EnableSendfile off
     
    # Supplemental configuration
    #
    # The configuration files in the conf/extra/ directory can be 
    # included to add extra features or to modify the default configuration of 
    # the server, or you may simply copy their contents here and change as 
    # necessary.
     
    # Server-pool management (MPM specific)
    #Include conf/extra/httpd-mpm.conf
     
    # Multi-language error messages
    #Include conf/extra/httpd-multilang-errordoc.conf
     
    # Fancy directory listings
    #Include conf/extra/httpd-autoindex.conf
     
    # Language settings
    #Include conf/extra/httpd-languages.conf
     
    # User home directories
    #Include conf/extra/httpd-userdir.conf
     
    # Real-time info on requests and configuration
    #Include conf/extra/httpd-info.conf
     
    # Virtual hosts
    #Include conf/extra/httpd-vhosts.conf
     
    # Local access to the Apache HTTP Server Manual
    #Include conf/extra/httpd-manual.conf
     
    # Distributed authoring and versioning (WebDAV)
    #Include conf/extra/httpd-dav.conf
     
    # Various default settings
    #Include conf/extra/httpd-default.conf
     
    # Secure (SSL/TLS) connections
    #Include conf/extra/httpd-ssl.conf
    #
    # Note: The following must must be present to support
    #       starting without SSL on platforms with no /dev/random equivalent
    #       but a statically compiled-in mod_ssl.
    #
    <IfModule ssl_module>
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    </IfModule>
     
     
    #BEGIN PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL
    PHPIniDir "C:/OCS/php5/"
    LoadModule php5_module "C:/OCS/php5/php5apache2_2.dll"
    #END PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL

    Fichier php.ini
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    C'est trop long pour rentrer ... y a pas un moyen de selectionner facilement tout ce qui n'est pas en commentaires avec notepad++ ou autre ?

    Si quelqu'un pouvait m'aider car là vraiment j'en peux plus de tourner en rond.

    Merci d'avance.

  2. #2
    Rédacteur
    Avatar de _Mac_
    Profil pro
    Inscrit en
    Août 2005
    Messages
    9 601
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 9 601
    Points : 12 977
    Points
    12 977
    Par défaut
    2 choses à faire :
    1. Regarder dans les logs d'erreur d'Apache voir s'il y a qqch
    2. Vérifier dans le fichier php.ini qu'il accepte bien les tags longs <?php

  3. #3
    Expert éminent sénior

    Profil pro
    Inscrit en
    Juin 2002
    Messages
    6 152
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2002
    Messages : 6 152
    Points : 17 777
    Points
    17 777
    Par défaut
    L'obtention d'une page blanche pourrait résulter d'une erreur fatale de PHP (interne, syntaxe, etc) qui pourrait ne pas être affichée puisque paramétrable par l'intermédiaire de la directive PHP display_errors. Valeur à vérifier, mais s'il y a bien une telle erreur, elle devrait, comme l'a indiqué _Mac_, être reportée dans le journal d'erreur du serveur (fonctionnement comme module uniquement, ce qui est le cas ici).

  4. #4
    Rédacteur
    Avatar de _Mac_
    Profil pro
    Inscrit en
    Août 2005
    Messages
    9 601
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 9 601
    Points : 12 977
    Points
    12 977
    Par défaut
    Ca pourrait être aussi lié au fait que le code PHP n'est pas du tout interprété et est renvoyé tel quel au navigateur qui affiche une page blanche car il ne sait pas le comprendre.

  5. #5
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Août 2005
    Messages
    48
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 48
    Points : 28
    Points
    28
    Par défaut
    Bonjour,

    Merci pour vos réponses et désolé pour le silence mais j'y ai pas retouché pendant le week-end
    Comme j'arrive toujours pas à trouver le pourquoi du comment tout seul voici le fichier log d'apache, en fait il y a un problème de librairies non chargées (et apparemment introuvables) mais j'arrive pas à le résoudre c'est surtout ça...


    C:\OCS\Apache2.2\logs\error.log
    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
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    Starting the Apache2.2 service
    The Apache2.2 service is running.
    ] Apache/2.2.9 (Win32) configured -- resuming normal operations
    [Fri Aug 22 12:26:41 2008] [notice] Server built: Jun 13 2008 04:04:59
    [Fri Aug 22 12:26:41 2008] [notice] Parent: Created child process 4008
    [Fri Aug 22 12:26:41 2008] [notice] Child 4008: Child process is running
    [Fri Aug 22 12:26:41 2008] [notice] Child 4008: Acquired the start mutex.
    [Fri Aug 22 12:26:41 2008] [notice] Child 4008: Starting 64 worker threads.
    [Fri Aug 22 12:26:41 2008] [notice] Child 4008: Starting thread to listen on port 80.
    [Fri Aug 22 14:21:35 2008] [notice] Parent: Received restart signal -- Restarting the server.
    [Fri Aug 22 14:21:35 2008] [notice] Child 4008: Exit event signaled. Child process is ending.
    [Fri Aug 22 14:21:35 2008] [notice] Apache/2.2.9 (Win32) configured -- resuming normal operations
    [Fri Aug 22 14:21:35 2008] [notice] Server built: Jun 13 2008 04:04:59
    [Fri Aug 22 14:21:35 2008] [notice] Parent: Created child process 3680
    [Fri Aug 22 14:21:35 2008] [notice] Child 3680: Child process is running
    [Fri Aug 22 14:21:36 2008] [notice] Child 4008: Released the start mutex
    [Fri Aug 22 14:21:36 2008] [notice] Child 3680: Acquired the start mutex.
    [Fri Aug 22 14:21:36 2008] [notice] Child 3680: Starting 64 worker threads.
    [Fri Aug 22 14:21:37 2008] [notice] Child 4008: All worker threads have exited.
    [Fri Aug 22 14:21:37 2008] [notice] Child 4008: Child process is exiting
    [Fri Aug 22 14:21:37 2008] [notice] Child 3680: Starting thread to listen on port 80.
    [Fri Aug 22 14:22:31 2008] [error] [client 127.0.0.1] File does not exist: C:/OCS/Apache2.2/htdocs/favicon.ico
    [Fri Aug 22 14:22:34 2008] [error] [client 127.0.0.1] File does not exist: C:/OCS/Apache2.2/htdocs/favicon.ico
    [Fri Aug 22 14:24:42 2008] [notice] Parent: Received shutdown signal -- Shutting down the server.
    [Fri Aug 22 14:24:42 2008] [notice] Child 3680: Exit event signaled. Child process is ending.
    [Fri Aug 22 14:24:43 2008] [notice] Child 3680: Released the start mutex
    [Fri Aug 22 14:24:44 2008] [notice] Child 3680: All worker threads have exited.
    [Fri Aug 22 14:24:44 2008] [notice] Child 3680: Child process is exiting
    [Fri Aug 22 14:24:44 2008] [notice] Parent: Child process exited successfully.
    Starting the Apache2.2 service
    The Apache2.2 service is running.
    to load dynamic library 'C:\\OCS\\php5\\ext\\php_curl.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_fdf.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_interbase.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_ldap.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_mcrypt.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_mhash.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_msql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_mssql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_mysql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_mysqli.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_oci8.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_openssl.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_firebird.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_mssql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_mysql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_oci.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_oci8.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_pgsql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_sqlite_external.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pgsql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pspell.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_sybase_ct.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_http.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_ibm_db2.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_ifx.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_ingres2.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_maxdb.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_mcrypt_filter.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_mcve.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_netools.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_oracle.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_ibm.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_informix.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_ssh2.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Notice:  Constant XML_ELEMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_TEXT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_CDATA_SECTION_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_REF_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_PI_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_COMMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_TYPE_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_FRAG_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_NOTATION_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_HTML_DOCUMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DTD_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ELEMENT_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_NAMESPACE_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_LOCAL_NAMESPACE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_CDATA already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ID already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_IDREF already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_IDREFS already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ENTITY already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NMTOKEN already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NMTOKENS already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ENUMERATION already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NOTATION already defined in Unknown on line 0
    [Fri Aug 22 14:32:47 2008] [notice] Apache/2.2.9 (Win32) PHP/5.2.6 configured -- resuming normal operations
    [Fri Aug 22 14:32:47 2008] [notice] Server built: Jun 13 2008 04:04:59
    [Fri Aug 22 14:32:47 2008] [notice] Parent: Created child process 1752
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_curl.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_fdf.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_interbase.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_ldap.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_mcrypt.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_mhash.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_msql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_mssql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_mysql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_mysqli.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_oci8.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_openssl.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_firebird.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_mssql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_mysql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_oci.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_oci8.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_pgsql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_sqlite_external.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pgsql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pspell.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_sybase_ct.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_http.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_ibm_db2.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_ifx.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_ingres2.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_maxdb.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_mcrypt_filter.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_mcve.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_netools.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_oracle.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_ibm.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_pdo_informix.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:\\OCS\\php5\\ext\\php_ssh2.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    Cannot find module (IP-MIB): At line 0 in (none)
    Cannot find module (IF-MIB): At line 0 in (none)
    Cannot find module (TCP-MIB): At line 0 in (none)
    Cannot find module (UDP-MIB): At line 0 in (none)
    Cannot find module (SNMPv2-MIB): At line 0 in (none)
    Cannot find module (SNMPv2-SMI): At line 0 in (none)
    Cannot find module (UCD-SNMP-MIB): At line 0 in (none)
    Cannot find module (UCD-DEMO-MIB): At line 0 in (none)
    Cannot find module (SNMP-TARGET-MIB): At line 0 in (none)
    Cannot find module (SNMP-VIEW-BASED-ACM-MIB): At line 0 in (none)
    Cannot find module (SNMP-COMMUNITY-MIB): At line 0 in (none)
    Cannot find module (UCD-DLMOD-MIB): At line 0 in (none)
    Cannot find module (SNMP-FRAMEWORK-MIB): At line 0 in (none)
    Cannot find module (SNMP-MPD-MIB): At line 0 in (none)
    Cannot find module (SNMP-USER-BASED-SM-MIB): At line 0 in (none)
    Cannot find module (SNMP-NOTIFICATION-MIB): At line 0 in (none)
    Cannot find module (SNMPv2-TM): At line 0 in (none)
    PHP Notice:  Constant XML_ELEMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_TEXT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_CDATA_SECTION_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_REF_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_PI_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_COMMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_TYPE_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_FRAG_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_NOTATION_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_HTML_DOCUMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DTD_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ELEMENT_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_NAMESPACE_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_LOCAL_NAMESPACE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_CDATA already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ID already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_IDREF already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_IDREFS already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ENTITY already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NMTOKEN already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NMTOKENS already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ENUMERATION already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NOTATION already defined in Unknown on line 0
    [Fri Aug 22 14:32:47 2008] [notice] Child 1752: Child process is running
    [Fri Aug 22 14:32:47 2008] [notice] Child 1752: Acquired the start mutex.
    [Fri Aug 22 14:32:47 2008] [notice] Child 1752: Starting 64 worker threads.
    [Fri Aug 22 14:32:48 2008] [notice] Child 1752: Starting thread to listen on port 80.
    [Fri Aug 22 14:33:00 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(SAM/php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Fri Aug 22 14:33:00 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Fri Aug 22 14:33:11 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(C:\\OCS\\Apache2.2\\SAM\\php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Fri Aug 22 14:33:11 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Fri Aug 22 14:34:24 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(C:\\OCS\\Apache2.2\\SAM\\php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Fri Aug 22 14:34:24 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Fri Aug 22 14:34:26 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(C:\\OCS\\Apache2.2\\SAM\\php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Fri Aug 22 14:34:26 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Fri Aug 22 14:34:27 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(C:\\OCS\\Apache2.2\\SAM\\php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Fri Aug 22 14:34:27 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Fri Aug 22 14:34:28 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(C:\\OCS\\Apache2.2\\SAM\\php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Fri Aug 22 14:34:28 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Fri Aug 22 14:34:32 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(C:\\OCS\\Apache2.2\\SAM\\php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Fri Aug 22 14:34:32 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Fri Aug 22 14:34:34 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(C:\\OCS\\Apache2.2\\SAM\\php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Fri Aug 22 14:34:34 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Fri Aug 22 14:34:35 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(C:\\OCS\\Apache2.2\\SAM\\php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Fri Aug 22 14:34:35 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Fri Aug 22 14:34:53 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(C:\\OCS\\Apache2.2\\SAM\\php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Fri Aug 22 14:34:53 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Fri Aug 22 14:36:22 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(SAM/php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Fri Aug 22 14:36:22 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Fri Aug 22 14:36:26 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(C:\\OCS\\Apache2.2\\SAM\\php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Fri Aug 22 14:36:26 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Fri Aug 22 14:36:27 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(C:\\OCS\\Apache2.2\\SAM\\php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Fri Aug 22 14:36:27 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Fri Aug 22 14:40:26 2008] [notice] Parent: Received restart signal -- Restarting the server.
    [Fri Aug 22 14:40:26 2008] [notice] Child 1752: Exit event signaled. Child process is ending.
    [Fri Aug 22 14:40:27 2008] [notice] Child 1752: Released the start mutex
    [Fri Aug 22 14:40:28 2008] [notice] Child 1752: All worker threads have exited.
    ....etc etc etc etc

    Encore merci.

  6. #6
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Août 2005
    Messages
    48
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 48
    Points : 28
    Points
    28
    Par défaut
    Sinon concernant le php.ini (résumé sinon ça rentre pas)

    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
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    ; Enable the PHP scripting language engine under Apache.
    engine = On
     
    ; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
    zend.ze1_compatibility_mode = Off
     
    ; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
    ; NOTE: Using short tags should be avoided when developing applications or
    ; libraries that are meant for redistribution, or deployment on PHP
    ; servers which are not under your control, because short tags may not
    ; be supported on the target server. For portable, redistributable code,
    ; be sure not to use short tags.
    short_open_tag = Off
     
    ; Allow ASP-style <% %> tags.
    asp_tags = Off
     
    ; The number of significant digits displayed in floating point numbers.
    precision    =  14
     
    ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
    y2k_compliance = On
    .
    .
    .
    allow_call_time_pass_reference = Off
     
    ;
    ; Safe Mode
    ;
    safe_mode = Off
     
    ; By default, Safe Mode does a UID compare check when
    ; opening files. If you want to relax this to a GID compare,
    ; then turn on safe_mode_gid.
    safe_mode_gid = Off
     
    ; When safe_mode is on, UID/GID checks are bypassed when
    ; including files from this directory and its subdirectories.
    ; (directory must also be in include_path or full path must
    ; be used when including)
    safe_mode_include_dir =
     
    ; When safe_mode is on, only executables located in the safe_mode_exec_dir
    ; will be allowed to be executed via the exec family of functions.
    safe_mode_exec_dir =
     
    ; Setting certain environment variables may be a potential security breach.
    ; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
    ; the user may only alter environment variables whose names begin with the
    ; prefixes supplied here.  By default, users will only be able to set
    ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
    ;
    ; Note:  If this directive is empty, PHP will let the user modify ANY
    ; environment variable!
    safe_mode_allowed_env_vars = PHP_
     
    ; This directive contains a comma-delimited list of environment variables that
    ; the end user won't be able to change using putenv().  These variables will be
    ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
    safe_mode_protected_env_vars = LD_LIBRARY_PATH
     
    ; open_basedir, if set, limits all file operations to the defined directory
    ; and below.  This directive makes most sense if used in a per-directory
    ; or per-virtualhost web server configuration file. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    ;open_basedir =
     
    ; This directive allows you to disable certain functions for security reasons.
    ; It receives a comma-delimited list of function names. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    disable_functions =
     
    ; This directive allows you to disable certain classes for security reasons.
    ; It receives a comma-delimited list of class names. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    disable_classes =
    .
    .
    .
    expose_php = On
     
     
    ;;;;;;;;;;;;;;;;;;;
    ; Resource Limits ;
    ;;;;;;;;;;;;;;;;;;;
     
    max_execution_time = 30     ; Maximum execution time of each script, in seconds
    max_input_time = 60	; Maximum amount of time each script may spend parsing request data
    ;max_input_nesting_level = 64 ; Maximum input variable nesting level
    memory_limit = 128M      ; Maximum amount of memory a script may consume (128MB)
     
    .
    .
    .
    error_reporting  =  E_ALL
     
    ; Print out errors (as a part of the output).  For production web sites,
    ; you're strongly encouraged to turn this feature off, and use error logging
    ; instead (see below).  Keeping display_errors enabled on a production web site
    ; may reveal security information to end users, such as file paths on your Web
    ; server, your database schema or other information.
    ;
    ; possible values for display_errors:
    ;
    ; Off          - Do not display any errors 
    ; stderr       - Display errors to STDERR (affects only CGI/CLI binaries!)   
    ; On or stdout - Display errors to STDOUT (default)
    ;  
    ; To output errors to STDERR with CGI/CLI:              
    ;display_errors = "stderr"
    ;
    ; Default
    ;
    display_errors = Off
     
    ; Even when display_errors is on, errors that occur during PHP's startup
    ; sequence are not displayed.  It's strongly recommended to keep
    ; display_startup_errors off, except for when debugging.
    display_startup_errors = Off
     
    ; Log errors into a log file (server-specific log, stderr, or error_log (below))
    ; As stated above, you're strongly advised to use error logging in place of
    ; error displaying on production web sites.
    log_errors = On
     
    ; Set maximum length of log_errors. In error_log information about the source is
    ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
    log_errors_max_len = 1024
     
    ; Do not log repeated messages. Repeated errors must occur in same file on same
    ; line until ignore_repeated_source is set true.
    ignore_repeated_errors = Off
     
    ; Ignore source of message when ignoring repeated messages. When this setting
    ; is On you will not log errors with repeated messages from different files or
    ; source lines.
    ignore_repeated_source = Off
     
    ; If this parameter is set to Off, then memory leaks will not be shown (on
    ; stdout or in the log). This has only effect in a debug compile, and if
    ; error reporting includes E_WARNING in the allowed list
    report_memleaks = On
     
    ;report_zend_debug = 0
     
    ; Store the last error/warning message in $php_errormsg (boolean).
    track_errors = Off
     
    ; Disable the inclusion of HTML tags in error messages.
    ; Note: Never use this feature for production boxes.
    ;html_errors = Off
     
    ; If html_errors is set On PHP produces clickable error messages that direct
    ; to a page describing the error or function causing the error in detail.
    ; You can download a copy of the PHP manual from http://www.php.net/docs.php
    ; and change docref_root to the base URL of your local copy including the
    ; leading '/'. You must also specify the file extension being used including
    ; the dot.
    ; Note: Never use this feature for production boxes.
    ;docref_root = "/phpmanual/"
    ;docref_ext = .html
     
    ; String to output before an error message.
    ;error_prepend_string = "<font color=#ff0000>"
     
    ; String to output after an error message.
    ;error_append_string = "</font>"
     
    ; Log errors to specified file.
    ;error_log = filename
     
    ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
    ;error_log = syslog
     
     
    ;;;;;;;;;;;;;;;;;
    ; Data Handling ;
    ;;;;;;;;;;;;;;;;;
    ;
    ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
     
    ; The separator used in PHP generated URLs to separate arguments.
    ; Default is "&".
    ;arg_separator.output = "&amp;"
     
    ; List of separator(s) used by PHP to parse input URLs into variables.
    ; Default is "&".
    ; NOTE: Every character in this directive is considered as separator!
    ;arg_separator.input = ";&"
     
    ; This directive describes the order in which PHP registers GET, POST, Cookie,
    ; Environment and Built-in variables (G, P, C, E & S respectively, often
    ; referred to as EGPCS or GPC).  Registration is done from left to right, newer
    ; values override older values.
    variables_order = "GPCS"
     
    ; Whether or not to register the EGPCS variables as global variables.  You may
    ; want to turn this off if you don't want to clutter your scripts' global scope
    ; with user data.  This makes most sense when coupled with track_vars - in which
    ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
    ; variables.
    ;
    ; You should do your best to write your scripts so that they do not require
    ; register_globalsF to be on;  Using form variables as globals can easily lead
    ; to possible security problems, if the code is not very well thought of.
    register_globals = Off
     
    ; Whether or not to register the old-style input arrays, HTTP_GET_VARS
    ; and friends.  If you're not using them, it's recommended to turn them off,
    ; for performance reasons.
    register_long_arrays = Off
     
    ; This directive tells PHP whether to declare the argv&argc variables (that
    ; would contain the GET information).  If you don't use these variables, you
    ; should turn it off for increased performance.
    register_argc_argv = Off
     
    ; When enabled, the SERVER and ENV variables are created when they're first
    ; used (Just In Time) instead of when the script starts. If these variables
    ; are not used within a script, having this directive on will result in a
    ; performance gain. The PHP directives register_globals, register_long_arrays,
    ; and register_argc_argv must be disabled for this directive to have any affect.
    auto_globals_jit = On
     
    ; Maximum size of POST data that PHP will accept.
    post_max_size = 8M
     
    ; Magic quotes
    ;
     
    ; Magic quotes for incoming GET/POST/Cookie data.
    magic_quotes_gpc = Off
     
    ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
    magic_quotes_runtime = Off
     
    ; Use Sybase-style magic quotes (escape ' with '' instead of \').
    magic_quotes_sybase = Off
     
    ; Automatically add files before or after any PHP document.
    auto_prepend_file =
    auto_append_file =
     
    ; As of 4.0b4, PHP always outputs a character encoding by default in
    ; the Content-type: header.  To disable sending of the charset, simply
    ; set it to be empty.
    ;
    ; PHP's built-in default is text/html
    default_mimetype = "text/html"
    ;default_charset = "iso-8859-1"
     
    ; Always populate the $HTTP_RAW_POST_DATA variable.
    ;always_populate_raw_post_data = On
     
     
    ;;;;;;;;;;;;;;;;;;;;;;;;;
    ; Paths and Directories ;
    ;;;;;;;;;;;;;;;;;;;;;;;;;
     
    ; UNIX: "/path1:/path2"
    ;include_path = ".:/php/includes"
    ;
    ; Windows: "\path1;\path2"
    ;include_path = ".;c:\php\includes"
     
    ; The root of the PHP pages, used only if nonempty.
    ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
    ; if you are running php as a CGI under any web server (other than IIS)
    ; see documentation for security issues.  The alternate is to use the
    ; cgi.force_redirect configuration below
    doc_root ="C:/OCS/Apache2.2/htdocs"
     
    ; The directory under which PHP opens the script using /~username used only
    ; if nonempty.
    user_dir =
     
    ; Directory in which the loadable extensions (modules) reside.
    extension_dir ="C:/OCS/php5/ext/"
     
    ; Whether or not to enable the dl() function.  The dl() function does NOT work
    ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
    ; disabled on them.
    enable_dl = On
    .
    .
    .
    ;;;;;;;;;;;;;;;;
    ; File Uploads ;
    ;;;;;;;;;;;;;;;;
     
    ; Whether to allow HTTP file uploads.
    file_uploads = On
     
    ; Temporary directory for HTTP uploaded files (will use system default if not
    ; specified).
    ;upload_tmp_dir =
     
    ; Maximum allowed size for uploaded files.
    upload_max_filesize = 2M
     
     
    ;;;;;;;;;;;;;;;;;;
    ; Fopen wrappers ;
    ;;;;;;;;;;;;;;;;;;
     
    ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
    allow_url_fopen = On
     
    ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
    allow_url_include = Off
     
    ; Define the anonymous ftp password (your email address)
    ;from="john@doe.com"
     
    ; Define the User-Agent string
    ; user_agent="PHP"
     
    ; Default timeout for socket based streams (seconds)
    default_socket_timeout = 60
    upload_tmp_dir="C:\WINDOWS\Temp"
    session.save_path="C:\WINDOWS\Temp"
     
    ; If your scripts have to deal with files from Macintosh systems,
    ; or you are running on a Mac and need to deal with files from
    ; unix or win32 systems, setting this flag will cause PHP to
    ; automatically detect the EOL character in those files so that
    ; fgets() and file() will work regardless of the source of the file.
    ; auto_detect_line_endings = Off
     
    .
    .
    .

  7. #7
    Rédacteur
    Avatar de _Mac_
    Profil pro
    Inscrit en
    Août 2005
    Messages
    9 601
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 9 601
    Points : 12 977
    Points
    12 977
    Par défaut
    Citation Envoyé par straitch Voir le message
    (résumé sinon ça rentre pas)
    Pas de chance : faudrait avoir toute la partie concernant les extensions.

    Mais d'abord, est-ce que le fichier php_curl.dll existe quelque part ? S'il n'existe pas dans C:\OCS\php5\ext, c'est un peu normal que ça jette une erreur. De là, 2 solutions possibles : soit tu mets la main sur ce fichier, tu le copies dans C:\OCS\php5\ext et ça marche, soit tu édites php.ini et tu commentes la ligne extension=php_curl.dll parce que tu sais que tu n'auras jamais besoin des extensions CURL :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    ;extension=php_curl.dll

  8. #8
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Août 2005
    Messages
    48
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 48
    Points : 28
    Points
    28
    Par défaut
    Re ... merci de bien vouloir m'aider encore.

    Donc concernant le php_curl.dll c'est bon il bien là et dans le bon dossier.
    J'ai quand meme tenté de mettre la ligne correspondante en commentaire dans le php.ini pour voir et ça n'a strictement rien changé.

    Sinon pour la partie concernant les extensions dans php voilà 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
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    [PHP_BZ2]
    extension=php_bz2.dll
    [PHP_CURL]
    extension=php_curl.dll
    [PHP_DBA]
    extension=php_dba.dll
    [PHP_DBASE]
    extension=php_dbase.dll
    [PHP_FDF]
    extension=php_fdf.dll
    [PHP_GD2]
    extension=php_gd2.dll
    [PHP_GETTEXT]
    extension=php_gettext.dll
    [PHP_GMP]
    extension=php_gmp.dll
    [PHP_IMAP]
    extension=php_imap.dll
    [PHP_INTERBASE]
    extension=php_interbase.dll
    [PHP_LDAP]
    extension=php_ldap.dll
    [PHP_MBSTRING]
    extension=php_mbstring.dll
    [PHP_MCRYPT]
    extension=php_mcrypt.dll
    [PHP_MHASH]
    extension=php_mhash.dll
    [PHP_MIME_MAGIC]
    extension=php_mime_magic.dll
    [PHP_MING]
    extension=php_ming.dll
    [PHP_MSQL]
    extension=php_msql.dll
    [PHP_MSSQL]
    extension=php_mssql.dll
    [PHP_MYSQL]
    extension=php_mysql.dll
    [PHP_MYSQLI]
    extension=php_mysqli.dll
    [PHP_OCI8]
    extension=php_oci8.dll
    [PHP_OPENSSL]
    extension=php_openssl.dll
    [PHP_PDO]
    extension=php_pdo.dll
    [PHP_PDO_FIREBIRD]
    extension=php_pdo_firebird.dll
    [PHP_PDO_MSSQL]
    extension=php_pdo_mssql.dll
    [PHP_PDO_MYSQL]
    extension=php_pdo_mysql.dll
    [PHP_PDO_OCI]
    extension=php_pdo_oci.dll
    [PHP_PDO_OCI8]
    extension=php_pdo_oci8.dll
    [PHP_PDO_ODBC]
    extension=php_pdo_odbc.dll
    [PHP_PDO_PGSQL]
    extension=php_pdo_pgsql.dll
    [PHP_PDO_SQLITE]
    extension=php_pdo_sqlite.dll
    [PHP_PDO_SQLITE_EXTERNAL]
    extension=php_pdo_sqlite_external.dll
    [PHP_PGSQL]
    extension=php_pgsql.dll
    [PHP_PSPELL]
    extension=php_pspell.dll
    [PHP_SHMOP]
    extension=php_shmop.dll
    [PHP_SNMP]
    extension=php_snmp.dll
    [PHP_SOAP]
    extension=php_soap.dll
    [PHP_SOCKETS]
    extension=php_sockets.dll
    [PHP_SQLITE]
    extension=php_sqlite.dll
    [PHP_SYBASE_CT]
    extension=php_sybase_ct.dll
    [PHP_TIDY]
    extension=php_tidy.dll
    [PHP_XMLRPC]
    extension=php_xmlrpc.dll
    [PHP_XSL]
    extension=php_xsl.dll
    [PHP_ZIP]
    extension=php_zip.dll
    [PHP_ADT]
    extension=php_adt.dll
    [PHP_AMF]
    extension=php_amf.dll
    [PHP_BCOMPILER]
    extension=php_bcompiler.dll
    [PHP_BITSET]
    extension=php_bitset.dll
    [PHP_BLENC]
    extension=php_blenc.dll
    [PHP_BZ2_FILTER]
    extension=php_bz2_filter.dll
    [PHP_CLASSKIT]
    extension=php_classkit.dll
    [PHP_CPDF]
    extension=php_cpdf.dll
    [PHP_CRACK]
    extension=php_crack.dll
    [PHP_CVSCLIENT]
    extension=php_cvsclient.dll
    [PHP_DB]
    extension=php_db.dll
    [PHP_DBX]
    extension=php_dbx.dll
    [PHP_DIO]
    extension=php_dio.dll
    [PHP_DOCBLOCK]
    extension=php_docblock.dll
    [PHP_DOMXML]
    extension=php_domxml.dll
    [PHP_DOUBLEMETAPHONE]
    extension=php_doublemetaphone.dll
    [PHP_EVENT]
    extension=php_event.dll
    [PHP_FILEINFO]
    extension=php_fileinfo.dll
    [PHP_FILEPRO]
    extension=php_filepro.dll
    [PHP_GOPHER]
    extension=php_gopher.dll
    [PHP_HARU]
    extension=php_haru.dll
    [PHP_HTSCANNER]
    extension=php_htscanner.dll
    [PHP_HTTP]
    extension=php_http.dll
    [PHP_HYPERWAVE]
    extension=php_hyperwave.dll
    [PHP_IBM_DB2]
    extension=php_ibm_db2.dll
    [PHP_ID3]
    extension=php_id3.dll
    [PHP_IFX]
    extension=php_ifx.dll
    [PHP_IISFUNC]
    extension=php_iisfunc.dll
    [PHP_INGRES2]
    extension=php_ingres2.dll
    [PHP_LZF]
    extension=php_lzf.dll
    [PHP_MAILPARSE]
    extension=php_mailparse.dll
    [PHP_MAXDB]
    extension=php_maxdb.dll
    [PHP_MCRYPT_FILTER]
    extension=php_mcrypt_filter.dll
    [PHP_MCVE]
    extension=php_mcve.dll
    [PHP_MEMCACHE]
    extension=php_memcache.dll
    [PHP_NETOOLS]
    extension=php_netools.dll
    [PHP_NTUSER]
    extension=php_ntuser.dll
    [PHP_OGGVORBIS]
    extension=php_oggvorbis.dll
    [PHP_OPERATOR]
    extension=php_operator.dll
    [PHP_ORACLE]
    extension=php_oracle.dll
    [PHP_PARSEKIT]
    extension=php_parsekit.dll
    [PHP_PDO_IBM]
    extension=php_pdo_ibm.dll
    [PHP_PDO_INFORMIX]
    extension=php_pdo_informix.dll
    [PHP_PDO_USER]
    extension=php_pdo_user.dll
    [PHP_PHAR]
    extension=php_phar.dll
    [PHP_PHPDOC]
    extension=php_phpdoc.dll
    [PHP_POP3]
    extension=php_pop3.dll
    [PHP_PRINTER]
    extension=php_printer.dll
    [PHP_RADIUS]
    extension=php_radius.dll
    [PHP_RAR]
    extension=php_rar.dll
    [PHP_RUNKIT]
    extension=php_runkit.dll
    [PHP_SAM]
    extension=php_sam.dll
    [PHP_SDO]
    extension=php_sdo.dll
    [PHP_SMTP]
    extension=php_smtp.dll
    [PHP_SPL_TYPES]
    extension=php_spl_types.dll
    [PHP_SSH2]
    extension=php_ssh2.dll
    [PHP_STATS]
    extension=php_stats.dll
    [PHP_STEM]
    extension=php_stem.dll
    [PHP_THREADS]
    extension=php_threads.dll
    [PHP_TIMEZONEDB]
    extension=php_timezonedb.dll
    [PHP_TRANSLIT]
    extension=php_translit.dll
    [PHP_UPLOADPROGRESS]
    extension=php_uploadprogress.dll
    [PHP_WIN32PS]
    extension=php_win32ps.dll
    [PHP_WIN32SCHEDULER]
    extension=php_win32scheduler.dll
    [PHP_WIN32SERVICE]
    extension=php_win32service.dll
    [PHP_WIN32STD]
    extension=php_win32std.dll
    [PHP_YAMI]
    extension=php_yami.dll
    [PHP_ZLIB_FILTER]
    extension=php_zlib_filter.dll
    [PHP_EXIF]
    extension=php_exif.dll
    Si ça suffit tjrs pas je mettrai tout en plusieurs posts.

  9. #9
    Rédacteur
    Avatar de _Mac_
    Profil pro
    Inscrit en
    Août 2005
    Messages
    9 601
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 9 601
    Points : 12 977
    Points
    12 977
    Par défaut
    Tu as suivi quelle doc pour installer Apache et PHP ? En commentant la ligne PHPIniDir dans httpd.conf, ça donne quoi ?

  10. #10
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Août 2005
    Messages
    48
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 48
    Points : 28
    Points
    28
    Par défaut
    A la base j'ai suivi cette doc qui vient d'ici ou presque
    http://giminik.developpez.com/articles/apache/windows/


    En commentant la ligne PHPIniDir dans httpd.conf ça ne change strictement rien....

  11. #11
    Rédacteur
    Avatar de _Mac_
    Profil pro
    Inscrit en
    Août 2005
    Messages
    9 601
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 9 601
    Points : 12 977
    Points
    12 977
    Par défaut
    Le tutoriel que tu indiques dit de procéder ainsi pour la configuration du module PHP dans Apache :
    Recherchez la série de lignes commençant par #LoadModule et ajoutez à la suite LoadModule php5_module "c:/www/php-5/php5apache2_2.dll".
    Ce n'est pas ce que tu as fait. Du coup, le PHPIniDir est appelé avant le LoadModule, ce qui ne me semble pas correct.

    Dans le tuto, la valeur donnée à PHPIniDir se termine sans /. Les / en fin de chemin, avec Apache, faut y faire attention. Donc essaie sans mettre de / à la fin de ton PHPIniDir.

    Enfin, tu n'as pas mis de AddType, donc dans tous les cas, ça risque pas de marcher.

    Donc corrige ces quelques points et reviens vers nous.

  12. #12
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Août 2005
    Messages
    48
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 48
    Points : 28
    Points
    28
    Par défaut
    Ok merci, donc desormais il y a bien le LoadModule php5_module "C:/OCS/php5/php5apache2_2.dll" plus haut à la fin de liste de tous les LoadModule.


    Et en fin de fichier:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    #BEGIN PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL
    PHPIniDir "C:/OCS/php5"
    #LoadModule php5_module "C:/OCS/php5/php5apache2_2.dll"
    #END PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL
    AddType application/x-httpd-php .php .inc
    J'ai également retiré tous les "/" qu'il pouvait y avoir en fin de chemin dans le fichier httpd.conf .


    Et... ça ne change rien
    Donc là soit y a un problème de syntaxe dans le x-httpd-php .php .inc
    Soit un problème de sens du "/" pour les chemins physique sur le systeme (j'vais essayé de mettre des "\" pour tous les chemins commençant par C: )

    Soit c'est autre chose mais là je vois toujours pas....


    PS: par contre j'ai Apache qui plante carrement au redemarrage (via le restart prévu pour).
    => "Apache HTTP Server a rencontré un problème et doit fermer. Nous vous prions de nous excuser pour le désagrément encouru. .... etc"

  13. #13
    Rédacteur
    Avatar de _Mac_
    Profil pro
    Inscrit en
    Août 2005
    Messages
    9 601
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 9 601
    Points : 12 977
    Points
    12 977
    Par défaut
    Citation Envoyé par straitch Voir le message
    Et... ça ne change rien
    ...
    PS: par contre j'ai Apache qui plante carrement au redemarrage (via le restart prévu pour).
    Que contient le fichier d'erreur d'Apache, maintenant ? As-tu également configuré le fichier php.ini (en particulier le répertoire d'extension) comme indiqué dans le tutoriel ?

  14. #14
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Août 2005
    Messages
    48
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 48
    Points : 28
    Points
    28
    Par défaut
    Voici la fin du fichier de log:

    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
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    The Apache2.2 service is restarting.
    Failed to restart the Apache2.2 service.
    t: Received restart signal -- Restarting the server.
    [Mon Aug 25 15:04:56 2008] [notice] Child 3424: Exit event signaled. Child process is ending.
    [Mon Aug 25 15:04:57 2008] [notice] Child 3424: Released the start mutex
    [Mon Aug 25 15:04:58 2008] [notice] Child 3424: All worker threads have exited.
    Starting the Apache2.2 service
    The Apache2.2 service is running.
    pid file C:/OCS/Apache2.2/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_oci8.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_oci.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_oci8.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_pgsql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_sqlite_external.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pgsql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pspell.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_sybase_ct.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_ibm_db2.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_ifx.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_ingres2.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_maxdb.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_mcve.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_netools.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_oracle.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_ibm.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_informix.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Notice:  Constant XML_ELEMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_TEXT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_CDATA_SECTION_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_REF_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_PI_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_COMMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_TYPE_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_FRAG_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_NOTATION_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_HTML_DOCUMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DTD_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ELEMENT_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_NAMESPACE_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_LOCAL_NAMESPACE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_CDATA already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ID already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_IDREF already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_IDREFS already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ENTITY already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NMTOKEN already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NMTOKENS already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ENUMERATION already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NOTATION already defined in Unknown on line 0
    [Mon Aug 25 15:05:46 2008] [notice] Apache/2.2.9 (Win32) PHP/5.2.6 configured -- resuming normal operations
    [Mon Aug 25 15:05:46 2008] [notice] Server built: Jun 13 2008 04:04:59
    [Mon Aug 25 15:05:46 2008] [notice] Parent: Created child process 2528
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_oci8.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_oci.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_oci8.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_pgsql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_sqlite_external.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pgsql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pspell.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_sybase_ct.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_ibm_db2.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_ifx.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_ingres2.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_maxdb.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_mcve.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_netools.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_oracle.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_ibm.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_informix.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    Cannot find module (IP-MIB): At line 0 in (none)
    Cannot find module (IF-MIB): At line 0 in (none)
    Cannot find module (TCP-MIB): At line 0 in (none)
    Cannot find module (UDP-MIB): At line 0 in (none)
    Cannot find module (SNMPv2-MIB): At line 0 in (none)
    Cannot find module (SNMPv2-SMI): At line 0 in (none)
    Cannot find module (UCD-SNMP-MIB): At line 0 in (none)
    Cannot find module (UCD-DEMO-MIB): At line 0 in (none)
    Cannot find module (SNMP-TARGET-MIB): At line 0 in (none)
    Cannot find module (SNMP-VIEW-BASED-ACM-MIB): At line 0 in (none)
    Cannot find module (SNMP-COMMUNITY-MIB): At line 0 in (none)
    Cannot find module (UCD-DLMOD-MIB): At line 0 in (none)
    Cannot find module (SNMP-FRAMEWORK-MIB): At line 0 in (none)
    Cannot find module (SNMP-MPD-MIB): At line 0 in (none)
    Cannot find module (SNMP-USER-BASED-SM-MIB): At line 0 in (none)
    Cannot find module (SNMP-NOTIFICATION-MIB): At line 0 in (none)
    Cannot find module (SNMPv2-TM): At line 0 in (none)
    PHP Notice:  Constant XML_ELEMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_TEXT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_CDATA_SECTION_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_REF_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_PI_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_COMMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_TYPE_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_FRAG_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_NOTATION_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_HTML_DOCUMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DTD_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ELEMENT_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_NAMESPACE_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_LOCAL_NAMESPACE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_CDATA already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ID already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_IDREF already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_IDREFS already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ENTITY already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NMTOKEN already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NMTOKENS already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ENUMERATION already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NOTATION already defined in Unknown on line 0
    [Mon Aug 25 15:05:46 2008] [notice] Child 2528: Child process is running
    [Mon Aug 25 15:05:46 2008] [notice] Child 2528: Acquired the start mutex.
    [Mon Aug 25 15:05:46 2008] [notice] Child 2528: Starting 64 worker threads.
    [Mon Aug 25 15:05:46 2008] [notice] Child 2528: Starting thread to listen on port 80.
    [Mon Aug 25 15:05:57 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(SAM/php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Mon Aug 25 15:05:57 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Mon Aug 25 15:06:01 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(C:\\OCS\\Apache2.2\\SAM\\php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Mon Aug 25 15:06:01 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Mon Aug 25 15:27:32 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(SAM/php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Mon Aug 25 15:27:32 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Mon Aug 25 15:32:48 2008] [warn] pid file C:/OCS/Apache2.2/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_oci8.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_oci.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_oci8.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_pgsql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_sqlite_external.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pgsql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pspell.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_sybase_ct.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_ibm_db2.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_ifx.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_ingres2.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_maxdb.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_mcve.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_netools.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_oracle.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_ibm.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_informix.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Notice:  Constant XML_ELEMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_TEXT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_CDATA_SECTION_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_REF_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_PI_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_COMMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_TYPE_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_FRAG_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_NOTATION_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_HTML_DOCUMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DTD_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ELEMENT_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_NAMESPACE_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_LOCAL_NAMESPACE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_CDATA already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ID already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_IDREF already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_IDREFS already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ENTITY already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NMTOKEN already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NMTOKENS already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ENUMERATION already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NOTATION already defined in Unknown on line 0
    [Mon Aug 25 15:32:53 2008] [notice] Apache/2.2.9 (Win32) PHP/5.2.6 configured -- resuming normal operations
    [Mon Aug 25 15:32:53 2008] [notice] Server built: Jun 13 2008 04:04:59
    [Mon Aug 25 15:32:53 2008] [notice] Parent: Created child process 1948
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_oci8.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_oci.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_oci8.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_pgsql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_sqlite_external.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pgsql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pspell.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_sybase_ct.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_ibm_db2.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_ifx.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_ingres2.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_maxdb.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_mcve.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_netools.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_oracle.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_ibm.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/OCS/php5/ext/php_pdo_informix.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0
    Cannot find module (IP-MIB): At line 0 in (none)
    Cannot find module (IF-MIB): At line 0 in (none)
    Cannot find module (TCP-MIB): At line 0 in (none)
    Cannot find module (UDP-MIB): At line 0 in (none)
    Cannot find module (SNMPv2-MIB): At line 0 in (none)
    Cannot find module (SNMPv2-SMI): At line 0 in (none)
    Cannot find module (UCD-SNMP-MIB): At line 0 in (none)
    Cannot find module (UCD-DEMO-MIB): At line 0 in (none)
    Cannot find module (SNMP-TARGET-MIB): At line 0 in (none)
    Cannot find module (SNMP-VIEW-BASED-ACM-MIB): At line 0 in (none)
    Cannot find module (SNMP-COMMUNITY-MIB): At line 0 in (none)
    Cannot find module (UCD-DLMOD-MIB): At line 0 in (none)
    Cannot find module (SNMP-FRAMEWORK-MIB): At line 0 in (none)
    Cannot find module (SNMP-MPD-MIB): At line 0 in (none)
    Cannot find module (SNMP-USER-BASED-SM-MIB): At line 0 in (none)
    Cannot find module (SNMP-NOTIFICATION-MIB): At line 0 in (none)
    Cannot find module (SNMPv2-TM): At line 0 in (none)
    PHP Notice:  Constant XML_ELEMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_TEXT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_CDATA_SECTION_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_REF_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_PI_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_COMMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_TYPE_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DOCUMENT_FRAG_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_NOTATION_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_HTML_DOCUMENT_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_DTD_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ELEMENT_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ENTITY_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_NAMESPACE_DECL_NODE already defined in Unknown on line 0
    PHP Notice:  Constant XML_LOCAL_NAMESPACE already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_CDATA already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ID already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_IDREF already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_IDREFS already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ENTITY already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NMTOKEN already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NMTOKENS already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_ENUMERATION already defined in Unknown on line 0
    PHP Notice:  Constant XML_ATTRIBUTE_NOTATION already defined in Unknown on line 0
    [Mon Aug 25 15:33:06 2008] [notice] Child 1948: Child process is running
    [Mon Aug 25 15:33:06 2008] [notice] Child 1948: Acquired the start mutex.
    [Mon Aug 25 15:33:06 2008] [notice] Child 1948: Starting 64 worker threads.
    [Mon Aug 25 15:33:06 2008] [notice] Child 1948: Starting thread to listen on port 80.
    [Mon Aug 25 15:33:57 2008] [error] [client 127.0.0.1] File does not exist: C:/OCS/Apache2.2/htdocs/favicon.ico
    [Mon Aug 25 15:34:02 2008] [error] [client 127.0.0.1] PHP Warning:  require_once(SAM/php_sam.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in sam_factory on line 1
    [Mon Aug 25 15:34:02 2008] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'SAM/php_sam.php' (include_path='.;C:\\php5\\pear') in sam_factory on line 1
    [Mon Aug 25 15:39:57 2008] [notice] Parent: Received shutdown signal -- Shutting down the server.
    [Mon Aug 25 15:39:57 2008] [notice] Child 1948: Exit event signaled. Child process is ending.
    [Mon Aug 25 15:39:58 2008] [notice] Child 1948: Released the start mutex
    [Mon Aug 25 15:39:59 2008] [notice] Child 1948: All worker threads have exited.
    [Mon Aug 25 15:40:27 2008] [notice] Parent: Forcing termination of child process 612

  15. #15
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Août 2005
    Messages
    48
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 48
    Points : 28
    Points
    28
    Par défaut
    Citation Envoyé par _Mac_ Voir le message
    Que contient le fichier d'erreur d'Apache, maintenant ? As-tu également configuré le fichier php.ini (en particulier le répertoire d'extension) comme indiqué dans le tutoriel ?
    Pour le fichier d'erreur cf juste au dessus.

    Pour le php.ini je viens de verifier et j'ai fais exactement comme dit dans le tutoriel, sauf concernant mysql qui n'est de toute façon pas installé pour l'instant.
    Et concernant mes scripts php de test, evidemment aucun ne necessite mysql ce ne sont que des scripts basiques tels que "echo bonjour", recuperer une variable dans la barre de navigateur et l'afficher, etc ....



    Arf....

  16. #16
    Rédacteur
    Avatar de _Mac_
    Profil pro
    Inscrit en
    Août 2005
    Messages
    9 601
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 9 601
    Points : 12 977
    Points
    12 977
    Par défaut
    Je remarque juste que dans le fichier de logs, il n'y a plus de traces à propos de curl, donc y a un truc qui a changé et qui fait que l'erreur n'apparaît plus : c'est quoi ?

    Que se passe-t-il si tu essaies d'appeler un script php avec un simple <?php echo "toto; ?> en ligne de commande, sans passer par Apache ?

Discussions similaires

  1. [CakePHP] Recursivité dans les modèles refuse de fonctionner
    Par RideKick dans le forum Bibliothèques et frameworks
    Réponses: 6
    Dernier message: 26/10/2009, 08h51
  2. Réponses: 7
    Dernier message: 09/08/2007, 15h21
  3. problème apache2.2.2 php5.1.4
    Par moabomotal dans le forum Apache
    Réponses: 3
    Dernier message: 27/04/2007, 16h08
  4. Requête DELETE qui refuse de fonctionner chez Free
    Par fafafa dans le forum Requêtes
    Réponses: 4
    Dernier message: 05/06/2006, 15h00
  5. [Debian + Apache2] PHP4 vers PHP5
    Par Jean_Benoit dans le forum EDI, CMS, Outils, Scripts et API
    Réponses: 2
    Dernier message: 01/05/2006, 17h43

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo