PATH:
home
/
shotlining
/
public_html
/
wp-content
/
plugins
/
w3-total-cache
<?php /** * File: Cli.php * * @package W3TC */ namespace W3TC; /** * Class: W3TotalCache_Command * * W3 Total Cache plugin WP-CLI integration * * @package wp-cli * @subpackage commands/third-party */ class W3TotalCache_Command extends \WP_CLI_Command { /** * Register WP-CLI commands. * * @since 2.8.8 * @static * * @return void */ public static function register_commands() { if ( \method_exists( '\WP_CLI', 'add_command' ) ) { \WP_CLI::add_command( 'w3-total-cache', '\W3TC\W3TotalCache_Command', array( 'shortdesc' => __( 'Manage W3TC settings, flush, and prime the cache.', 'w3-total-cache' ) ) ); \WP_CLI::add_command( 'total-cache', '\W3TC\W3TotalCache_Command', array( 'shortdesc' => __( 'Manage W3TC settings, flush, and prime the cache.', 'w3-total-cache' ) ) ); \WP_CLI::add_command( 'w3tc', '\W3TC\W3TotalCache_Command', array( 'shortdesc' => __( 'Manage W3TC settings, flush, and prime the cache.', 'w3-total-cache' ) ) ); } else { // Backward compatibility. \WP_CLI::addCommand( 'w3-total-cache', '\W3TC\W3TotalCache_Command' ); \WP_CLI::addCommand( 'total-cache', '\W3TC\W3TotalCache_Command' ); \WP_CLI::addCommand( 'w3tc', '\W3TC\W3TotalCache_Command' ); } } /** * Creates missing files, writes Apache/Nginx rules. * * ## OPTIONS * [<server>] * : Subcommand defines server type: * apache Create rules for an Apache server * nginx Create rules for an Nginx server * * @param array $args Arguments. * @param array $vars Variables. * * @return void */ public function fix_environment( array $args = array(), array $vars = array() ) { $server_type = \array_shift( $args ); switch ( $server_type ) { case 'apache': $_SERVER['SERVER_SOFTWARE'] = 'Apache'; break; case 'nginx': $_SERVER['SERVER_SOFTWARE'] = 'nginx'; break; default: break; } try { $config = Dispatcher::config(); $environment = Dispatcher::component( 'Root_Environment' ); $environment->fix_in_wpadmin( $config, true ); } catch ( Util_Environment_Exceptions $e ) { \WP_CLI::error( \sprintf( // translators: 1: Error message. \__( 'Environment adjustment failed with error: %1$s', 'w3-total-cache' ), $e->getCombinedMessage() ) ); } \WP_CLI::success( \__( 'Environment adjusted.', 'w3-total-cache' ) ); } /** * Clear something from the cache. * * ## OPTIONS * <cache> * : Cache to flush * all Flush all caches * posts Flush posts (pagecache and further) * post Flush the page cache * database Flush the database cache * db Flush the database cache * object Flush the object cache * minify Flush the minify cache * * [--post_id=<id>] * : Flush a specific post ID * * [--permalink=<post-permalink>] * : Flush a specific permalink * * ## EXAMPLES * # Flush all * $ wp w3-total-cache flush all * * # Flush pagecache and reverse proxies * $ wp w3-total-cache flush posts * * @param array $args Arguments. * @param array $vars Variables. * * @return void */ public function flush( array $args = array(), array $vars = array() ) { $args = \array_unique( $args ); do { $cache_type = \array_shift( $args ); switch ( $cache_type ) { case 'all': try { \w3tc_flush_all(); } catch ( \Exception $e ) { \WP_CLI::error( \__( 'Flushing all failed.', 'w3-total-cache' ) ); } \WP_CLI::success( \__( 'Everything flushed successfully.', 'w3-total-cache' ) ); break; case 'posts': try { \w3tc_flush_posts(); } catch ( \Exception $e ) { \WP_CLI::error( \__( 'Flushing posts/pages failed.', 'w3-total-cache' ) ); } \WP_CLI::success( \__( 'Posts/pages flushed successfully.', 'w3-total-cache' ) ); break; case 'db': case 'database': try { $w3_db = Dispatcher::component( 'CacheFlush' ); $w3_db->dbcache_flush(); } catch ( \Exception $e ) { \WP_CLI::error( \__( 'Flushing the DB cache failed.', 'w3-total-cache' ) ); } \WP_CLI::success( \__( 'The DB cache is flushed successfully.', 'w3-total-cache' ) ); break; case 'minify': try { $w3_minify = Dispatcher::component( 'CacheFlush' ); $w3_minify->minifycache_flush(); } catch ( \Exception $e ) { \WP_CLI::error( \__( 'Flushing the minify cache failed.', 'w3-total-cache' ) ); } \WP_CLI::success( \__( 'The minify cache is flushed successfully.', 'w3-total-cache' ) ); break; case 'object': try { $w3_objectcache = Dispatcher::component( 'CacheFlush' ); $w3_objectcache->objectcache_flush(); } catch ( \Exception $e ) { \WP_CLI::error( \__( 'Flushing the object cache failed.', 'w3-total-cache' ) ); } \WP_CLI::success( \__( 'The object cache is flushed successfully.', 'w3-total-cache' ) ); break; case 'post': if ( isset( $vars['post_id'] ) ) { if ( \is_numeric( $vars['post_id'] ) ) { try { \w3tc_flush_post( $vars['post_id'], true ); } catch ( \Exception $e ) { \WP_CLI::error( \__( 'Flushing the page from cache failed.', 'w3-total-cache' ) ); } \WP_CLI::success( \__( 'The page is flushed from cache successfully.', 'w3-total-cache' ) ); } else { \WP_CLI::error( \__( 'This is not a valid post id.', 'w3-total-cache' ) ); } } elseif ( isset( $vars['permalink'] ) ) { try { \w3tc_flush_url( $vars['permalink'] ); } catch ( \Exception $e ) { \WP_CLI::error( \__( 'Flushing the page from cache failed.', 'w3-total-cache' ) ); } \WP_CLI::success( \__( 'The page is flushed from cache successfully.', 'w3-total-cache' ) ); } else { if ( ! empty( $flushed_page_cache ) ) { break; } try { \w3tc_flush_posts(); } catch ( \Exception $e ) { \WP_CLI::error( \__( 'Flushing the page cache failed.', 'w3-total-cache' ) ); } \WP_CLI::success( \__( 'The page cache is flushed successfully.', 'w3-total-cache' ) ); } break; default: \WP_CLI::error( __( 'Not specified what to flush', 'w3-total-cache' ) ); } } while ( ! empty( $args ) ); } /** * Get or set option. * * Options modifications do not update your .htaccess file automatically. * Use the fix_environment command afterwards to do it. * * ## OPTIONS * <operation> * : Operation to do * get Get option value * set Set option value * <name> * : Option name * * [<value>] * : (for set operation) Value to set * * [--state] * : Use state, not config * State is used for backend notifications * * [--master] * : Use master config/state * * [--type=<type>] * : Type of data used boolean/bool/string/integer/int/array/json. Default: string * * [--delimiter=<delimiter>] * : Delimiter to use for array type values * * ## EXAMPLES * # Get if pagecache enabled * $ wp w3-total-cache option get pgcache.enabled --type=boolean * * # Rnable pagecache * $ wp w3-total-cache option set pgcache.enabled true --type=boolean * * # Don't show wp-content permissions notification * $ wp w3-total-cache option set common.hide_note_wp_content_permissions true --state --type=boolean * * @param array $args Arguments. * @param array $vars Variables. * * @return void */ public function option( array $args = array(), array $vars = array() ) { $op = \array_shift( $args ); $name = \array_shift( $args ); $c = null; if ( empty( $name ) ) { \WP_CLI::error( \__( '<name> parameter is not specified', 'w3-total-cache' ) ); return; } if ( \strpos( $name, '::' ) !== false ) { $name = \explode( '::', $name ); } if ( isset( $vars['state'] ) ) { $c = isset( $vars['master'] ) ? Dispatcher::config_state_master() : Dispatcher::config_state(); } else { $c = isset( $vars['master'] ) ? Dispatcher::config_master() : Dispatcher::config(); } if ( 'get' === $op ) { $type = $vars['type'] ?? 'string'; switch ( $type ) { case 'boolean': case 'bool': $v = $c->get_boolean( $name ) ? 'true' : 'false'; break; case 'integer': case 'int': $v = $c->get_integer( $name ); break; case 'string': $v = $c->get_string( $name ); break; case 'array': \var_export( $c->get_array( $name ) ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_var_export echo "\n"; return; case 'json': echo \wp_json_encode( $c->get_array( $name ), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES ) . "\n"; return; default: \WP_CLI::error( \__( 'Unknown type ', 'w3-total-cache' ) . $type ); return; } echo \esc_html( $v ) . "\n"; } elseif ( 'set' === $op ) { $type = $vars['type'] ?? 'string'; if ( count( $args ) <= 0 ) { \WP_CLI::error( \__( '<value> parameter is not specified', 'w3-total-cache' ) ); return; } $value = \array_shift( $args ); switch ( $type ) { case 'boolean': case 'bool': if ( 'true' === $value || '1' === $value || 'on' === $value ) { $v = true; } elseif ( 'false' === $value || '0' === $value || 'off' === $value ) { $v = false; } else { \WP_CLI::error( \sprintf( // translators: 1: Value being set. \__( '<value> parameter "%1$s" is not boolean', 'w3-total-cache' ), $value ) ); return; } break; case 'integer': case 'int': $v = (int) $value; break; case 'string': $v = $value; break; case 'array': $delimiter = $vars['delimiter'] ?? ','; $v = \explode( $delimiter, $value ); break; case 'json': $v = \json_decode( $value ); break; default: \WP_CLI::error( \__( 'Unknown type ', 'w3-total-cache' ) . $type ); return; } try { $c->set( $name, $v ); $c->save(); \WP_CLI::success( \__( 'Option updated successfully.', 'w3-total-cache' ) ); } catch ( \Exception $e ) { \WP_CLI::error( \__( 'Option value update failed.', 'w3-total-cache' ) ); } } else { \WP_CLI::error( \__( '<operation> parameter is not specified', 'w3-total-cache' ) ); } } /** * Import a configuration file * * ## OPTIONS * <filename> * : Filename to import * * @global $wp_filesystem * @see get_filesystem_method() * * @param array $args Arguments. * @param array $vars Variables. * * @return void * * @throws \Exception Exception. */ public function import( array $args = array(), array $vars = array() ) { if ( 'direct' !== \get_filesystem_method() ) { \WP_CLI::error( \__( 'The filesystem must be direct.', 'w3-total-cache' ) ); } $filename = \array_shift( $args ); // Initialize WP_Filesystem. global $wp_filesystem; WP_Filesystem(); try { $config = new Config(); if ( ! $wp_filesystem->exists( $filename ) || ! $wp_filesystem->is_readable( $filename ) ) { throw new \Exception( \esc_html( sprintf( // Translators: 1 Filename. \__( 'Cant read file: %1$s', 'w3-total-cache' ), $filename ) ) ); } if ( ! $config->import( $filename ) ) { throw new \Exception( \esc_html__( 'Import failed', 'w3-total-cache' ) ); } $config->save(); } catch ( \Exception $e ) { \WP_CLI::error( sprintf( // translators: 1: Error message. \__( 'Config import failed: %1$s', 'w3-total-cache' ), $e->getMessage() ) ); } \WP_CLI::success( \__( 'Configuration successfully imported.', 'w3-total-cache' ) ); } /** * Export configuration file * * ## OPTIONS * <filename> * : Filename to export -- Sanitized with sanitize_file_name() * * [--mode=<mode>] * : Mode of the file. Default: 0600 (-rw-------) * * @global $wp_filesystem * @see get_filesystem_method() * * @param array $args Arguments. * @param array $vars Variables. * * @return void * * @throws \Exception Exception. */ public function export( array $args = array(), array $vars = array() ) { if ( 'direct' !== \get_filesystem_method() ) { \WP_CLI::error( \__( 'The filesystem must be direct.', 'w3-total-cache' ) ); } $filename = \sanitize_file_name( \array_shift( $args ) ); $mode = $vars['mode'] ?? '0600'; // Initialize WP_Filesystem. global $wp_filesystem; WP_Filesystem(); // Try to export the config and write to file. try { $config = new Config(); if ( ! $wp_filesystem->put_contents( $filename, $config->export( $filename ), octdec( $mode ) ) ) { throw new \Exception( \esc_html__( 'Export failed', 'w3-total-cache' ) ); } } catch ( \Exception $e ) { \WP_CLI::error( sprintf( // translators: 1: Error message. \__( 'Config export failed: %1$s', 'w3-total-cache' ), $e->getMessage() ) ); } \WP_CLI::success( \sprintf( // translators: 1: Filename. \__( 'Configuration successfully exported to "%1$s" with mode "%2$s".', 'w3-total-cache' ), $filename, $mode ) ); } /** * Update query string for all static files. * * @return void */ public function querystring() { try { $w3_querystring = Dispatcher::component( 'CacheFlush' ); $w3_querystring->browsercache_flush(); } catch ( \Exception $e ) { \WP_CLI::error( sprintf( // translators: 1: Error message. \__( 'updating the query string failed. with error %1$s', 'w3-total-cache' ), $e->getMessage() ) ); } \WP_CLI::success( \__( 'The query string was updated successfully.', 'w3-total-cache' ) ); } /** * Purges URLs from CDN and varnish if enabled. * * @param array $args List of files to be purged, absolute path or relative to WordPress installation path. * * @return void */ public function cdn_purge( array $args = array() ) { $purgeitems = array(); foreach ( $args as $file ) { $cdncommon = Dispatcher::component( 'Cdn_Core' ); if ( file_exists( $file ) ) { $local_path = $file; } else { $local_path = ABSPATH . $file; } $remote_path = $file; $purgeitems[] = $cdncommon->build_file_descriptor( $local_path, $remote_path ); } try { $w3_cdn_purge = Dispatcher::component( 'CacheFlush' ); $w3_cdn_purge->cdn_purge_files( $purgeitems ); } catch ( \Exception $e ) { \WP_CLI::error( \sprintf( // translators: 1: Error message. \__( 'Files did not successfully purge with error %1$s', 'w3-total-cache' ), $e->getMessage() ) ); } \WP_CLI::success( \__( 'Files purged successfully.', 'w3-total-cache' ) ); } /** * Generally triggered from a cronjob, performs manual page cache Garbage collection. * * @return void */ public function pgcache_cleanup() { try { $o = Dispatcher::component( 'PgCache_Plugin_Admin' ); $o->cleanup(); } catch ( \Exception $e ) { \WP_CLI::error( \sprintf( // translators: 1: Error message. \__( 'PageCache Garbage cleanup failed: %1$s', 'w3-total-cache' ), $e->getMessage() ) ); } \WP_CLI::success( \__( 'PageCache Garbage cleanup triggered successfully.', 'w3-total-cache' ) ); } /** * Generally triggered from a cronjob, performs manual page cache priming * ## OPTIONS * [--start=<start>] * : Start since <start> entry of sitemap * * [--limit=<limit>] * : load no more than <limit> pages * * @param array $args Arguments. * @param array $vars Variables. * * @return void */ public function pgcache_prime( array $args = array(), array $vars = array() ) { try { $log_callback = function ( $m ) { \WP_CLI::log( $m ); }; $o = Dispatcher::component( 'PgCache_Plugin_Admin' ); $o->prime( ( isset( $vars['start'] ) ? $vars['start'] - 1 : null ), ( isset( $vars['limit'] ) ? $vars['limit'] : null ), $log_callback ); } catch ( \Exception $e ) { \WP_CLI::error( \sprintf( // translators: 1: Error message. \__( 'PageCache Priming did failed: %1$s', 'w3-total-cache' ), $e->getMessage() ) ); } \WP_CLI::success( \__( 'PageCache Priming triggered successfully.', 'w3-total-cache' ) ); } /** * Generally triggered from a cronjob, processes always cached queue. * * @return void */ public function alwayscached_process() { if ( ! Extension_AlwaysCached_Plugin::is_enabled() ) { \WP_CLI::error( \__( 'Always Cached feature is not enabled.', 'w3-total-cache' ) ); return; } try { Extension_AlwaysCached_Worker::run( false ); } catch ( \Exception $e ) { \WP_CLI::error( \sprintf( // translators: 1: Error message. \__( 'Always Cached queue processer failed: %1$s', 'w3-total-cache' ), $e->getMessage() ) ); } \WP_CLI::success( \__( 'Always Cached queue processed successfully.', 'w3-total-cache' ) ); } /** * Generally triggered from a cronjob, processes AlwaysCached queue. * * @return void */ public function alwayscached_clear() { if ( ! Extension_AlwaysCached_Plugin::is_enabled() ) { \WP_CLI::error( \__( 'Always Cached feature is not enabled', 'w3-total-cache' ) ); return; } try { Extension_AlwaysCached_Queue::empty(); } catch ( \Exception $e ) { \WP_CLI::error( \sprintf( // translators: 1: Error message. \__( 'Always Cached queue empty failed: %1$s', 'w3-total-cache' ), $e->getMessage() ) ); } \WP_CLI::success( \__( 'Always Cached queue emptied successfully.', 'w3-total-cache' ) ); } } // Register WP-CLI commands. add_action( 'init', array( '\W3TC\W3TotalCache_Command', 'register_commands' ), 10, 0 );
[+]
..
[-] SystemOpCache_AdminActions.php
[edit]
[-] Generic_Plugin_AdminCompatibility.php
[edit]
[-] Util_Admin.php
[edit]
[+]
inc
[-] Extension_Swarmify_Core.php
[edit]
[-] Cdn_RackSpaceCdn_Page_View.js
[edit]
[-] Extension_CloudFlare_Popup_View_Intro.php
[edit]
[-] Extension_ImageService_Widget_View.php
[edit]
[-] UsageStatistics_Page_PageCacheRequests_View.php
[edit]
[-] Cdn_GoogleDrive_Popup_AuthReturn_View.php
[edit]
[-] Extension_Genesis_Page.php
[edit]
[-] Cache_File_Cleaner.php
[edit]
[-] SystemOpCache_Core.php
[edit]
[-] Cdnfsd_TransparentCDN_Page.php
[edit]
[-] Util_WpFile_FilesystemCopyException.php
[edit]
[-] Extension_CloudFlare_Popup.php
[edit]
[-] Extension_ImageService_Plugin_Admin.css
[edit]
[-] Extension_FragmentCache_Page_View.php
[edit]
[-] Extension_NewRelic_Widget_View.js
[edit]
[-] Cdn_RackSpaceCloudFiles_Popup_View_Regions.php
[edit]
[-] Generic_Page_General.php
[edit]
[-] UserExperience_LazyLoad_Mutator_Picture.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup_View_Deauthorize.php
[edit]
[-] Generic_Page_Dashboard_View.css
[edit]
[-] Extension_Genesis_Plugin_Admin.php
[edit]
[-] BrowserCache_Environment.php
[edit]
[-] Extension_NewRelic_Api.php
[edit]
[-] Extension_ImageService_Environment.php
[edit]
[-] Cache_Memcache.php
[edit]
[-] PgCache_Environment.php
[edit]
[-] PageSpeed_Page_View_FromAPI.php
[edit]
[-] Cdn_Util.php
[edit]
[-] UserExperience_LazyLoad_Page_View.php
[edit]
[-] Generic_WidgetServices_View.php
[edit]
[-] Extension_CloudFlare_Widget.php
[edit]
[-] CdnEngine_GoogleDrive.php
[edit]
[-] PageSpeed_Widget_View.css
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Intro.php
[edit]
[-] Cdnfsd_BunnyCdn_Engine.php
[edit]
[-] Cdn_RackSpace_Api_Cdn.php
[edit]
[-] BrowserCache_Core.php
[edit]
[-] Extension_FragmentCache_Page.php
[edit]
[-] Cdn_GoogleDrive_Popup_AuthReturn.php
[edit]
[-] Util_WpmuBlogmap.php
[edit]
[-] ModuleStatus.php
[edit]
[-] UsageStatistics_Source_AccessLog.php
[edit]
[-] Cdn_Page.php
[edit]
[-] UserExperience_Emoji_Extension.php
[edit]
[-] Cdn_GoogleDrive_AdminActions.php
[edit]
[-] Cdn_RackSpace_Api_CloudFiles.php
[edit]
[-] Extension_FragmentCache_WpObjectCache.php
[edit]
[-] PgCache_Page.php
[edit]
[-] Minify_Plugin.php
[edit]
[-] Cache_Xcache.php
[edit]
[-] PageSpeed_Api.php
[edit]
[-] Generic_WidgetBoldGrid_View.php
[edit]
[-] readme.txt
[edit]
[-] Cdnfsd_Core.php
[edit]
[-] Minify_ConfigLabels.php
[edit]
[-] UsageStatistics_Sources.php
[edit]
[-] BrowserCache_Environment_LiteSpeed.php
[edit]
[-] Cdn_RackSpaceCdn_Page.php
[edit]
[+]
extension-example
[-] Extension_Swarmify_Page_View.php
[edit]
[-] Extension_AlwaysCached_Page.php
[edit]
[-] UserExperience_Remove_CssJs_Page_View.php
[edit]
[-] Extension_CloudFlare_Plugin.php
[edit]
[-] CdnEngine_Azure_MI_Utility.php
[edit]
[-] Util_Mime.php
[edit]
[+]
languages
[-] BrowserCache_Page_View_QuickReference.php
[edit]
[-] UserExperience_DeferScripts_Script.js
[edit]
[+]
vendor
[-] Util_UsageStatistics.php
[edit]
[-] Extension_CloudFlare_Page_View.php
[edit]
[-] UserExperience_DeferScripts_Extension.php
[edit]
[-] UserExperience_LazyLoad_GoogleMaps_GoogleMapsEasy.php
[edit]
[-] Cdn_BunnyCdn_Popup.php
[edit]
[-] CdnEngine_Mirror_CloudFront.php
[edit]
[-] UsageStatistics_Page_ObjectCacheLog_View.php
[edit]
[-] ObjectCache_DiskPopup.js
[edit]
[-] Extension_NewRelic_Popup.php
[edit]
[-] Extension_NewRelic_Service.php
[edit]
[-] Extension_NewRelic_GeneralPage.php
[edit]
[-] Generic_Plugin_Admin_View_Faq.php
[edit]
[-] Extension_Wpml_Plugin_Admin.php
[edit]
[-] press.txt
[edit]
[-] Util_File.php
[edit]
[-] Cdn_RackSpaceCdn_Popup.php
[edit]
[-] Extension_ImageService_Widget.js
[edit]
[-] UsageStatistics_Page_DbRequests_View.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup_View_Configured.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Regions.php
[edit]
[-] Util_Activation.php
[edit]
[-] Generic_WidgetAccount_View.php
[edit]
[-] UserExperience_LazyLoad_Plugin.php
[edit]
[-] Cdnfsd_CloudFront_Page_View.js
[edit]
[-] UsageStatistics_AdminActions.php
[edit]
[-] Cdnfsd_Util.php
[edit]
[-] PageSpeed_Widget.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Service_Create.php
[edit]
[-] PageSpeed_Page_View.css
[edit]
[-] Extension_FragmentCache_Plugin.php
[edit]
[-] Extension_AlwaysCached_Queue.php
[edit]
[-] CdnEngine.php
[edit]
[-] PgCache_Page_View.js
[edit]
[-] SystemOpCache_Plugin_Admin.php
[edit]
[-] Cache_File.php
[edit]
[-] Generic_Environment.php
[edit]
[-] Util_Installed.php
[edit]
[-] Licensing_AdminActions.php
[edit]
[-] CacheFlush.php
[edit]
[-] ObjectCache_DiskPopup_View.php
[edit]
[-] SetupGuide_Plugin_Admin.php
[edit]
[-] Extension_AlwaysCached_Page_View_BoxQueue.php
[edit]
[-] Util_Environment_Exception.php
[edit]
[-] Cdn_AdminNotes.php
[edit]
[-] UsageStatistics_Page_View.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Service_Created.php
[edit]
[-] Extension_AlwaysCached_Plugin.php
[edit]
[-] Generic_Page_About.php
[edit]
[+]
wp-content
[-] UsageStatistics_StorageWriter.php
[edit]
[-] Extension_Genesis_Page_View.php
[edit]
[-] Cdn_Core_Admin.php
[edit]
[-] Support_Page.php
[edit]
[-] Extension_NewRelic_Plugin.php
[edit]
[-] Minify_GeneralPage_View_ShowHelp.js
[edit]
[-] w3-total-cache-old-php.php
[edit]
[-] PgCache_ContentGrabber.php
[edit]
[-] Util_PageUrls.php
[edit]
[-] DbCache_Plugin.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup_View_Intro.php
[edit]
[-] Cdn_RackSpaceCdn_AdminActions.php
[edit]
[-] BrowserCache_Page_View_SectionSecurity.php
[edit]
[-] Cdnfsd_TransparentCDN_Page_View.php
[edit]
[-] DbCache_WpdbBase.php
[edit]
[-] Cdn_AdminActions.php
[edit]
[-] CacheGroups_Plugin_Admin.php
[edit]
[-] Cdn_Plugin.php
[edit]
[-] Generic_WidgetServices.php
[edit]
[-] ObjectCache_Plugin.php
[edit]
[-] CdnEngine_S3.php
[edit]
[-] Dispatcher.php
[edit]
[-] Util_WpFile_FilesystemMkdirException.php
[edit]
[-] Generic_WidgetPartners_View.php
[edit]
[-] Generic_Plugin_AdminNotices.css
[edit]
[-] Root_AdminActions.php
[edit]
[-] Cache_File_Cleaner_Generic.php
[edit]
[-] UserExperience_LazyLoad_Mutator.php
[edit]
[-] UserExperience_LazyLoad_GoogleMaps_WPGoogleMapPlugin.php
[edit]
[-] Generic_ConfigLabels.php
[edit]
[-] PageSpeed_Data.php
[edit]
[-] Minify_Extract.php
[edit]
[-] PgCache_ConfigLabels.php
[edit]
[-] Cdn_BunnyCdn_Popup_View_Deauthorized.php
[edit]
[-] DbCache_Wpdb.php
[edit]
[-] Extension_NewRelic_Widget_View.css
[edit]
[-] Generic_GeneralPage_View_ShowEdge.js
[edit]
[-] Generic_WidgetBoldGrid_AdminActions.php
[edit]
[-] Extension_WordPressSeo_Plugin.php
[edit]
[-] DbCache_WpdbNew.php
[edit]
[-] Cdn_BunnyCdn_Widget_View_Authorized.php
[edit]
[-] UsageStatistics_Page_View.js
[edit]
[-] Extension_CloudFlare_Page_View.js
[edit]
[-] Generic_Plugin_Admin.php
[edit]
[-] CdnEngine_RackSpaceCloudFiles.php
[edit]
[-] Util_Environment.php
[edit]
[-] CdnEngine_Ftp.php
[edit]
[-] UserExperience_Page_View.php
[edit]
[-] DbCache_Environment.php
[edit]
[-] Root_AdminActivation.php
[edit]
[-] Generic_Page_Dashboard.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Popup_View_Containers.php
[edit]
[-] Generic_WidgetSpreadTheWord_Plugin.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Page_View.js
[edit]
[-] UserExperience_Remove_CssJs_Mutator.php
[edit]
[-] Util_Rule.php
[edit]
[-] UsageStatistics_Sources_Memcached.php
[edit]
[-] Extension_FragmentCache_GeneralPage.php
[edit]
[-] Cdnfsd_CloudFront_Engine.php
[edit]
[-] security.md
[edit]
[-] ObjectCache_Page.php
[edit]
[-] Extension_NewRelic_AdminActions.php
[edit]
[-] Cdn_CacheFlush.php
[edit]
[-] Extension_FragmentCache_Core.php
[edit]
[-] Cdn_GoogleDrive_Page.php
[edit]
[-] FeatureShowcase_Plugin_Admin.php
[edit]
[-] CdnEngine_Mirror_BunnyCdn.php
[edit]
[-] ConfigUtil.php
[edit]
[-] UserExperience_DeferScripts_Page_View.php
[edit]
[-] Extension_Amp_Plugin.php
[edit]
[-] Cdn_Page_View_Fsd_HeaderActions.php
[edit]
[-] ConfigSettingsTabs.php
[edit]
[-] Util_WpFile_FilesystemOperationException.php
[edit]
[-] ConfigSettingsTabsKeys.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Popup_View_Intro.php
[edit]
[-] Cdnfsd_Plugin_Admin.php
[edit]
[-] Extension_FragmentCache_Api.php
[edit]
[-] Generic_Plugin_AdminNotices.js
[edit]
[-] Mobile_Redirect.php
[edit]
[-] Util_Http.php
[edit]
[-] Util_Ui.php
[edit]
[-] Minify_Plugin_Admin.php
[edit]
[-] Extensions_AdminActions.php
[edit]
[-] Cache_Base.php
[edit]
[-] UserExperience_LazyLoad_GoogleMaps_WPGoogleMaps.php
[edit]
[-] Generic_Faq.php
[edit]
[-] Extension_WordPressSeo_Plugin_Admin.php
[edit]
[-] Extension_FragmentCache_Environment.php
[edit]
[-] CdnEngine_Mirror_Cotendo.php
[edit]
[-] Extension_NewRelic_Page_View_Apm.php
[edit]
[-] Generic_Page_Install.php
[edit]
[-] Minify_Core.php
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Distribution.php
[edit]
[-] Generic_AdminActions_Config.php
[edit]
[-] Cdn_Environment.php
[edit]
[-] UserExperience_Plugin_Admin.php
[edit]
[-] Generic_WidgetStats.php
[edit]
[+]
lib
[-] Extension_CloudFlare_Plugin_Admin.php
[edit]
[-] Cdnfsd_BunnyCdn_Page_View.php
[edit]
[-] LICENSE
[edit]
[-] Licensing_Plugin_Admin.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Page_View.php
[edit]
[-] Cdn_GeneralPage_View.php
[edit]
[-] Extension_CloudFlare_Widget_View.css
[edit]
[-] Cdnfsd_GeneralPage_View.php
[edit]
[-] Extension_CloudFlare_Popup_View_Zones.php
[edit]
[-] Extension_AlwaysCached_Worker.php
[edit]
[-] Cdn_BunnyCdn_Page_View.php
[edit]
[-] UsageStatistics_Source_DbQueriesLog.php
[edit]
[-] UsageStatistics_Page_View_Ad.php
[edit]
[-] DbCache_WpdbLegacy.php
[edit]
[-] Util_PageSpeed.php
[edit]
[-] Minify_HelpPopup_View.php
[edit]
[-] Extension_ImageService_Page_View.php
[edit]
[-] Generic_WidgetPartners.php
[edit]
[-] Enterprise_SnsServer.php
[edit]
[-] Extension_CloudFlare_GeneralPage_View.php
[edit]
[-] Extension_ImageService_Plugin_Admin.js
[edit]
[-] w3-total-cache.php
[edit]
[-] Cdn_BunnyCdn_Page_View.js
[edit]
[-] ConfigState.php
[edit]
[-] Generic_AdminActions_Test.php
[edit]
[-] Cache_Nginx_Memcached.php
[edit]
[-] PgCache_Plugin.php
[edit]
[-] Util_Environment_Exceptions.php
[edit]
[-] Cdnfsd_CloudFront_Page_View.php
[edit]
[-] UsageStatistics_Sources_Redis.php
[edit]
[-] UsageStatistics_Page_View_Disabled.php
[edit]
[-] Extension_CloudFlare_AdminActions.php
[edit]
[-] Extension_AlwaysCached_AdminActions.php
[edit]
[-] Extension_CloudFlare_Page.php
[edit]
[-] Cache_File_Generic.php
[edit]
[-] Cache_Memcached_Stats.php
[edit]
[-] CdnEngine_Mirror.php
[edit]
[-] Extension_ImageService_Widget.php
[edit]
[-] Util_WpFile.php
[edit]
[-] Cache_Apc.php
[edit]
[-] ObjectCache_Plugin_Admin.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup.php
[edit]
[-] Extension_NewRelic_Widget_View_NotConfigured.php
[edit]
[-] PageSpeed_Widget_View.php
[edit]
[-] Licensing_Core.php
[edit]
[-] UserExperience_LazyLoad_Mutator_Unmutable.php
[edit]
[-] Minify_Page.php
[edit]
[-] Extensions_Page.php
[edit]
[-] Util_AttachToActions.php
[edit]
[-] Generic_AdminNotes.php
[edit]
[-] Cdn_BunnyCdn_Page_View_Purge_Urls.php
[edit]
[-] Cdnfsd_BunnyCdn_Page_View.js
[edit]
[-] Minify_AutoJs.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Popup.php
[edit]
[-] UserExperience_Preload_Requests_Page_View.php
[edit]
[-] Generic_WidgetSpreadTheWord.js
[edit]
[-] Util_Request.php
[edit]
[-] Generic_WidgetBoldGrid_Logo.svg
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Services.php
[edit]
[-] ObjectCache_ConfigLabels.php
[edit]
[-] UsageStatistics_StorageReader.php
[edit]
[-] BrowserCache_Page.php
[edit]
[-] Extension_CloudFlare_SettingsForUi.php
[edit]
[-] Cdn_BunnyCdn_Widget_View_Unauthorized.php
[edit]
[-] CdnEngine_Mirror_RackSpaceCdn.php
[edit]
[-] Util_WpFile_FilesystemModifyException.php
[edit]
[-] Extension_Swarmify_AdminActions.php
[edit]
[-] DbCache_WpdbInjection.php
[edit]
[-] Extension_AlwaysCached_Page_View.js
[edit]
[-] Support_Page_View_DoneContent.php
[edit]
[-] BrowserCache_Plugin.php
[edit]
[-] Util_Bus.php
[edit]
[-] UsageStatistics_Plugin.php
[edit]
[-] Cache_File_Cleaner_Generic_HardDelete.php
[edit]
[-] Generic_Page_PurgeLog.php
[edit]
[-] Cdnfsd_BunnyCdn_Page.php
[edit]
[-] Util_WpFile_FilesystemChmodException.php
[edit]
[-] Generic_AdminActions_Flush.php
[edit]
[-] Extension_Swarmify_Page.php
[edit]
[-] Extension_CloudFlare_Api.php
[edit]
[-] PageSpeed_Instructions.php
[edit]
[-] Extension_Genesis_Plugin.php
[edit]
[-] Util_Theme.php
[edit]
[-] CdnEngine_CloudFront.php
[edit]
[-] Cdnfsd_CacheFlush.php
[edit]
[-] Cdn_Environment_LiteSpeed.php
[edit]
[-] Cdn_BunnyCdn_Api.php
[edit]
[-] UserExperience_OEmbed_Extension.php
[edit]
[-] PgCache_QsExempts.php
[edit]
[-] BrowserCache_Environment_Nginx.php
[edit]
[-] Extension_ImageService_Plugin_Admin.php
[edit]
[-] Cdn_RackSpace_Api_CaCert-example.pem
[edit]
[-] Extension_NewRelic_Popup_View_ListApplications.php
[edit]
[-] UserExperience_GeneralPage_View.php
[edit]
[-] ConfigKeys.php
[edit]
[-] Extension_ImageService_Api.php
[edit]
[-] Extension_NewRelic_Plugin_Admin.php
[edit]
[-] w3-total-cache-api.php
[edit]
[-] Mobile_UserAgent.php
[edit]
[-] Util_WpFile_FilesystemRmException.php
[edit]
[-] CdnEngine_Base.php
[edit]
[-] UserExperience_GeneralPage.php
[edit]
[-] ConfigCompiler.php
[edit]
[-] PgCache_Flush.php
[edit]
[-] PageSpeed_Page.php
[edit]
[-] PageSpeed_Page_View.js
[edit]
[-] Generic_WidgetSettings_View.php
[edit]
[-] Root_Environment.php
[edit]
[-] SystemOpCache_GeneralPage_View.php
[edit]
[-] Extension_AlwaysCached_Page_Queue_View.php
[edit]
[-] UsageStatistics_Page_View_NoDebugMode.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Intro.php
[edit]
[-] ObjectCache_WpObjectCache_Regular.php
[edit]
[-] Extension_CloudFlare_View_Dashboard.js
[edit]
[-] Cdnfsd_BunnyCdn_Popup_View_Pull_Zones.php
[edit]
[-] Extension_Wpml_Plugin.php
[edit]
[-] Minify_AutoCss.php
[edit]
[-] Generic_WidgetSpreadTheWord_View.php
[edit]
[-] UserExperience_Plugin_Jquery.php
[edit]
[-] Extension_ImageService_Plugin.php
[edit]
[-] CdnEngine_Azure_MI.php
[edit]
[-] Util_ConfigLabel.php
[edit]
[-] Extension_ImageService_Cron.php
[edit]
[-] UsageStatistics_GeneralPage.php
[edit]
[-] index.html
[edit]
[-] ConfigCache.php
[edit]
[-] Extension_NewRelic_AdminNotes.php
[edit]
[-] Generic_WidgetBoldGrid_View.js
[edit]
[-] ObjectCache_WpObjectCache.php
[edit]
[-] Cdnfsd_TransparentCDN_Page_View.js
[edit]
[-] ConfigStateNote.php
[edit]
[-] Mobile_Base.php
[edit]
[-] Cdnfsd_CloudFront_Popup.php
[edit]
[-] Generic_WidgetAccount.php
[edit]
[-] Generic_WidgetSettings.php
[edit]
[-] Generic_Plugin_AdminNotices.php
[edit]
[-] Enterprise_CacheFlush_MakeSnsEvent.php
[edit]
[-] Extension_Swarmify_Plugin.php
[edit]
[-] Support_Page_View_PageContent.php
[edit]
[-] Generic_AdminActions_Default.php
[edit]
[-] Cdn_GoogleDrive_Page_View.php
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Distributions.php
[edit]
[-] PageSpeed_Page_View.php
[edit]
[-] Extension_AlwaysCached_Page_View.php
[edit]
[-] Generic_WidgetStats.js
[edit]
[-] Extension_NewRelic_Page.php
[edit]
[-] UserExperience_Remove_CssJs_Page_View.js
[edit]
[-] Cdnfsd_Plugin.php
[edit]
[-] Cache_Memcached.php
[edit]
[-] CdnEngine_Mirror_Edgecast.php
[edit]
[-] Support_AdminActions.php
[edit]
[-] UserExperience_Page.php
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Success.php
[edit]
[-] Cdn_RackSpace_Api_CloudFilesCdn.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php
[edit]
[-] Extension_NewRelic_GeneralPage_View.php
[edit]
[-] Varnish_Plugin.php
[edit]
[+]
pub
[-] UsageStatistics_Page_View.css
[edit]
[-] Cdn_BunnyCdn_Popup_View_Deauthorize.php
[edit]
[-] UsageStatistics_Sources_Apc.php
[edit]
[-] UsageStatistics_Page.php
[edit]
[-] Extension_NewRelic_Popup_View.js
[edit]
[-] Extension_AlwaysCached_Page_View_BoxFlushAll.php
[edit]
[-] DbCache_Plugin_Admin.php
[edit]
[-] UsageStatistics_Source_Wpdb.php
[edit]
[-] Extension_Amp_Plugin_Admin.php
[edit]
[-] Extension_CloudFlare_Widget_Logo.png
[edit]
[-] changelog.txt
[edit]
[-] UsageStatistics_Plugin_Admin.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Service_Actualize.php
[edit]
[-] Cdn_Core.php
[edit]
[-] Util_Content.php
[edit]
[-] CacheFlush_Locally.php
[edit]
[-] Config.php
[edit]
[-] CdnEngine_Mirror_Att.php
[edit]
[-] Generic_WidgetBoldGrid.php
[edit]
[-] Cli.php
[edit]
[-] Cdn_GoogleDrive_Page_View.js
[edit]
[-] Extension_NewRelic_Popup_View_Intro.php
[edit]
[-] DbCache_WpdbInjection_QueryCaching.php
[edit]
[-] Extension_AlwaysCached_Page_View_Exclusions.php
[edit]
[-] Minify_GeneralPage_View_ShowHelpForce.js
[edit]
[-] CacheGroups_Plugin_Admin_View.php
[edit]
[-] DbCache_Page.php
[edit]
[-] Extension_CloudFlare_Cdn_Page_View.php
[edit]
[-] Enterprise_SnsBase.php
[edit]
[-] Cdn_Environment_Nginx.php
[edit]
[-] Extension_AlwaysCached_Page_View_BoxCron.php
[edit]
[-] Extension_FragmentCache_GeneralPage_View.php
[edit]
[-] CacheGroups_Plugin_Admin_View.js
[edit]
[-] UsageStatistics_Source_ObjectCacheLog.php
[edit]
[-] Cdnfsd_CloudFront_Page.php
[edit]
[-] Extension_Amp_Page_View.php
[edit]
[-] Util_Widget.php
[edit]
[-] Cdn_BunnyCdn_Page.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Page.php
[edit]
[-] Cdn_RackSpaceCdn_Page_View.php
[edit]
[-] CdnEngine_Mirror_Akamai.php
[edit]
[-] Cdn_BunnyCdn_Widget.php
[edit]
[-] Extension_NewRelic_Widget_View_Apm.php
[edit]
[-] BrowserCache_Plugin_Admin.php
[edit]
[-] BrowserCache_ConfigLabels.php
[edit]
[-] CdnEngine_Azure.php
[edit]
[-] DbCache_ConfigLabels.php
[edit]
[-] PageSpeed_Widget_View.js
[edit]
[-] Minify_MinifiedFileRequestHandler.php
[edit]
[-] Extension_FragmentCache_Plugin_Admin.php
[edit]
[-] Extension_AlwaysCached_Plugin_Admin.php
[edit]
[-] BrowserCache_Environment_Apache.php
[edit]
[-] Extension_AlwaysCached_Environment.php
[edit]
[-] Generic_Plugin.php
[edit]
[-] Generic_Page_PurgeLog_View.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup_View_Deauthorized.php
[edit]
[-] Extensions_Util.php
[edit]
[-] Extensions_Plugin_Admin.php
[edit]
[-] Root_Loader.php
[edit]
[-] Extension_NewRelic_Widget.php
[edit]
[-] Minify_Environment_LiteSpeed.php
[edit]
[+]
ini
[-] Cdn_ConfigLabels.php
[edit]
[-] Cdn_Plugin_Admin.php
[edit]
[-] DbCache_Core.php
[edit]
[-] Util_WpFile_FilesystemWriteException.php
[edit]
[-] Base_Page_Settings.php
[edit]
[-] UsageStatistics_Page_View_Free.php
[edit]
[-] Minify_ContentMinifier.php
[edit]
[-] Cdn_BunnyCdn_Widget_View.css
[edit]
[-] Cache_Apcu.php
[edit]
[-] Util_Debug.php
[edit]
[-] ConfigDbStorage.php
[edit]
[-] UsageStatistics_GeneralPage_View.php
[edit]
[-] Cache_Wincache.php
[edit]
[-] PgCache_Plugin_Admin.php
[edit]
[-] UserExperience_Remove_CssJs_Extension.php
[edit]
[-] Cache_Redis.php
[edit]
[-] Util_DebugPurgeLog_Reader.php
[edit]
[-] Generic_Plugin_Survey.php
[edit]
[-] Cache.php
[edit]
[-] Varnish_Flush.php
[edit]
[-] UsageStatistics_Core.php
[edit]
[-] Extension_CloudFlare_Widget_View.php
[edit]
[-] Extension_NewRelic_Core.php
[edit]
[-] Cdn_BunnyCdn_Popup_View_Configured.php
[edit]
[-] Cdnfsd_TransparentCDN_Engine.php
[edit]
[-] Cache_Eaccelerator.php
[edit]
[-] PageSpeed_Widget_View_FromApi.php
[edit]
[-] ObjectCache_Page_View_PurgeLog.php
[edit]
[-] Cdn_BunnyCdn_Popup_View_Pull_Zones.php
[edit]
[-] Minify_Environment.php
[edit]
[-] Cdn_BunnyCdn_Popup_View_Intro.php
[edit]
[-] Util_WpFile_FilesystemRmdirException.php
[edit]
[-] Mobile_Referrer.php
[edit]
[-] CdnEngine_S3_Compatible.php
[edit]
[-] Cdn_RackSpace_Api_Tokens.php
[edit]
[-] Enterprise_Dbcache_WpdbInjection_Cluster.php
[edit]
[-] Extension_NewRelic_Widget_View_Browser.php
[edit]
[-] UserExperience_DeferScripts_Mutator.php
[edit]
[-] UsageStatistics_Source_PageCacheLog.php
[edit]
[-] Generic_Plugin_AdminRowActions.php
[edit]
[-] FeatureShowcase_Plugin_Admin_View.php
[edit]
[-] Root_AdminMenu.php
[edit]
[-] ObjectCache_Environment.php
[edit]
[-] UserExperience_Preload_Requests_Extension.php
[edit]
[-] Extension_Swarmify_Plugin_Admin.php
[edit]