Plugin Directory

Changeset 1391655


Ignore:
Timestamp:
04/10/2016 11:14:11 PM (9 years ago)
Author:
mlazarov
Message:

Releasing v1.6.0 - smart home cache

Location:
hyper-cache-extended/trunk
Files:
6 added
4 edited

Legend:

Unmodified
Added
Removed
  • hyper-cache-extended/trunk/cache.php

    r1112970 r1391655  
    162162                hyper_cache_start();
    163163                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{
    165170                hyper_log_cache('Archives expired but Server load ('.$server_load.') above ('.$hyper_cache['load'].')',2);
    166171            }
  • hyper-cache-extended/trunk/options.php

    r1112971 r1391655  
    378378</tr>
    379379
     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
    380391<tr valign="top">
    381392    <th><?php _e('Redirect caching', 'hyper-cache'); ?></th>
  • hyper-cache-extended/trunk/plugin.php

    r1112971 r1391655  
    44Plugin URI: http://marto.lazarov.org/plugins/hyper-cache-extended
    55Description: 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.0
     6Version: 1.6.0
    77Author: Martin Lazarov
    88Author URI: http://marto.lazarov.org
     
    1010
    1111---
    12 Copyright 2012  mlazarov  (email : lazarov@mail.bg)
     12Copyright 2016  mlazarov  (email : martin@lazarov.bg)
    1313---
    1414
     
    374374    // DO NOT cache the home?
    375375    $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   
    376379    // Disable last modified header
    377380    $buffer .= '$hyper_cache[\'lastmodified\'] = ' . (isset($options['lastmodified'])?'true':'false') . ";\n";
  • hyper-cache-extended/trunk/readme.txt

    r1112971 r1391655  
    22Tags: cache,chaching,speed,performance,super cache,wp cache
    33Requires at least: 2.5
    4 Tested up to: 4.1.1
    5 Stable tag: 1.4.0
     4Tested up to: 4.4.2
     5Stable tag: 1.6.0
    66Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=D96ZZLGAV8X8J
    77Contributors: mlazarov
     
    7979
    8080== Changelog ==
     81= 1.6.0 =
     82* Adding smart home caching feature
     83
     84= 1.5.0 =
     85* Adding screenshosts section
     86
    8187= 1.4.0 =
    8288* Updating mobile user agents list (Thanks to Stoyan Stanev)
     
    129135   
    130136== Screenshots ==
     1371. Cache Status
     1382. Base Configuration
     1393. Mobide Devices Configuration & Compression
     1404. Advances Options
    131141
    132 No screenshots are available.
Note: See TracChangeset for help on using the changeset viewer.