wamp cannot load mysqli extension

前端 未结 18 2146
悲哀的现实
悲哀的现实 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:30

    For me worked this, after searching all logs/internet/every non-normal things. You have to register dl by:

    Through application:

    WAMP -> PHP settings -> enable dl
    

    or

    # php.ini #
    
    ; Whether or not to enable the dl() function.  The dl() function does NOT work
    ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
    ; disabled on them.
    ; http://php.net/enable-dl
    enable_dl = On
    

提交回复
热议问题