Changeset 1391655
- Timestamp:
- 04/10/2016 11:14:11 PM (9 years ago)
- Location:
- hyper-cache-extended/trunk
- Files:
-
- 6 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
hyper-cache-extended/trunk/cache.php
r1112970 r1391655 162 162 hyper_cache_start(); 163 163 return; 164 }else{ 164 }elseif($hyper_data['type'] == 'home' && $hyper_cache['smarthome'] && $hc_file_age>60){ 165 hyper_log_cache('Home expired. Server is highly loaded but smart home is enabled! hyper_cache_start()',2); 166 hyper_cache_start(); 167 return; 168 } 169 else{ 165 170 hyper_log_cache('Archives expired but Server load ('.$server_load.') above ('.$hyper_cache['load'].')',2); 166 171 } -
hyper-cache-extended/trunk/options.php
r1112971 r1391655 378 378 </tr> 379 379 380 381 <tr valign="top"> 382 <th><?php _e('Smart Home caching', 'hyper-cache'); ?></th> 383 <td> 384 <input type="checkbox" name="options[smarthome]" value="1" <?php echo $options['smarthome']?'checked':''; ?>/> 385 <br /> 386 <?php _e('Refresh home page cache even if the server load is above max server load average.','hyper-cache'); ?> 387 </td> 388 </tr> 389 390 380 391 <tr valign="top"> 381 392 <th><?php _e('Redirect caching', 'hyper-cache'); ?></th> -
hyper-cache-extended/trunk/plugin.php
r1112971 r1391655 4 4 Plugin URI: http://marto.lazarov.org/plugins/hyper-cache-extended 5 5 Description: Hyper Cache Extended is a cache system for WordPress to improve it's perfomances and save resources. Before update <a href="http://wordpress.org/extend/plugins/hyper-cache-extended/" target="_blank">read the version changes</a>. To manually upgrade remeber the sequence: deactivate, update, activate. 6 Version: 1. 4.06 Version: 1.6.0 7 7 Author: Martin Lazarov 8 8 Author URI: http://marto.lazarov.org … … 10 10 11 11 --- 12 Copyright 201 2 mlazarov (email : lazarov@mail.bg)12 Copyright 2016 mlazarov (email : martin@lazarov.bg) 13 13 --- 14 14 … … 374 374 // DO NOT cache the home? 375 375 $buffer .= '$hyper_cache[\'home\'] = ' . (isset($options['home'])?'true':'false') . ";\n"; 376 // Smart home cache? 377 $buffer .= '$hyper_cache[\'smarthome\'] = ' . (isset($options['smarthome'])?'true':'false') . ";\n"; 378 376 379 // Disable last modified header 377 380 $buffer .= '$hyper_cache[\'lastmodified\'] = ' . (isset($options['lastmodified'])?'true':'false') . ";\n"; -
hyper-cache-extended/trunk/readme.txt
r1112971 r1391655 2 2 Tags: cache,chaching,speed,performance,super cache,wp cache 3 3 Requires at least: 2.5 4 Tested up to: 4. 1.15 Stable tag: 1. 4.04 Tested up to: 4.4.2 5 Stable tag: 1.6.0 6 6 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=D96ZZLGAV8X8J 7 7 Contributors: mlazarov … … 79 79 80 80 == Changelog == 81 = 1.6.0 = 82 * Adding smart home caching feature 83 84 = 1.5.0 = 85 * Adding screenshosts section 86 81 87 = 1.4.0 = 82 88 * Updating mobile user agents list (Thanks to Stoyan Stanev) … … 129 135 130 136 == Screenshots == 137 1. Cache Status 138 2. Base Configuration 139 3. Mobide Devices Configuration & Compression 140 4. Advances Options 131 141 132 No screenshots are available.
Note: See TracChangeset
for help on using the changeset viewer.