I am having so much trouble installing Symfony: I installed the .zip file to the htdocs folder in XAMPP and according to Symfony's config file I need to reset permissions:
chmod: Failed to set ACL on file 'app/cache': No such file or directory chmod: Failed to set ACL on file 'app/logs': No such file or directory
So I tried steps 2 and 3. I went to /app_dev.php/ on my local machine and it's still telling me "object not found" I have no idea what to do at this point. Thanks in advance for the help.
Try:
$ rm -rf app/cache/*
$ rm -rf app/logs/*
Setting up Permissions
$ APACHEUSER=`ps aux | grep -E '[a]pache|[h]ttpd' | grep -v root | head -1 | cut -d\ -f1`
$ sudo chmod +a "$APACHEUSER 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
OR
$ APACHEUSER=`ps aux | grep -E '[a]pache|[h]ttpd' | grep -v root | head -1 | cut -d\ -f1`
$ sudo setfacl -R -m u:$APACHEUSER:rwX -m u:`whoami`:rwX app/cache app/logs
$ sudo setfacl -dR -m u:$APACHEUSER:rwX -m u:`whoami`:rwX app/cache app/logs