The mysqli extension is missing. Please check your PHP configuration

前端 未结 14 1571
盖世英雄少女心
盖世英雄少女心 2020-12-01 21:45

I have looked through all of the forums that I could find relevant to this question and my problem yet nothing works. I have apache2.2 with php5, phpMyAdmin, and MySQL. I ha

14条回答
  •  情深已故
    2020-12-01 22:07

    Its an issue of extension directory. You need to change php extension directory manually to work this.

    If you are using AMPP Server, do the following

    Goto settings -> PHP -> Configuration

    in php7.3.ini Find, (Versions might change)

    extension_dir = "" , (Already having some path)

    and change value to

    extension_dir = "C:\Program Files\Ampps\php-7.3\ext"

    If you are using XAMP

    Goto XAMP Settings, Apache -> PHP.ini

    Find, extension_dir = in php.ini, and set path of the php extension folder of your local machine. See the below example.

    extension_dir = "C:\php\ext" (Check your path properly)

提交回复
热议问题