Special Pages
06-07-2011, 10:00 PM
This little plugin will make your forum load faster by cleaning up your forum cache that never gets cleaned up.
You will need to create a plug-in by going to AdminCP>Plugin & Products>Add New Plugin.
Then follow the following instructions:
1. Product - select vBulletin from the drop down menu
2. Hook Location - cron_script_cleanup_hourly from the drop down menu
3. Execution Order - leave it at 5
4. Plugin PHP Code - Copy and paste the following code in the box:
require_once(DIR . '/includes/class_bootstrap_framework.php');
vB_Bootstrap_Framework::init();
vB_Cache::instance()->clean(true);
5. Plugin is Active - Select Yes
You will need to create a plug-in by going to AdminCP>Plugin & Products>Add New Plugin.
Then follow the following instructions:
1. Product - select vBulletin from the drop down menu
2. Hook Location - cron_script_cleanup_hourly from the drop down menu
3. Execution Order - leave it at 5
4. Plugin PHP Code - Copy and paste the following code in the box:
require_once(DIR . '/includes/class_bootstrap_framework.php');
vB_Bootstrap_Framework::init();
vB_Cache::instance()->clean(true);
5. Plugin is Active - Select Yes