|
From: Benjamin C. <bc...@us...> - 2002-04-11 20:31:46
|
Update of /cvsroot/phpbt/phpbt/templates/default/base
In directory usw-pr-cvs1:/tmp/cvs-serv1635/templates/default/base
Modified Files:
templatesperm.html
Log Message:
Offer a little more help
Index: templatesperm.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/base/templatesperm.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- templatesperm.html 9 Apr 2002 20:44:28 -0000 1.2
+++ templatesperm.html 11 Apr 2002 20:31:39 -0000 1.3
@@ -2,14 +2,31 @@
<head>
<title>Compiled Templates Directory Not Writeable</title>
<link rel="stylesheet" href="styles/default.css" type="text/css">
+ <style>
+ tt { background: #eeeeee; }
+ </style>
</head>
<body>
<div class="error">An error has occurred</div>
- <div align="center">
+ <div>
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.
+ <br>
+ <br>
+ On a unix system such as linux, this can either be accomplished by
+ making the directory writeable by everyone...
+ <br>
+ <tt>$ chmod a+w c_templates</tt>
+ <br>
+ <br>
+ ... 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):
+ <br>
+ <tt>$ chown www-data c_templates</tt>
+ <br>
</div>
</body>
</html>
|