1 This is the web portal for squasher
5 You need apache, php, mysql, php-myql, smarty
9 Create a webpage pointing at webroot/ at your httpd configuration
13 Create a file config.php (using config.php.example as a base):
16 templates_c is a directory for compiled templates, and cache is... a cache.
17 Both these directories must be *writable by the web daemon*
21 mkdir -p /var/cache/squasher
23 mkdir -m 775 /var/cache/squasher/templates_c
24 chown root:www-data /var/cache/squasher/templates_c
26 mkdir -m 775 /var/cache/squasher/cache
27 chown root:www-data /var/cache/squasher/cache
29 and put these directories in config.php
33 Right now, in webroot/*php, the uploads directory is hardcoded to ../uploads. So you should create a symlink here to uploads.
35 ln -s /var/www/uploads .