我在Mac OSX上使用XAMPP。我按照Symfony2说明设置了app/cache
和app/logs
权限 -
rm -rf app/cache/*
rm -rf app/logs/*
sudo chmod +a "_www allow delete,write,append,file_inherit,directory_inherit" app/cache app/logs
sudo chmod +a "`whoami` allow delete,write,append,file_inherit,directory_inherit"
此外,我还运行sudo chmod -R 777 app/cache/*
和sudo chmod -R 777 app/logs/*
它也有效。但是,当我关闭XAMPP并再次打开它时。它始终显示以下RuntimeException
,我必须一次又一次地设置其权限。
RuntimeException:无法写入缓存文件“/Applications/XAMPP/xamppfiles/htdocs/Jobeet/app/cache/dev/classes.php”。
我没有发现任何人和我有同样的问题。 我如何永久设置他们的许可?