我最近更新了我的应用程序以使用 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);
选项,但命令仍然失败。同样的错误。
对于导致这些命令失败的原因的任何帮助或建议将不胜感激。