Forum Moderators: coopster
I have the exactly the same configuration as stated in here:
[webmasterworld.com...]
I finally solved the problem by deleting the ";" in front of "extension=php_mysql.dll" in php.ini under
; Windows Extensions
; Note that ODBC support is built in, so no dll is needed for it.
; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
; extension folders as well as the separate PECL DLL download (PHP 5).
; Be sure to appropriately set the extension_dir directive.
I'm glad you have everything sorted out.
Just for reference:
MySQL is no longer enabled by default, so the php_mysql.dll DLL must be enabled inside of php.ini. Also, PHP needs access to the MySQL client library. A file named libmysql.dll is included in the Windows PHP distribution and in order for PHP to talk to MySQL this file needs to be available to the Windows systems PATH.
What you did basically uncommented that line within the php.ini file.
;)