: PHPFox caching? I run a big phpfox website and I currently have server setup as follows: nginx (reverse proxy) --> Apache for dynamic content are there other ways to cache content with phpfox?
I run a big phpfox website and I currently have server setup as follows:
nginx (reverse proxy) --> Apache for dynamic content
are there other ways to cache content with phpfox?
I can't use memcache it's a shared environment.
More posts by @Looi9037786
1 Comments
Sorted by latest first Latest Oldest Best
phpFox has its own caching system that...
You can disable the caching in phpFox by using the following code in your template files:
<?php
define('PHPFOX_NO_TEMPLATE_CACHE', true);
define('PHPFOX_NO_CSS_CACHE', true);
define('PHPFOX_LIVE_TEMPLATES', true);
define('PHPFOX_CACHE_SKIP_DB_STORE', true);
?>
You can also use your own caching on top using Nginx virtual host configuration file:
location ~* .(js|css|png|jpg|jpeg|gif|ico)$ {
expires 1y;
log_not_found off;
}
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.