/home/lnzliplg/www/cache.zip
PK r,�\�M�u u network_settings-object.tpl.phpnu �[��� <?php
namespace LiteSpeed;
defined('WPINC') || exit();
require LSCWP_DIR . 'tpl/cache/settings_inc.object.tpl.php';
PK r,�\�)}�� � network_settings-purge.tpl.phpnu �[��� <?php
namespace LiteSpeed;
defined( 'WPINC' ) || exit;
?>
<h3 class="litespeed-title-short">
<?php echo __( 'Purge Settings', 'litespeed-cache' ); ?>
<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/cache/#purge-tab' ); ?>
</h3>
<table class="wp-list-table striped litespeed-table"><tbody>
<?php
require LSCWP_DIR . 'tpl/cache/settings_inc.purge_on_upgrade.tpl.php';
?>
</tbody></table>
PK r,�\h��(F F settings-ttl.tpl.phpnu �[��� <?php
namespace LiteSpeed ;
defined( 'WPINC' ) || exit ;
?>
<h3 class="litespeed-title-short">
<?php echo __( 'TTL', 'litespeed-cache' ) ; ?>
<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/cache/#ttl-tab' ); ?>
</h3>
<table class="wp-list-table striped litespeed-table"><tbody>
<tr>
<th>
<?php $id = Base::O_CACHE_TTL_PUB ; ?>
<?php $this->title( $id ) ; ?>
</th>
<td>
<?php $this->build_input( $id ) ; ?> <?php $this->readable_seconds() ; ?>
<div class="litespeed-desc">
<?php echo __('Specify how long, in seconds, public pages are cached.', 'litespeed-cache'); ?>
<?php $this->recommended( $id ) ; ?>
<?php $this->_validate_ttl( $id, 30 ) ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_CACHE_TTL_PRIV ; ?>
<?php $this->title( $id ) ; ?>
</th>
<td>
<?php $this->build_input( $id ) ; ?> <?php $this->readable_seconds() ; ?>
<div class="litespeed-desc">
<?php echo __( 'Specify how long, in seconds, private pages are cached.', 'litespeed-cache' ) ; ?>
<?php $this->recommended( $id ) ; ?>
<?php $this->_validate_ttl( $id, 60, 3600 ) ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_CACHE_TTL_FRONTPAGE ; ?>
<?php $this->title( $id ) ; ?>
</th>
<td>
<?php $this->build_input( $id ) ; ?> <?php $this->readable_seconds() ; ?>
<div class="litespeed-desc">
<?php echo __( 'Specify how long, in seconds, the front page is cached.', 'litespeed-cache' ) ; ?>
<?php $this->recommended( $id ) ; ?>
<?php $this->_validate_ttl( $id, 30 ) ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_CACHE_TTL_FEED ; ?>
<?php $this->title( $id ) ; ?>
</th>
<td>
<?php $this->build_input( $id ) ; ?> <?php $this->readable_seconds() ; ?>
<div class="litespeed-desc">
<?php echo __( 'Specify how long, in seconds, feeds are cached.', 'litespeed-cache' ) ; ?>
<?php echo __( 'If this is set to a number less than 30, feeds will not be cached.', 'litespeed-cache' ) ; ?>
<?php $this->recommended( $id ) ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_CACHE_TTL_REST ; ?>
<?php $this->title( $id ) ; ?>
</th>
<td>
<?php $this->build_input( $id ) ; ?> <?php $this->readable_seconds() ; ?>
<div class="litespeed-desc">
<?php echo __( 'Specify how long, in seconds, REST calls are cached.', 'litespeed-cache' ) ; ?>
<?php echo __( 'If this is set to a number less than 30, feeds will not be cached.', 'litespeed-cache' ) ; ?>
<?php $this->recommended( $id ) ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_CACHE_TTL_STATUS ; ?>
<?php $this->title( $id ) ; ?>
</th>
<td>
<div class="litespeed-textarea-recommended">
<div>
<?php $this->build_textarea( $id, 30 ) ; ?>
</div>
<div>
<?php $this->recommended( $id ) ; ?>
</div>
</div>
<div class="litespeed-desc">
<?php echo __( 'Specify an HTTP status code and the number of seconds to cache that page, separated by a space.', 'litespeed-cache' ) ; ?>
<?php Doc::one_per_line(); ?>
</div>
</td>
</tr>
</tbody></table>
PK r,�\��#�[ [ settings-esi.tpl.phpnu �[��� <?php
namespace LiteSpeed ;
defined( 'WPINC' ) || exit ;
?>
<h3 class="litespeed-title-short">
<?php echo __( 'ESI Settings', 'litespeed-cache' ) ; ?>
<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/cache/#esi-tab' ); ?>
</h3>
<div class="litespeed-description">
<p><?php echo __( 'With ESI (Edge Side Includes), pages may be served from cache for logged-in users.', 'litespeed-cache' ) ; ?></p>
<p><?php echo __( 'ESI allows you to designate parts of your dynamic page as separate fragments that are then assembled together to make the whole page. In other words, ESI lets you “punch holes” in a page, and then fill those holes with content that may be cached privately, cached publicly with its own TTL, or not cached at all.', 'litespeed-cache' ) ; ?>
<?php Doc::learn_more( 'https://blog.litespeedtech.com/2017/08/30/wpw-private-cache-vs-public-cache/', __( 'WpW: Private Cache vs. Public Cache', 'litespeed-cache' ) ); ?>
</p>
<p>
💡:
<?php echo __( 'You can turn shortcodes into ESI blocks.', 'litespeed-cache' ) ; ?>
<?php echo sprintf(
__( 'Replace %1$s with %2$s.', 'litespeed-cache' ),
'<code>[shortcodeA att1="val1" att2="val2"]</code>',
'<code>[esi shortcodeA att1="val1" att2="val2"]</code>'
) ; ?>
<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/admin/#turning-wordpress-shortcodes-into-esi-blocks' ); ?>
</p>
<p>
<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/api/#generate-esi-block-url', __( 'ESI sample for developers', 'litespeed-cache' ) ); ?>
</p>
</div>
<div class="litespeed-relative">
<?php if ( ! LSWCP_ESI_SUPPORT && ! $this->conf( Base::O_CDN_QUIC ) ) : ?>
<div class="litespeed-callout-danger">
<h4><?php echo __( 'WARNING', 'litespeed-cache' ) ; ?></h4>
<h4><?php echo __( 'These options are only available with LiteSpeed Enterprise Web Server or QUIC.cloud CDN.', 'litespeed-cache' ); ?></h4>
</div>
<?php endif; ?>
<table class="wp-list-table striped litespeed-table"><tbody>
<tr>
<th>
<?php $id = Base::O_ESI ; ?>
<?php $this->title( $id ) ; ?>
</th>
<td>
<?php $this->build_switch( $id ) ; ?>
<div class="litespeed-desc">
<?php echo __( 'Turn ON to cache public pages for logged in users, and serve the Admin Bar and Comment Form via ESI blocks. These two blocks will be uncached unless enabled below.', 'litespeed-cache' ) ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_ESI_CACHE_ADMBAR ; ?>
<?php $this->title( $id ) ; ?>
</th>
<td>
<?php $this->build_switch( $id ) ; ?>
<div class="litespeed-desc">
<?php echo __(' Cache the built-in Admin Bar ESI block.', 'litespeed-cache' ) ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_ESI_CACHE_COMMFORM ; ?>
<?php $this->title( $id ) ; ?>
</th>
<td>
<?php $this->build_switch( $id ) ; ?>
<div class="litespeed-desc">
<?php echo __( 'Cache the built-in Comment Form ESI block.', 'litespeed-cache' ) ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_ESI_NONCE ; ?>
<?php $this->title( $id ) ; ?>
</th>
<td>
<div class="litespeed-row-flex">
<div class="">
<?php $this->build_textarea( $id ) ; ?>
</div>
<div class="litespeed-width-3-10">
<p class="litespeed-desc">
<?php echo __( 'The list will be merged with the predefined nonces in your local data file.', 'litespeed-cache' ); ?>
<?php echo __( 'The latest data file is', 'litespeed-cache' ); ?>: <a href="https://github.com/litespeedtech/lscache_wp/blob/master/data/esi.nonces.txt" target="_blank">https://github.com/litespeedtech/lscache_wp/blob/master/data/esi.nonces.txt</a>
<br /><font class="litespeed-success">
<?php echo __( 'API', 'litespeed-cache' ); ?>:
<?php echo sprintf( __( 'Filter %s is supported.', 'litespeed-cache' ), '<code>litespeed_esi_nonces</code>' ); ?>
</font>
</p>
</div>
</div>
<div class="litespeed-desc">
<?php echo __( 'The above nonces will be converted to ESI automatically.', 'litespeed-cache' ); ?>
<?php Doc::one_per_line(); ?>
<br /><?php echo __( 'An optional second parameter may be used to specify cache control. Use a space to separate', 'litespeed-cache' ); ?>: <code>my_nonce_action private</code>
</div>
<div class="litespeed-desc">
<?php echo sprintf( __( 'Wildcard %1$s supported (match zero or more characters). For example, to match %2$s and %3$s, use %4$s.', 'litespeed-cache' ), '<code>*</code>', '<code>nonce_formid_1</code>', '<code>nonce_formid_3</code>', '<code>nonce_formid_*</code>' ) ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_CACHE_VARY_GROUP ; ?>
<?php $this->title( $id ) ; ?>
</th>
<td>
<table class="litespeed-vary-table wp-list-table striped litespeed-table form-table"><tbody>
<?php foreach ( $roles as $role => $title ): ?>
<tr>
<td class='litespeed-vary-title'><?php echo $title ; ?></td>
<td class='litespeed-vary-val'>
<?php
$this->build_input(
$id . '[' . $role . ']',
'litespeed-input-short',
$this->cls( 'Vary' )->in_vary_group( $role )
);
?>
</td>
</tr>
<?php endforeach; ?>
</tbody></table>
<div class="litespeed-desc">
<?php echo __( 'If your site contains public content that certain user roles can see but other roles cannot, you can specify a Vary Group for those user roles. For example, specifying an administrator vary group allows there to be a separate publicly-cached page tailored to administrators (with “edit” links, etc), while all other user roles see the default public page.', 'litespeed-cache' ) ; ?>
</div>
</td>
</tr>
</tbody></table>
</div>
PK r,�\p� < < entry_network.tpl.phpnu �[��� <?php
namespace LiteSpeed;
defined( 'WPINC' ) || exit;
$menuArr = array(
'cache' => __( 'Cache', 'litespeed-cache' ),
'purge' => __( 'Purge', 'litespeed-cache' ),
'excludes' => __( 'Excludes', 'litespeed-cache' ),
'object' => __( 'Object', 'litespeed-cache' ),
'browser' => __( 'Browser', 'litespeed-cache' ),
'advanced' => __( 'Advanced', 'litespeed-cache' ),
);
?>
<div class="wrap">
<h1 class="litespeed-h1">
<?php echo __('LiteSpeed Cache Network Cache Settings', 'litespeed-cache'); ?>
</h1>
<span class="litespeed-desc">
v<?php echo Core::VER; ?>
</span>
<hr class="wp-header-end">
</div>
<div class="litespeed-wrap">
<h2 class="litespeed-header nav-tab-wrapper">
<?php
$i = 1;
foreach ($menuArr as $tab => $val){
$accesskey = $i <= 9 ? "litespeed-accesskey='$i'" : '';
echo "<a class='litespeed-tab nav-tab' href='#$tab' data-litespeed-tab='$tab' $accesskey>$val</a>";
$i ++;
}
?>
</h2>
<div class="litespeed-body">
<?php $this->cache_disabled_warning(); ?>
<?php
$this->form_action( Router::ACTION_SAVE_SETTINGS_NETWORK );
// include all tpl for faster UE
foreach ($menuArr as $tab => $val) {
echo "<div data-litespeed-layout='$tab'>";
require LSCWP_DIR . "tpl/cache/network_settings-$tab.tpl.php";
echo "</div>";
}
$this->form_end( true );
?>
</div>
</div>
PK r,�\��5�v v network_settings-browser.tpl.phpnu �[��� <?php
namespace LiteSpeed;
defined('WPINC') || exit();
require LSCWP_DIR . 'tpl/cache/settings_inc.browser.tpl.php';
PK r,�\��5�v v settings-browser.tpl.phpnu �[��� <?php
namespace LiteSpeed;
defined('WPINC') || exit();
require LSCWP_DIR . 'tpl/cache/settings_inc.browser.tpl.php';
PK r,�\�kC�� � network_settings-cache.tpl.phpnu �[��� <?php
namespace LiteSpeed;
defined('WPINC') || exit;
?>
<h3 class="litespeed-title-short">
<?php echo __('Cache Control Settings', 'litespeed-cache'); ?>
<?php Doc::learn_more('https://docs.litespeedtech.com/lscache/lscwp/cache/'); ?>
</h3>
<table class="wp-list-table striped litespeed-table">
<tbody>
<tr>
<th><?php echo __('Network Enable Cache', 'litespeed-cache'); ?></th>
<td>
<?php $this->build_switch(Base::O_CACHE); ?>
<div class="litespeed-desc">
<?php echo __('Enabling LiteSpeed Cache for WordPress here enables the cache for the network.', 'litespeed-cache'); ?><br />
<?php echo __('It is <b>STRONGLY</b> recommend that the compatibility with other plugins on a single/few sites is tested first.', 'litespeed-cache'); ?>
<?php echo __('This is to ensure compatibility prior to enabling the cache for all sites.', 'litespeed-cache'); ?>
</div>
</td>
</tr>
<?php
require LSCWP_DIR . 'tpl/cache/settings_inc.cache_resources.tpl.php';
require LSCWP_DIR . 'tpl/cache/settings_inc.cache_mobile.tpl.php';
require LSCWP_DIR . 'tpl/cache/settings_inc.cache_dropquery.tpl.php';
?>
</tbody>
</table>PK r,�\8p�� settings_inc.object.tpl.phpnu �[��� <?php
namespace LiteSpeed ;
defined( 'WPINC' ) || exit ;
$lang_enabled = '<font class="litespeed-success">' . __( 'Enabled', 'litespeed-cache' ) . '</font>' ;
$lang_disabled = '<font class="litespeed-warning">' . __( 'Disabled', 'litespeed-cache' ) . '</font>' ;
$mem_enabled = class_exists( 'Memcached' ) ? $lang_enabled : $lang_disabled ;
$redis_enabled = class_exists( 'Redis' ) ? $lang_enabled : $lang_disabled ;
$mem_conn = $this->cls( 'Object_Cache' )->test_connection();
if ( $mem_conn === null ) {
$mem_conn_desc = '<font class="litespeed-desc">' . __( 'Not Available', 'litespeed-cache' ) . '</font>' ;
}
elseif ( $mem_conn ) {
$mem_conn_desc = '<font class="litespeed-success">' . __( 'Passed', 'litespeed-cache' ) . '</font>' ;
}
else {
$severity = $this->conf( Base::O_OBJECT, true ) ? "danger" : "warning";
$mem_conn_desc = '<font class="litespeed-' . $severity . '">' . __( 'Failed', 'litespeed-cache' ) . '</font>' ;
}
?>
<h3 class="litespeed-title-short">
<?php echo __( 'Object Cache Settings', 'litespeed-cache' ) ; ?>
<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/cache/#object-tab' ); ?>
</h3>
<table class="wp-list-table striped litespeed-table"><tbody>
<tr>
<th>
<?php $id = Base::O_OBJECT ; ?>
<?php $this->title( $id ) ; ?>
</th>
<td>
<?php $this->build_switch( $id ) ; ?>
<div class="litespeed-desc">
<?php echo __( 'Use external object cache functionality.', 'litespeed-cache' ) ; ?>
<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/admin/#memcached-lsmcd-and-redis-object-cache-support-in-lscwp' ); ?>
</div>
<div class="litespeed-block">
<div class='litespeed-col-auto'>
<h4><?php echo __( 'Status', 'litespeed-cache' ) ; ?></h4>
</div>
<div class='litespeed-col-auto'>
<?php echo sprintf( __( '%s Extension', 'litespeed-cache' ), 'Memcached' ) ; ?>: <?php echo $mem_enabled ; ?><br />
<?php echo sprintf( __( '%s Extension', 'litespeed-cache' ), 'Redis' ) ; ?>: <?php echo $redis_enabled ; ?><br />
<?php echo __( 'Connection Test', 'litespeed-cache' ) ; ?>: <?php echo $mem_conn_desc ; ?>
<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/admin/#how-to-debug' ); ?>
</div>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_OBJECT_KIND ; ?>
<?php $this->title( $id ) ; ?>
</th>
<td>
<?php $this->build_switch( $id, array( 'Memcached', 'Redis' ) ); ?>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_OBJECT_HOST; ?>
<?php $this->title( $id ); ?>
</th>
<td>
<?php $this->build_input( $id ); ?>
<div class="litespeed-desc">
<?php echo sprintf( __( 'Your %s Hostname or IP address.', 'litespeed-cache' ), 'Memcached/<a href="https://docs.litespeedtech.com/products/lsmcd/" target="_blank">LSMCD</a>/Redis' ) ; ?>
<br /><?php echo sprintf( __( 'If you are using a %1$s socket, %2$s should be set to %3$s', 'litespeed-cache' ), 'UNIX', Lang::title( $id ), '<code>/path/to/memcached.sock</code>' ); ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_OBJECT_PORT; ?>
<?php $this->title( $id ); ?>
</th>
<td>
<?php $this->build_input( $id, 'litespeed-input-short2' ) ; ?>
<div class="litespeed-desc">
<?php echo sprintf( __( 'Default port for %1$s is %2$s.', 'litespeed-cache' ), 'Memcached', '<code>11211</code>' ) ; ?>
<?php echo sprintf( __( 'Default port for %1$s is %2$s.', 'litespeed-cache' ), 'Redis', '<code>6379</code>' ) ; ?>
<br /><?php echo sprintf( __( 'If you are using a %1$s socket, %2$s should be set to %3$s', 'litespeed-cache' ), 'UNIX', Lang::title( $id ), '<code>0</code>' ); ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_OBJECT_LIFE; ?>
<?php $this->title( $id ); ?>
</th>
<td>
<?php $this->build_input( $id, 'litespeed-input-short2' ) ; ?> <?php echo __( 'seconds', 'litespeed-cache' ) ; ?>
<div class="litespeed-desc">
<?php echo __( 'Default TTL for cached objects.', 'litespeed-cache' ) ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_OBJECT_USER; ?>
<?php $this->title( $id ); ?>
</th>
<td>
<?php $this->build_input( $id ); ?>
<div class="litespeed-desc">
<?php echo sprintf( __( 'Only available when %s is installed.', 'litespeed-cache' ), 'SASL' ) ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_OBJECT_PSWD; ?>
<?php $this->title( $id ); ?>
</th>
<td>
<?php $this->build_input( $id ); ?>
<div class="litespeed-desc">
<?php echo __( 'Specify the password used when connecting.', 'litespeed-cache' ) ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_OBJECT_DB_ID; ?>
<?php $this->title( $id ); ?>
</th>
<td>
<?php $this->build_input( $id, 'litespeed-input-short' ); ?>
<div class="litespeed-desc">
<?php echo __( 'Database to be used', 'litespeed-cache' ) ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_OBJECT_GLOBAL_GROUPS; ?>
<?php $this->title( $id ); ?>
</th>
<td>
<?php $this->build_textarea( $id, 30 ) ; ?>
<div class="litespeed-desc">
<?php echo __( 'Groups cached at the network level.', 'litespeed-cache' ) ; ?>
<?php Doc::one_per_line() ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_OBJECT_NON_PERSISTENT_GROUPS; ?>
<?php $this->title( $id ); ?>
</th>
<td>
<?php $this->build_textarea( $id, 30 ) ; ?>
<div class="litespeed-desc">
<?php Doc::one_per_line() ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_OBJECT_PERSISTENT; ?>
<?php $this->title( $id ); ?>
</th>
<td>
<?php $this->build_switch( $id ) ; ?>
<div class="litespeed-desc">
<?php echo __( 'Use keep-alive connections to speed up cache operations.', 'litespeed-cache' ) ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_OBJECT_ADMIN; ?>
<?php $this->title( $id ); ?>
</th>
<td>
<?php $this->build_switch( $id ) ; ?>
<div class="litespeed-desc">
<?php echo __( 'Improve wp-admin speed through caching. (May encounter expired data)', 'litespeed-cache' ) ; ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_OBJECT_TRANSIENTS; ?>
<?php $this->title( $id ); ?>
</th>
<td>
<?php $this->build_switch( $id ) ; ?>
<div class="litespeed-desc">
<?php echo sprintf( __( 'Save transients in database when %1$s is %2$s.', 'litespeed-cache' ), '<code>' . Lang::title( Base::O_OBJECT_ADMIN ) . '</code>', '<code>' . __( 'OFF', 'litespeed-cache' ) . '</code>' ) ; ?>
<br />
<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/cache/#store-transients' ); ?>
</div>
</td>
</tr>
</tbody></table>
PK r,�\8�s� � settings_inc.browser.tpl.phpnu �[��� <?php
namespace LiteSpeed;
defined( 'WPINC' ) || exit;
?>
<h3 class="litespeed-title-short">
<?php echo __( 'Browser Cache Settings', 'litespeed-cache' ); ?>
<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/cache/#browser-tab' ); ?>
</h3>
<?php if ( LITESPEED_SERVER_TYPE === 'LITESPEED_SERVER_OLS' ) : ?>
<div class="litespeed-callout notice notice-warning inline">
<h4><?php echo __( 'NOTICE:', 'litespeed-cache' ); ?></h4>
<p><?php echo __( 'OpenLiteSpeed users please check this', 'litespeed-cache' ); ?>:
<?php Doc::learn_more( 'https://openlitespeed.org/kb/how-to-set-up-custom-headers/', __( 'Setting Up Custom Headers', 'litespeed-cache' ) ); ?></p>
</div>
<?php endif; ?>
<table class="wp-list-table striped litespeed-table"><tbody>
<tr>
<th>
<?php $id = Base::O_CACHE_BROWSER; ?>
<?php $this->title( $id ); ?>
</th>
<td>
<?php $this->build_switch( $id ); ?>
<div class="litespeed-desc">
<?php echo __( 'Browser caching stores static files locally in the user\'s browser. Turn on this setting to reduce repeated requests for static files.', 'litespeed-cache' ); ?>
<br /><?php Doc::notice_htaccess(); ?>
<br /><?php echo sprintf( __( 'You can turn on browser caching in server admin too. <a %s>Learn more about LiteSpeed browser cache settings</a>.', 'litespeed-cache' ), 'href="https://docs.litespeedtech.com/lscache/lscwp/cache/#how-to-set-it-up" target="_blank"' ); ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $id = Base::O_CACHE_TTL_BROWSER; ?>
<?php $this->title( $id ); ?>
</th>
<td>
<?php $this->build_input( $id ); ?> <?php $this->readable_seconds(); ?>
<div class="litespeed-desc">
<?php echo __( 'The amount of time, in seconds, that files will be stored in browser cache before expiring.', 'litespeed-cache' ); ?>
<?php $this->recommended( $id ); ?>
<?php $this->_validate_ttl( $id, 30 ); ?>
</div>
</td>
</tr>
</tbody></table>PK r,�\JI�� ! network_settings-excludes.tpl.phpnu �[��� <?php
namespace LiteSpeed;
defined( 'WPINC' ) || exit;
?>
<h3 class="litespeed-title-short">
<?php echo __( 'Exclude Settings', 'litespeed-cache' ); ?>
<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/cache/#excludes-tab' ); ?>
</h3>
<table class="wp-list-table striped litespeed-table"><tbody>
<?php
// Cookie
require LSCWP_DIR . 'tpl/cache/settings_inc.exclude_cookies.tpl.php';
// User Agent
require LSCWP_DIR . 'tpl/cache/settings_inc.exclude_useragent.tpl.php';
?>
</tbody></table>
PK r,�\�A͔ &