On Thu, May 14, 2009 at 11:06 AM, Omarq <[email protected]> wrote: > > Warning (2): touch() [function.touch]: Unable to create file ...../app/ > tmp/cache/models/
The user which the webserver runs must have write permission in the <cakedir>/app/tmp and <cakedir>/app/tmp/cache. http://book.cakephp.org/view/31/Permissions The best way to acomplish this is change the folder's group to the same as configured in your webserver (the "Group" directive in Apache config) and add group write permission to the folder. Inside the CakePHP folder, should be something like this: $ cd app/ $ chgrp -R www-data tmp $ chmod g+w tmp $ chmod g+w tmp/cache Obviously, change the "www-data" to the webserver's group in your case. Try it and report us if it works! Best regards. -- MARCELO DE F. ANDRADE Belem, PA, Amazonia, Brazil Linux User #221105 http://mfandrade.wordpress.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
