On Tue, Mar 6, 2012 at 3:34 PM, kalai <[email protected]> wrote: > After Setting i am getting the following error. > Warning (512): /var/www/vhosts/vtest.host-it.ou.edu/httpdocs/WayFinder/ > app/tmp/cache/ is not writable [CORE/cake/libs/cache/file.php, line > 267]
You need to set the permissions fr the tmp directory so that the webserver can write to it (and all subdirectories). cd /var/www/vhosts/vtest.host-it.ou.edu/httpdocs/WayFinder/app sudo chown -R WEBSERVER tmp sudo chmod -R 0775 tmp Where WEBSERVER is the name used for the webserver process. This might be apache, nobody, www-data, etc. depending on the server. If you don't have permission or access to do this ask whomever manages the server. -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
