I have read this post
and it didn’t really help.
My php.ini file (http://www.edisk.cz/stahni/09234/php.ini_69.47KB.html) contains the correct path of ext directory.
While my ext directory contains a php_mysql.dll and php_mysqli.dll libraries, there’s not a word of that in my phpinfo.
Is there a way to make it right?
This is my error produced by php.exe.
You most likely have two separate php.ini files – one for your web server, one for the command line interface.
Make sure you’re editing the correct file; Run:
which will give you output similar to the one below:
Now, edit the php.ini file and make sure that not only the following lines are un-commented:
but also this one (which, according to the file you’ve posted, you have commented out at the moment):
The above one should be configured to point to your
extdirectory, where the php_mysql.dll file is stored. Like this (remember about double quotes):Hope this helps.