View Full Version : vbCMS permission cache refresh
Bobbo
06-30-2010, 12:25 PM
One of my plugins changes a visitors usergroup permissions. (membergroupids)
It works well, accept for the fact that content permissions in the vbCMS do not refresh on the fly. My assumption is that they are cached. Does anyone know of to refresh the cache programatically through PHP?
Thanks,
Bobbo
Bobbo
07-01-2010, 02:10 PM
anyone.... Bueller....
It does appear to be the cache since refreshing the page after a few mins seems to show the proper permissions.
I guess the question is, is there a way to force a refresh of the cms cache? (through the plugin - NOT through admincp)
B
rossco_2005
08-01-2010, 01:44 PM
A little late but found this in search and wanted to help...
Take a look at admincp/cms_content_admin.php.
It looks like this would be what you need...
require_once(DIR . '/includes/class_bootstrap_framework.php');
vB_Bootstrap_Framework::init();
if (method_exists(vB_Cache::instance(), 'clean'))
{
vB_Cache::instance()->clean(false);
}
It executes fine for me, I just have nothing in the cache atm to see if it had an effect. Let us know...
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.