I'm trying to install this but cacheing is not working and i dont want to set the cache forlder permissions to 777. Can the following be done?
===MagPie FAQ==========
Caching doesn't seem to be working, whats wrong?
Is is a very frequent question. A number of things could be wrong, the most common is that the your web server does not have permission to write to your working directory. In this case you'll want to manually create the cache directory and make it web writeable. How to do this varies from platform to platform, and host to host, but the basic idea is:
mkdir /var/www/mysite/cache;
chown _web-user_:_web-group_ /var/www/mysite/cache;
===MagPie FAQ==========
Caching doesn't seem to be working, whats wrong?
Is is a very frequent question. A number of things could be wrong, the most common is that the your web server does not have permission to write to your working directory. In this case you'll want to manually create the cache directory and make it web writeable. How to do this varies from platform to platform, and host to host, but the basic idea is:
mkdir /var/www/mysite/cache;
chown _web-user_:_web-group_ /var/www/mysite/cache;