I've followed the brief installation instructions but I get the following error message. I've chmod the whole directory structure but there's no c_templates directory!
What have I missed or stuffed up?
TIA
John
An error has occurred
The "c_templates" subdirectory is not writeable by the web process. This needs to be corrected before the installation can proceed so the templates can be compiled by smarty. Please reload this page when this has been corrected.
On a unix system such as linux, this can either be accomplished by making the directory writeable by everyone...
$ chmod a+w c_templates
... or by changing the ownership of the directory to the webserver. For example, if your web server is running as the user www-data, you can change the ownership as follows (you must become root first):
$ chown www-data c_templates
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I've followed the brief installation instructions but I get the following error message. I've chmod the whole directory structure but there's no c_templates directory!
What have I missed or stuffed up?
TIA
John
An error has occurred
The "c_templates" subdirectory is not writeable by the web process. This needs to be corrected before the installation can proceed so the templates can be compiled by smarty. Please reload this page when this has been corrected.
On a unix system such as linux, this can either be accomplished by making the directory writeable by everyone...
$ chmod a+w c_templates
... or by changing the ownership of the directory to the webserver. For example, if your web server is running as the user www-data, you can change the ownership as follows (you must become root first):
$ chown www-data c_templates
Well, make sure the directory exists, first -- mkdir c_templates on a linux/unix box.