Error in phpMyAdmin after updating to v4.8.0: The $cfg['TempDir'] (./tmp/) is not accessible

前端 未结 20 2738
别跟我提以往
别跟我提以往 2021-01-30 12:50

phpMyAdmin worked fine with v4.7.9. Now after updating to v4.8.0 today (replacing the old phpmyadmin folder against the new one) I\'m getting this mess

20条回答
  •  半阙折子戏
    2021-01-30 12:53

    well,in my case this error has occured when i was using ubuntu 18.04. All you need is to go to the installation directory (in ubuntu - opt/lampp/phpmyadmin) and create a folder tmp with all the suitable read/write permissions.

    Follow these steps in case of ubuntu-

    1.go to the PMA installation directory by typing following commands in cmd-

    cd opt/lampp/phpmyadmin

    2.Then type the following command-

    sudo mkdir tmp && chmod 777 tmp

    and then you are done..!! I hope it helps..

提交回复
热议问题