GRAYBYTE WORDPRESS FILE MANAGER4912

Server IP : 198.54.121.189 / Your IP : 216.73.216.112
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /usr/src/litespeed-wp-plugin/6.2.0.1/litespeed-cache/tpl/cache/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /usr/src/litespeed-wp-plugin/6.2.0.1/litespeed-cache/tpl/cache//settings-excludes.tpl.php
<?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>

	<tr>
		<th>
			<?php $id = Base::O_CACHE_EXC; ?>
			<?php $this->title( $id ); ?>
		</th>
		<td>
			<?php $this->build_textarea( $id ); ?>
			<div class="litespeed-desc">
				<?php echo __( 'Paths containing these strings will not be cached.', 'litespeed-cache' ); ?>
				<?php $this->_uri_usage_example(); ?>
			</div>
		</td>
	</tr>

	<tr>
		<th>
			<?php $id = Base::O_CACHE_EXC_QS; ?>
			<?php $this->title( $id ); ?>
		</th>
		<td>
			<?php $this->build_textarea( $id ); ?>
			<div class="litespeed-desc">
				<?php echo __( 'Query strings containing these parameters will not be cached.', 'litespeed-cache' ); ?>
				<?php echo sprintf( __( 'For example, for %s, %s and %s can be used here.', 'litespeed-cache' ), '<code>?aa=bb&cc=dd</code>', '<code>aa</code>', '<code>cc</code>' ); ?>
				<?php Doc::one_per_line(); ?>
			</div>
		</td>
	</tr>

	<tr>
		<th>
			<?php $id = Base::O_CACHE_EXC_CAT; ?>
			<?php $this->title( $id ); ?>
		</th>
		<td>
			<?php
				$excludes_buf = '';
				if ( $this->conf( $id ) ) {
					$excludes_buf = implode( "\n", array_map( 'get_cat_name', $this->conf( $id ) ) );
				}
				$this->build_textarea( $id, false, $excludes_buf );
			?>
			<div class="litespeed-desc">
				<b><?php echo __( 'All categories are cached by default.', 'litespeed-cache' ); ?></b>
				<?php echo sprintf( __( 'To prevent %s from being cached, enter them here.', 'litespeed-cache' ), __( 'categories', 'litespeed-cache') ); ?>
				<?php Doc::one_per_line(); ?>
			</div>
			<div class="litespeed-callout notice notice-warning inline">
				<h4><?php echo __( 'NOTE', 'litespeed-cache' ); ?>:</h4>
				<ol>
					<li><?php echo __( 'If the category name is not found, the category will be removed from the list on save.', 'litespeed-cache' ); ?></li>
				</ol>
			</div>
		</td>
	</tr>

	<tr>
		<th>
			<?php $id = Base::O_CACHE_EXC_TAG; ?>
			<?php $this->title( $id ); ?>
		</th>
		<td>
			<?php
				$excludes_buf = '';
				if ( $this->conf( $id ) ) {
					$tag_names = array();
					foreach ( array_map( 'get_tag', $this->conf( $id ) ) as $tag ) {
						$tag_names[] = $tag->name;
					}
					if ( ! empty( $tag_names ) ) {
						$excludes_buf = implode( "\n", $tag_names );
					}
				}
				$this->build_textarea( $id, false, $excludes_buf );
			?>
			<div class="litespeed-desc">
				<b><?php echo __( 'All tags are cached by default.', 'litespeed-cache' ); ?></b>
				<?php echo sprintf( __( 'To prevent %s from being cached, enter them here.', 'litespeed-cache' ), __( 'tags', 'litespeed-cache') ); ?>
				<?php Doc::one_per_line(); ?>
			</div>
			<div class="litespeed-callout notice notice-warning inline">
				<h4><?php echo __( 'NOTE', 'litespeed-cache' ); ?>:</h4>
				<ol>
					<li><?php echo __( 'If the tag slug is not found, the tag will be removed from the list on save.', 'litespeed-cache' ); ?></li>
					<li><?php echo sprintf( __( 'To exclude %1$s, insert %2$s.', 'litespeed-cache' ),
							'<code>http://www.example.com/tag/category/tag-slug/</code>',
							'<code>tag-slug</code>' ); ?></li>
				</ol>
			</div>
		</td>
	</tr>

	<?php
		if ( ! $this->_is_multisite ) :
			// 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';

		endif;
	?>

	<tr>
		<th>
			<?php $id = Base::O_CACHE_EXC_ROLES; ?>
			<?php $this->title( $id ); ?>
		</th>
		<td>
			<div class="litespeed-desc">
				<?php echo __( 'Selected roles will be excluded from cache.', 'litespeed-cache' ); ?>
			</div>
			<div class="litespeed-tick-list">
				<?php foreach ( $roles as $role => $title ): ?>
					<?php $this->build_checkbox( $id . '[]', $title, Control::cls()->in_cache_exc_roles( $role ), $role ); ?>
				<?php endforeach; ?>
			</div>

		</td>
	</tr>

