300, // seconds 'gc_probability' => 250, // one in n+1 chances of doing garbage collection 'dir' => '/home/ludo/public_html/wp-content/plugins/lightpress/cache/storage', 'track_users' => true, 'include_or_exclude' => 'exclude', 'url_list' => ''); if ($ret && class_exists('LightPressCache')) { // retrieve the cache settings $cache =& new LightPressCache($lp_cache_settings); $cache->activate(); if ($cache->active) { $cached_page = $cache->getCache(); if (!empty($cached_page)) { header('Content-Size: ' . strlen($cached_page)); echo $cached_page; exit(); } } } ?>