Installing Symfony 2 on Fedora 15
I've got a problem when i try to install Symfony 2:
I extract the content of the tgz file into 开发者_开发技巧var/www/html
directory and then i go on http://127.0.0.1/symfony/web/config.php
and it says that i need to change the permissions of app/cache/*
and app/logs/*
. The problem is that I tried all the solutions in the doc
Which solutions exactly did you try? Did you chmod those folders?
If your web server and command line user are different, that can also cause problems with those two folders. Check the docs for their umask
solution and see if that helps.
I had the same problem and SELinux was responsible.
To figure out if SELinux is the source of your problem, turn it off by typing: setenforce Permissive
on the command line.
If the script works, then you have to configure SELinux properly.
精彩评论