Hi,
Tired Newbie here. I have set path for extentions, uncommented the extention for mysqli extention in php.ini, copied all dll files into required folders, restarted sever and I still get Class mysqli not found.
Neither mysql or mysqli show in my info.php?
Any ideas?
Offline
These are the basic steps for it.
==========================================
1. Copy the php_*.dll files to your PHP extension directory
example:
extension_dir = C:\php\extensions
2. Enable the PHP extensions that you want to use in the php.ini file
Uncomment or add the following lines to your php.ini file:
// MySQL extension
extension=php_mysql.dll
// MySQLi extension
extension=php_mysqli.dll
3. Copy the libmysql.dll to the PHP installation directory
=========================================
If you have done all this than please make sure that you have all the files.
Offline