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

前端 未结 20 2362
别跟我提以往
别跟我提以往 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 13:13

    Create the tmp folder in the root of phpmyadmin files

    In addition to that, you also need to provide all permissions to that folder. That's what I did in Windows.

    0 讨论(0)
  • 2021-01-30 13:16

    simple fix is to create tmp dir in your phpmyadmin dir and set permission to 777

    mkdir tmp && chmod 777 tmp
    

    then

    update your config.inc.php file add that line

    $cfg['TempDir'] = 'tmp';
    
    0 讨论(0)
提交回复
热议问题