Unable to load mysql extension. Please check the PHP configuration. Today, when I configured the apache and php environments, I personally felt that the configuration was complete. After I wrote the php file myself, I was able to execute the test successfully. However, when I ran phpMyAdmin, I was prompted that the mysql extension could not be loaded, today, when I configured the apache and php environments, I personally felt that the configuration was complete. After I wrote the php file myself, I was able to execute the test successfully. However, when I ran phpMyAdmin, I was prompted that the mysql extension could not be loaded,
Check the PHP configuration and find a solution after Troubleshooting. I will share it with you below.
After the environment is configured, my test file is like a. php.
The code is as follows: |
|
Echo phpinfo (); $ Cn = mysql_connect ('localhost', 'ttftroat', 'XXX') or die (mysql_error ()); ?> |
The input result is okay, but I am prompted when using phpmyadmin
PhpMyAdmin-error
Unable to load mysql extension,
Check the PHP configuration-documentation.
Solution
Search for "extension_dir =./", change it to "extension_dir = C: phpext", and then remove these semicolons:
Extension = php_mbstring.dll
Extension = php_gd2.dll
Extension = php_mysql.dll
Restart apache to solve the problem.
Mysql extension ,...