phpmyadmin error: The mysqli extension is missing. Please check your PHP configuration
phpmyadmin
Solution
- Install php5-mysql extension by `apt-get install php5-mysql` command
- Add `extension=mysqli.so` (near other 'extension=' lines) line to your php.ini
- Restart apache service by `/etc/init.d/apache2 restart` command
Problem
I go to Apache24>conf>httpd and change index.html to index.php. After that i refresh Apache in services and to `http://localhost/phpmyadmin/` and recieve the following error: phpMyAdmin- Error The mysqli extension is missing. Please check your PHP configuration. ``` <a href="Documentation.html#faqmysql" target="documentation"><img class="icon" src="./themes/pmahomme/img/b_help.png" width="11" height="11" alt="Documentation" title="Documentation" /></a> ``` Can any one help me understand this error?