Danny620 Posted July 24, 2009 Share Posted July 24, 2009 when i log into my database via phpmyadmin in the webserver info bit it says Web server Apache/2.2.11 (Win32) PHP/5.2.10 MySQL client version: 5.0.84 PHP extension: mysql and i want the php extension to be mysqli instead i have try ed uncommenting mysql in php.ini file and when i go back to php myadmin i get error can't load mysql but it works fine and everying but how do i make this error go a way and keep mysqli thanks Quote Link to comment Share on other sites More sharing options...
corbin Posted July 25, 2009 Share Posted July 25, 2009 You have to tell PHPMyAdmin to use MySQLi I would guess. Quote Link to comment Share on other sites More sharing options...
Danny620 Posted July 25, 2009 Author Share Posted July 25, 2009 how do i do that Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted July 25, 2009 Share Posted July 25, 2009 By editing the config.inc.php and changing this line $cfg['Servers'][$i]['extension'] = 'mysql'; to $cfg['Servers'][$i]['extension'] = 'mysqli'; You will need to make sure the mysqli extension is enabled in your php.ini in order for phpmyadmin to use mysqli. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.