Anybody Else Having Caching Problems Using Shared Hosting With Scope Host??

Status
Not open for further replies.

DJboutit

Active Member
3,948
2010
566
8,870
I am trying to see if anybody else is having any caching problems using shared hosting with Scope Host. I am having a caching problems with mybb forum trying to find is the problem with the host on or on my end.
 
10 comments
Consider googling your caching plugin name (if you use some addon/plugin for caching) and add words like: cache not delete, cache not cleared
You can also setup cronjob to clear selected cache files for you like every hour or more often as you wish.
 
Last edited:
Try altering the type of cache used in the config file if its not set to DB.

PHP:
*  If you wish to use the file system (cache/ directory), MemCache or eAccelerator
 *  you can change the value below to 'files', 'memcache' or 'eaccelerator' from 'db'.
 */

$config['cache_store'] = 'db';


Failing that you will need to check what caching the server is using & add a php no cache header for it in latest posts file.


Something like this after <?php

PHP:
header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
 
Last edited:
If the user above you advice to edit config file , you need to google your forum script name and phrase: config file
it will give you more info on where to find that file on your hosting.
 
Using a plugin like Super cache can solve that problem. In my opinion, using shared hosting on a forum, or other website types is not a great idea. Less secure data, and especially the ads will annoy visitors so much.
 
Status
Not open for further replies.
Back
Top