Home  >  Article  >  Backend Development  >  thinkphp缓存文件写入失败怎么解决?

thinkphp缓存文件写入失败怎么解决?

PHPz
PHPzOriginal
2016-06-13 11:53:513600browse

thinkphp缓存文件写入失败怎么解决?

thinkphp缓存文件写入失败的解决方法

近期使用thinkphp 的用户称在本地配置这个项目遇到了无法写入/Runtime/Cache缓存的问题,无法正常进行下一步操作,该怎么办呢?

1.jpg

thinkphp 缓存文件写入失败的解决方法一:

1、先把你网站下的cache目录下的缓存文件清空。

2、sudo chmod 777 -R /var/www/html/thinkphp/ (我的网站目录为/var/www/thinkphp/  修改该目录为可写可读)

thinkphp 缓存文件写入失败的解决方法二:

首先要看看在自己的项目/Application/下有没有Runtime这个文件夹,如果没有,就自己在/Application/建好Runtime文件夹,然后设置Runtime文件夹下及其下面的子文件夹的权限,方法:

在终端进入Runtime文件夹,然后执行命令:chmod -R 777 *,问题就解决了。

更多相关知识,请访问 PHP中文网!!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:网站日记文件大小Next article:php 怎么做进度条