需要授予 /tmp/cache 和 /tmp/templates_c 权限但找不到它们

需要授予 /tmp/cache 和 /tmp/templates_c 权限但找不到它们

当我打开我的网站时,它显示了以下内容:

The following directories must be writable by the web server:
tmp/cache
tmp/templates_c

Please correct by executing:
chmod 777 tmp/cache
chmod 777 tmp/templates_c
or the equivilent for your platform before continuing.

当我运行这两个命令时,它告诉我这些目录不存在。

我怎么解决这个问题

答案1

命令应该是

sudo chmod 777 /tmp/cache
sudo chmod 777 /tmp/templates_c

这些目录tmp/实际上是/tmp并且当然那些文件应该由您的应用程序创建。

相关内容