wpsupercache_activate()
No Hooks.
Returns
null. Nothing (null).
Usage
wpsupercache_activate();
wpsupercache_activate() wpsupercache activate code WPSCache 3.1.0
function wpsupercache_activate() {
global $cache_path;
if ( ! isset( $cache_path ) || $cache_path == '' )
$cache_path = WP_CONTENT_DIR . '/cache/'; // from sample config file
ob_start();
wpsc_init();
if (
! wp_cache_verify_cache_dir() ||
! wpsc_check_advanced_cache() ||
! wp_cache_verify_config_file()
) {
$text = ob_get_contents();
ob_end_clean();
return false;
}
$text = ob_get_contents();
wp_cache_check_global_config();
ob_end_clean();
wp_schedule_single_event( time() + 10, 'wp_cache_add_site_cache_index' );
}