In addition to my last post: The development system uses "Smarty", a template engine that needs write access to a specified directory during runtime. Details:
Requirement: Applications use the Smarty library. Smarty is a template engine for PHP, facilitating the separation of presentation (HTML/CSS) from application logic. Smarty compiles copies of the templates as PHP scripts. Compilation happens once when each template is first invoked, and then the compiled versions are used from that point forward. The compiled templates are stored under the templates_c directory which must be accessible for writing by Smarty. To upload a ready web application to your web hosting, you need to have the following conditions. 1. Allow write access to templates_c The web server user must have write access to the templates_c directory. The most secure method is to make this directory owned by this user. The change of ownership is the easiest way to accomplish this. Only an administrator can execute this operation so if you can't do that then ask your hosting provider to do it for you. If you can do this, then it is possible (and recommended) to disallow "other" users read/write access for optimum security. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/71d6c93e-cdda-4ba0-b6e3-ed7193136ad8%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
