For the most part, as far as optimizations go, if you set DEBUG to 0, Cake will take care of most production optimizations for you. A few other things you can do are move the .htaccess rules into httpd.conf, and make sure your DocRoot is pointed at the webroot folder.
As far as security, you should check out the requireAuth() method of the Security component (http://manual.cakephp.org/chapter/security), and use the $fieldList parameter in Model::save() to make sure that only allowed fields are being saved by users when forms are submitted. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" 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 -~----------~----~----~----~------~----~------~--~---
