この質問は何度か聞かれましたが、私の状況ではどの解決策もそれを修正しません。
MacOSXLionでApacheを実行しています。このhttp://localhost/Symfony/web/config.php
URLは2つの大きな問題を引き起こします:
Change the permissions of the "app/cache/" directory so that the web server can write into it.
Change the permissions of the "app/logs/" directory so that the web server can write into it.
「権限の設定」のガイドに従ってください。
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" app/cache app/logs
それは問題を解決しないので、私は試しました:
sudo chmod -R 777 app/cache
それもうまくいきません。これを修正する方法はありますか?