Changeset 1112970
- Timestamp:
- 03/15/2015 08:05:45 AM (11 years ago)
- Location:
- hyper-cache-extended/trunk
- Files:
-
- 4 edited
-
cache.php (modified) (1 diff)
-
options.php (modified) (1 diff)
-
plugin.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
hyper-cache-extended/trunk/cache.php
r1022567 r1112970 128 128 $hc_file_age = time() - $hc_file_time; 129 129 130 if ($h c_file_age > ($hyper_cache['timeout']*60)){130 if ($hyper_cache['timeout'] > 0 && $hc_file_age > ($hyper_cache['timeout']*60)){ 131 131 if($server_load < $hyper_cache['load']) { 132 132 hyper_cache_start(); -
hyper-cache-extended/trunk/options.php
r1022567 r1112970 185 185 (<?php _e('minutes', 'hyper-cache'); ?>) 186 186 <br /> 187 <?php _e('Minutes a cached page is valid and served to users. A zero value means a cached page is valid forever.', 'hyper-cache');?>187 <?php _e('Minutes a cached page is valid and served to users. A zero (or less) value means a cached page is valid forever.', 'hyper-cache');?> 188 188 <?php _e('If a cached page is older than specified value (expired) it is no more used and will be regenerated on next request of it.', 'hyper-cache');?> 189 189 <?php _e('720 minutes is half a day, 1440 is a full day and so on.', 'hyper-cache'); ?> -
hyper-cache-extended/trunk/plugin.php
r1112961 r1112970 338 338 global $hyper_cache; 339 339 $buffer = ''; 340 if ($options['timeout'] == 0) $options['timeout'] = 1440;340 //if ($options['timeout'] == 0) $options['timeout'] = 1440; 341 341 342 342 $cache_path = WP_CONTENT_DIR . '/cache/'; -
hyper-cache-extended/trunk/readme.txt
r1112969 r1112970 82 82 * Disabling cleanup process when server is above max load average 83 83 * Fixing wrong used reject config item 84 * A zero (or less) value means a cached page is valid forever 84 85 85 86 = 1.2.0 =
Note: See TracChangeset
for help on using the changeset viewer.