File manager - Edit - /home/carfac/public_html/REPhotoUtah/wp-content/advanced-cache.php
Back
<?php // @codingStandardsIgnoreFile /** * Advanced cache stub. * * @since 150422 Rewrite. */ namespace WebSharks\CometCache; use WebSharks\CometCache\Classes; if (!defined('WPINC')) { exit('Do NOT access this file directly.'); } if (!defined('COMET_CACHE_PLUGIN_FILE')) { /* * Plugin file path. * * @since 140725 Reorganizing class members. * * @var string Absolute server path to CC plugin file. */ define('COMET_CACHE_PLUGIN_FILE', WP_CONTENT_DIR.'/plugins/comet-cache/comet-cache.php'); } if (!defined('COMET_CACHE_AC_FILE_VERSION')) { /* * Comet Cache AC file version. * * @since 161226 Adding AC file version. * * @var string Plugin version when AC file was built. */ define('COMET_CACHE_AC_FILE_VERSION', '170220'); } if (defined('WP_DEBUG') && WP_DEBUG) { if ((include_once(dirname(COMET_CACHE_PLUGIN_FILE).'/src/includes/stub.php')) === false) { return; // Unable to find stub. Fail softly w/ PHP warning. } } elseif ((@include_once(dirname(COMET_CACHE_PLUGIN_FILE).'/src/includes/stub.php')) === false) { return; // Unable to find stub. Fail softly. } if (defined('WP_DEBUG') && WP_DEBUG) { if ((include_once(dirname(COMET_CACHE_PLUGIN_FILE).'/src/includes/functions/wp-cache-postload.php')) === false) { return; // Unable to find postload function(s). Fail softly w/ PHP warning. } } elseif ((@include_once(dirname(COMET_CACHE_PLUGIN_FILE).'/src/includes/functions/wp-cache-postload.php')) === false) { return; // Unable to find postload function(s). Fail softly. } Classes\AdvCacheBackCompat::zenCacheConstants(); Classes\AdvCacheBackCompat::zcRequestVars(); Classes\AdvCacheBackCompat::browserCacheConstant(); if (!defined('COMET_CACHE_PRO')) { /* * Comet Cache Pro flag. * * @since 140422 First documented version. * * @var string|integer|boolean A boolean-ish value; e.g. `1` or `0`. */ define('COMET_CACHE_PRO', IS_PRO); } if (!defined('COMET_CACHE_ENABLE')) { /* * Is Comet Cache enabled? * * @since 140422 First documented version. * * @var string|integer|boolean A boolean-ish value; e.g. `1` or `0`. */ define('COMET_CACHE_ENABLE', '1'); } if (!defined('COMET_CACHE_DEBUGGING_ENABLE')) { /* * Is Comet Cache debugging enabled? * * @since 140422 First documented version. * * @var string|integer|boolean A boolean-ish value; e.g. `1` or `0`. */ define('COMET_CACHE_DEBUGGING_ENABLE', '1'); } if (!defined('COMET_CACHE_ALLOW_CLIENT_SIDE_CACHE')) { /* * Allow browsers to cache each document? * * @since 140422 First documented version. * * @var string|integer|boolean A boolean-ish value; e.g. `1` or `0`. * * @note If this is a `FALSE` (or an empty) value; Comet Cache will send no-cache headers. * If `TRUE`, Comet Cache will NOT send no-cache headers. */ define('COMET_CACHE_ALLOW_CLIENT_SIDE_CACHE', '0'); } if (!defined('COMET_CACHE_GET_REQUESTS')) { /* * Cache `$_GET` requests w/ a query string? * * @since 140422 First documented version. * * @var string|integer|boolean A boolean-ish value; e.g. `1` or `0`. */ define('COMET_CACHE_GET_REQUESTS', '0'); } if (!defined('COMET_CACHE_IGNORE_GET_REQUEST_VARS')) { /* * Ignore `$_GET` request query vars? * * @since 161119 First documented version. * * @var string A regular expression; else an empty string. */ define('COMET_CACHE_IGNORE_GET_REQUEST_VARS', '/(?:utm_[^\/]*?)/i'); } if (!defined('COMET_CACHE_CACHE_404_REQUESTS')) { /* * Cache 404 errors? * * @since 140422 First documented version. * * @var string|integer|boolean A boolean-ish value; e.g. `1` or `0`. */ define('COMET_CACHE_CACHE_404_REQUESTS', '0'); } if (!defined('COMET_CACHE_CACHE_NONCE_VALUES')) { /* * Cache HTML containing nonce values? * * @since 160103 First documented version. * * @var string|integer|boolean A boolean-ish value; e.g. `1` or `0`. */ define('COMET_CACHE_CACHE_NONCE_VALUES', '0'); } if (!defined('COMET_CACHE_CACHE_NONCE_VALUES_WHEN_LOGGED_IN')) { /* * Cache HTML containing nonce values for Logged-In Users? * * @since 160103 First documented version. * * @var string|integer|boolean A boolean-ish value; e.g. `1` or `0`. */ define('COMET_CACHE_CACHE_NONCE_VALUES_WHEN_LOGGED_IN', '1'); } if (!defined('COMET_CACHE_FEEDS_ENABLE')) { /* * Cache XML/RSS/Atom feeds? * * @since 140422 First documented version. * * @var string|integer|boolean A boolean-ish value; e.g. `1` or `0`. */ define('COMET_CACHE_FEEDS_ENABLE', '0'); } if (!defined('COMET_CACHE_DIR')) { /* * Directory used to store cache files; relative to `WP_CONTENT_DIR`. * * @since 140422 First documented version. * * @var string Absolute server directory path. */ define('COMET_CACHE_DIR', WP_CONTENT_DIR.'/'.'cache/comet-cache/cache'); } if (!defined('COMET_CACHE_MAX_AGE')) { /* * Cache expiration time. * * @since 140422 First documented version. * * @var string Anything compatible with PHP's {@link \strtotime()}. */ define('COMET_CACHE_MAX_AGE', '7 days'); } if (!defined('COMET_CACHE_EXCLUDE_HOSTS')) { /* * Host exclusions. * * @since 160706 Adding host exclusions. * * @var string A regular expression; else an empty string. */ define('COMET_CACHE_EXCLUDE_HOSTS', ''); } if (!defined('COMET_CACHE_EXCLUDE_URIS')) { /* * URI exclusions. * * @since 140422 First documented version. * * @var string A regular expression; else an empty string. */ define('COMET_CACHE_EXCLUDE_URIS', ''); } if (!defined('COMET_CACHE_EXCLUDE_CLIENT_SIDE_URIS')) { /* * Client-side URI exclusions. * * @since 151220 Adding support for client-side URI exclusions. * * @var string A regular expression; else an empty string. */ define('COMET_CACHE_EXCLUDE_CLIENT_SIDE_URIS', ''); } if (!defined('COMET_CACHE_EXCLUDE_REFS')) { /* * HTTP referrer exclusions. * * @since 140422 First documented version. * * @var string A regular expression; else an empty string. */ define('COMET_CACHE_EXCLUDE_REFS', ''); } if (!defined('COMET_CACHE_EXCLUDE_AGENTS')) { /* * HTTP user-agent exclusions. * * @since 140422 First documented version. * * @var string A regular expression; else an empty string. */ define('COMET_CACHE_EXCLUDE_AGENTS', '/(?:w3c_validator)/i'); } if (!defined('COMET_CACHE_404_CACHE_FILENAME')) { /* * 404 file name (if applicable). * * @since 140422 First documented version. * * @var string A unique file name that will not conflict with real paths. * This should NOT include the extension; basename only please. */ define('COMET_CACHE_404_CACHE_FILENAME', '----404----'); } $GLOBALS[GLOBAL_NS.'_advanced_cache'] = new Classes\AdvancedCache(); $GLOBALS[GLOBAL_NS.'__advanced_cache'] = &$GLOBALS[GLOBAL_NS.'_advanced_cache']; if (!isset($GLOBALS['zencache__advanced_cache'])) { $GLOBALS['zencache_advanced_cache'] = &$GLOBALS[GLOBAL_NS.'_advanced_cache']; $GLOBALS['zencache__advanced_cache'] = &$GLOBALS[GLOBAL_NS.'_advanced_cache']; } if (!isset($GLOBALS['quick_cache__advanced_cache'])) { $GLOBALS['quick_cache_advanced_cache'] = &$GLOBALS[GLOBAL_NS.'_advanced_cache']; $GLOBALS['quick_cache__advanced_cache'] = &$GLOBALS[GLOBAL_NS.'_advanced_cache']; }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.24 |
proxy
|
phpinfo
|
Settings