phpMyAdmin - The MySQL Extension is Missing

后端 未结 10 1831
旧巷少年郎
旧巷少年郎 2020-12-11 16:13

I installed everything separately (Apache, PHP, MySQL and phpMyAdmin) and do not use a compilation, everything works fine till now except phpMyAdmin.

The problem I

10条回答
  •  北海茫月
    2020-12-11 17:11

    Just as others stated you need to remove the ';' from:
    ;extension=php_mysql.dll and
    ;extension=php_mysqli.dll

    in your php.ini to enable mysql and mysqli extensions. But MOST IMPORTANT of all, you should set the extension_dir in your php.ini to point to your extensions directory. The default most of the time is "ext". You should change it to the absolute path to the extensions folder. i.e. if you have your xampp installed on drive C, then C:/xampp/php/ext is the absolute path to the ext folder, and It should work like a charm!

提交回复
热议问题