I am attempting to display a simple MySQL query
via PHP of a table with 5 records in it. I consistently get an Error
500 msg whenever I try to display it as shown below:
Error Code: 0x00000000
Notification: ExecuteRequestHandler
Module: IsapiModule
Requested URL: http://localhost:80/Test.php
Physical Path: C:\inetpub\wwwroot\Test.php
Logon User: Anonymous
Logon Method: Anonymous
Failed Request Tracing Log Directory: C:\inetpub\logs\FailedReqLogFiles
Handler: PHP
The inetpub error log shows the one and only following warning message:
MODULE_SET_RESPONSE_ERROR_STATUS
Warning ModuleName="IsapiModule", Notification="EXECUTE_REQUEST_HANDLER",
HttpStatus="500", HttpReason="Internal Server Error",
HttpSubStatus="0", ErrorCode="The operation completed successfully.
(0x0)", ConfigExceptionInfo=""
I can query this table successfully from the MySQL Administrator:
Here are the current software configuration parameters.
OS: Windows Vista
IIS: ver7
PHP: ver 5.2.5
MySQL: ver 5.0
IIS is on localhost.
I believe PHP is installed correctly because phpinfo() does display and it does show MySQL installed.
The php.ini file has the mysql info set correctly including:
- extensions enabled
- extensions directory set
- php_mysql.dll unremarked
In
the databases connection module while creating the page, I can
successfully test the connection to the MYSQL databases and select
databases. That's as far as I can go.
It appears to be a
problem with the isapi module...
Any help would be appreciated. Thank you....