我最近更新了我的应用程序以使用symfony 2.6,现在我收到错误清除dev和prod缓存:
[RuntimeException]
Unable to write in the "/var/www/project/app/../var/cache/pro_" directory
或
[RuntimeException]
Unable to write in the "/var/www/project/app/../var/cache/de_" directory
但是,当pro_
或de_
文件夹不存在时,命令运行正常。我使用ACL权限设置文件夹:
HTTPDUSER=`ps aux | grep -E '[a]pache|[h]ttpd|[_]www|[w]ww-data|[n]ginx' | grep -v root | head -1 | cut -d\ -f1`
sudo setfacl -R -m u:"$HTTPDUSER":rwX -m u:`whoami`:rwX var/
sudo setfacl -dR -m u:"$HTTPDUSER":rwX -m u:`whoami`:rwX var/
我也使用symfony 3.0结构,如果这有所不同。
更新
我尝试使用umask(0000);
选项,但命令仍然失败。同样的错误。
对于导致这些命令失败的任何帮助或建议将不胜感激。