我应该更改哪些目录的权限

我应该更改哪些目录的权限

当我打开我的网站时它显示了这个

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

您可以使用 find 命令如下:

find / -name templates_c -type d 2>/dev/null

相关内容