Error in phpMyAdmin after updating to v4.8.0: The $cfg[#39;TempDir#39;] (./tmp/) is not accessible(更新到 v4.8.0 后 phpMyAdmin 出错:$cfg[TempDir] (./tmp/) 不可访问)
问题描述
phpMyAdmin 在 v4.7.9 中运行良好.现在,今天更新到 v4.8.0(将旧的 phpmyadmin 文件夹替换为新的文件夹)后,我在 phpMyAdmin 中收到此消息:
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 message in phpMyAdmin:
$cfg['TempDir'] (./tmp/) 不可访问.phpMyAdmin 无法缓存模板,因此会很慢.
The $cfg['TempDir'] (./tmp/) is not accessible. phpMyAdmin is not able to cache templates and will be slow because of this.
我像这样添加文件夹./tmp/:/usr/share/tmp
phpMyAdmin 开启:/usr/share/phpmyadmin
phpMyAdmin is on: /usr/share/phpmyadmin
这没有改变任何东西.
谁知道这个错误?我能做什么?
Who know this error? What can I do?
推荐答案
解决方案是创建一个名为 tmp 的文件夹,如下所示:/usr/share/phpmyadmin/tmp.
Solution was to create a folder called tmp like this: /usr/share/phpmyadmin/tmp.
还要确保运行网络服务器(例如 Apache)的用户(或组)对新创建的 tmp 文件夹具有写入权限.因此,更改该用户的所有权或为所有用户添加写访问权限.后一种可能不太可取.
Also make sure that the user (or group) running the webserver (e.g. Apache) has write access to the newly created tmp folder. Consequently, change the ownership to that user or add write access for all users. The latter one might not be really advisable.
这篇关于更新到 v4.8.0 后 phpMyAdmin 出错:$cfg['TempDir'] (./tmp/) 不可访问的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:更新到 v4.8.0 后 phpMyAdmin 出错:$cfg['TempDir'] (./tmp/) 不可访问
基础教程推荐
- 如何在 Laravel 中使用 React Router? 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 如何替换eregi() 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
