// ACP Actions to flush cache on
$actions = array(
'updatetemplate',
'inserttemplate',
'productimport',
'rebuild',
'insertstyle',
'update',
'clear_cache',
'purgecache',
'displayorder',
'savestylevar',
'insert',
'import',
'replace',
'kill',
'productsave',
'productdependancy',
'productcode',
'productdisable',
'productenable',
'productkill',
'dooptions',
);
// ACP actions to kill whole cache as a failsafe
$full = array(
'clear_cache',
'purgecache',
);
Flushing in most places is automated, you can find the current actions that will kill the flush (or do a full flush) in class_vboptimise.php:
Code:// ACP Actions to flush cache on $actions = array( 'updatetemplate', 'inserttemplate', 'productimport', 'rebuild', 'insertstyle', 'update', 'clear_cache', 'purgecache', 'displayorder', 'savestylevar', 'insert', 'import', 'replace', 'kill', 'productsave', 'productdependancy', 'productcode', 'productdisable', 'productenable', 'productkill', 'dooptions', ); // ACP actions to kill whole cache as a failsafe $full = array( 'clear_cache', 'purgecache', );
We use essential cookies to make this site work, and optional cookies to enhance your experience.