$ mkdir dacache
$ mkdir dacache/boxes dacache/pages
$ chmod g+rwx dacache/boxes/ dacache/pages/
Dans phplib/config.site:
$this->cachedir = "/home/www/dacode/dacache/boxes/";
$this->htmldir = "/home/www/dacode/dacache/pages/";
Dans httpd.conf :
# règles pour mod_rewrite dacode (janvier 2000)
RewriteCond /var/www/dacode/dacache%{REQUEST_FILENAME} -f
RewriteRule ^(.+) /var/www/dacode/dacache$1 [L]
RewriteCond %{REQUEST_FILENAME} ^/[0-9] [OR]
RewriteCond %{REQUEST_FILENAME} ^/index, [OR]
RewriteCond %{REQUEST_FILENAME} ^/section/ [OR]
RewriteCond %{REQUEST_FILENAME} ^/topic/
RewriteRule ^(.*)$ /var/dacode.org/htdocs/gen.php3$1 [L]
|