</tbody></table>

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
January 01 1970 00:00:00
root / root
0
entry.tpl.php
2.119 KB
April 25 2024 23:07:02
root / root
0644
entry_network.tpl.php
1.309 KB
April 25 2024 23:07:02
root / root
0644
more_settings_tip.tpl.php
0.425 KB
April 25 2024 23:07:02
root / root
0644
network_settings-advanced.tpl.php
0.407 KB
April 25 2024 23:07:02
root / root
0644
network_settings-browser.tpl.php
0.115 KB
April 25 2024 23:07:02
root / root
0644
network_settings-cache.tpl.php
1.135 KB
April 25 2024 23:07:02
root / root
0644
network_settings-excludes.tpl.php
0.507 KB
April 25 2024 23:07:02
root / root
0644
network_settings-object.tpl.php
0.114 KB
April 25 2024 23:07:02
root / root
0644
network_settings-purge.tpl.php
0.405 KB
April 25 2024 23:07:02
root / root
0644
settings-advanced.tpl.php
1.783 KB
April 25 2024 23:07:02
root / root
0644
settings-browser.tpl.php
0.115 KB
April 25 2024 23:07:02
root / root
0644
settings-cache.tpl.php
5.088 KB
April 25 2024 23:07:02
root / root
0644
settings-esi.tpl.php
5.589 KB
April 25 2024 23:07:02
root / root
0644
settings-excludes.tpl.php
4.03 KB
April 25 2024 23:07:02
root / root
0644
settings-object.tpl.php
0.114 KB
April 25 2024 23:07:02
root / root
0644
settings-purge.tpl.php
5.853 KB
April 25 2024 23:07:02
root / root
0644
settings-ttl.tpl.php
3.068 KB
April 25 2024 23:07:02
root / root
0644
settings_inc.browser.tpl.php
1.897 KB
April 25 2024 23:07:02
root / root
0644
settings_inc.cache_dropquery.tpl.php
0.744 KB
April 25 2024 23:07:02
root / root
0644
settings_inc.cache_mobile.tpl.php
2.366 KB
April 25 2024 23:07:02
root / root
0644
settings_inc.cache_resources.tpl.php
0.559 KB
April 25 2024 23:07:02
root / root
0644
settings_inc.exclude_cookies.tpl.php
0.524 KB
April 25 2024 23:07:02
root / root
0644
settings_inc.exclude_useragent.tpl.php
0.53 KB
April 25 2024 23:07:02
root / root
0644
settings_inc.login_cookie.tpl.php
3.018 KB
April 25 2024 23:07:02
root / root
0644
settings_inc.object.tpl.php
6.531 KB
April 25 2024 23:07:02
root / root
0644
settings_inc.purge_on_upgrade.tpl.php
0.45 KB
April 25 2024 23:07:02
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF