wamp cannot load mysqli extension

前端 未结 18 2148
悲哀的现实
悲哀的现实 2021-01-11 10:16

WAMP installed fine, no problems, BUT...

When going to phpMyAdmin, I get the error from phpMyAdmin as follows:

Cannot load mysqli extension. Please c         


        
18条回答
  •  不知归路
    2021-01-11 10:26

    I got this problem for a long time.
    Tried all I've read on forums and this finally worked for me:
    Open your php.ini (I assume you've got the good one that is loaded...) and find this line mysqli.default_port = 3306
    change for
    mysqli.default_port = 80
    Restart all services
    Go to localhost/phpmyadmin -> won't work
    Reopen the php.ini file and retype this
    mysqli.default_port = 3306
    Restart all services
    Worked for me.

提交回复
热议问题