├── index.html ├── inc ├── index.html ├── email │ ├── index.html │ ├── minify_error_notification.html │ └── minify_error_notification.php ├── lightbox │ ├── index.html │ ├── purchase.php │ └── cdn_s3_bucket_location.php ├── mime │ ├── index.html │ ├── html.php │ └── cssjs.php ├── options │ ├── index.html │ ├── cdn │ │ ├── index.html │ │ └── common │ │ │ ├── index.html │ │ │ └── cnames-readonly.php │ ├── common │ │ ├── index.html │ │ ├── footer.php │ │ └── help.php │ ├── minify │ │ ├── index.html │ │ ├── html.php │ │ ├── js.php │ │ ├── htmltidy.php │ │ ├── ccjs.php │ │ ├── yuijs.php │ │ ├── htmltidy2.php │ │ └── css.php │ ├── extensions │ │ └── settings.php │ ├── enterprise │ │ ├── dbcluster_general_section.php │ │ └── dbcluster-config.php │ ├── extensions.php │ ├── edd │ │ └── buy.php │ ├── support.php │ └── faq.php ├── popup │ ├── index.html │ └── common │ │ ├── index.html │ │ └── footer.php ├── widget │ ├── index.html │ ├── latest.php │ ├── latest_news.php │ ├── latest_ajax.php │ ├── latest_control.php │ ├── latest_news_ajax.php │ ├── latest_news_control.php │ ├── pagepurge.php │ └── maxcdn_signup.php ├── define.php └── error.php ├── ini ├── index.html ├── opcache.ini ├── php.append.ini ├── memcache.ini ├── s3-sample-policy.txt ├── nginx-standalone-sample-config.conf ├── apc.ini ├── xcache.ini ├── eaccelerator.ini ├── nginx-network-sample-config.conf └── config-db-sample.php ├── lib ├── index.html ├── CSSTidy │ └── index.html ├── Minify │ ├── index.html │ ├── HTTP │ │ └── index.html │ └── Minify │ │ ├── index.html │ │ ├── CSS │ │ └── index.html │ │ ├── Cache │ │ └── index.html │ │ ├── Inline │ │ ├── index.html │ │ ├── CSS.php │ │ └── JavaScript.php │ │ ├── Controller │ │ └── index.html │ │ ├── CombineOnly.php │ │ ├── Loader.php │ │ ├── DebugDetector.php │ │ ├── Packer.php │ │ ├── Logger.php │ │ ├── HTMLTidy.php │ │ └── CSSTidy.php ├── Nusoap │ └── index.html ├── Azure │ ├── GuzzleHttp │ │ ├── Exception │ │ │ ├── GuzzleException.php │ │ │ ├── TooManyRedirectsException.php │ │ │ ├── TransferException.php │ │ │ ├── BadResponseException.php │ │ │ ├── ClientException.php │ │ │ ├── ServerException.php │ │ │ ├── SeekException.php │ │ │ └── ConnectException.php │ │ ├── Psr7 │ │ │ ├── functions_include.php │ │ │ ├── NoSeekStream.php │ │ │ ├── LazyOpenStream.php │ │ │ └── DroppingStream.php │ │ ├── functions_include.php │ │ ├── Promise │ │ │ ├── functions_include.php │ │ │ ├── CancellationException.php │ │ │ ├── PromisorInterface.php │ │ │ ├── AggregateException.php │ │ │ ├── TaskQueueInterface.php │ │ │ └── RejectionException.php │ │ └── Handler │ │ │ ├── CurlFactoryInterface.php │ │ │ └── CurlHandler.php │ └── MicrosoftAzureStorage │ │ └── Blob │ │ └── Models │ │ ├── BlobType.php │ │ └── PageWriteOption.php ├── NetDNA │ └── W3tcWpHttpException.php ├── Google │ ├── Exception.php │ ├── IO │ │ └── Exception.php │ ├── Auth │ │ ├── Exception.php │ │ └── Abstract.php │ ├── Cache │ │ ├── Exception.php │ │ └── Null.php │ ├── Signer │ │ └── Abstract.php │ ├── Verifier │ │ └── Abstract.php │ ├── Service.php │ └── Service │ │ └── Exception.php └── SNS │ ├── utilities │ └── response.class.php │ └── services │ └── MessageValidator │ └── sns-exceptions.php ├── pub ├── css │ ├── index.html │ └── error.css ├── img │ ├── index.html │ ├── close.png │ ├── open.png │ ├── cspref.png │ ├── ps_bar.gif │ ├── ps_grad.gif │ ├── ps_scores.png │ ├── white-grad.png │ ├── button-grad.png │ ├── google-logo.png │ ├── overlay │ │ ├── ceo.png │ │ ├── lock.png │ │ ├── gray-check.png │ │ ├── list-check.png │ │ ├── save-close.png │ │ ├── w3-meteor.png │ │ ├── overlay-logo.png │ │ ├── select-arrow.png │ │ ├── lite-gray-check.png │ │ ├── overlay-close.png │ │ ├── overlay-down-arrow.png │ │ ├── twitter-bird-dark-bgs.png │ │ └── wordpress-logo-simplified-rgb.png │ ├── w3tc-sprite.png │ ├── wpspin_light.gif │ ├── w3tc_w3tc-logo.png │ ├── button-grad-active.png │ ├── cdn-highwinds-logo.png │ ├── sidebar-background.png │ ├── w3tc-sprite-retina.png │ ├── w3tc_google-logo.png │ ├── w3tc_maxcdn-logo.png │ ├── w3tc_netdna-logo.png │ ├── w3tc_newrelic-logo.png │ ├── w3tc_swarmify-logo.png │ ├── w3tc_w3edge-logo.png │ ├── white-grad-active.png │ ├── w3tc-sprite-admin-bar.png │ ├── w3tc_google-logo-retina.png │ ├── w3tc_maxcdn-logo-retina.png │ ├── w3tc_netdna-logo-retina.png │ ├── w3tc_w3edge-logo-retina.png │ ├── w3tc_w3tc-logo-retina.png │ ├── W3TC_dashboard_logo_title.png │ ├── w3tc_newrelic-logo-retina.png │ ├── w3tc_swarmify-logo-retina.png │ └── W3TC_dashboard_logo_title-retina.png ├── index.html └── js │ └── index.html ├── wp-content ├── index.html ├── advanced-cache.php └── db.php ├── Minify_GeneralPage_View_ShowHelpForce.js ├── languages ├── w3-total-cache-nl_NL.mo └── w3-total-cache-sr_RS.mo ├── Extension_CloudFlare_Widget_Logo.png ├── DbCache_WpdbBase.php ├── composer.json ├── Cdn_Highwinds_Widget_View_NotConfigured.php ├── Extension_NewRelic_Widget_View_NotConfigured.php ├── CdnEngine_S3_Cf_S3.php ├── Support_Page_View_DoneContent.php ├── UsageStatistics_Widget_View_Disabled.php ├── BrowserCache_Plugin_Admin.php ├── Extension_Genesis_Page.php ├── Extension_FeedBurner_Page.php ├── CdnEngine_Mirror_Att.php ├── Generic_GeneralPage_View_ShowEdge.js ├── Cdn_Highwinds_Widget_View.css ├── Cdn_Page_View_Fsd_HeaderActions.php ├── Extension_CloudFlare_View_Comments.css ├── PageSpeed_Widget_View_NotConfigured.php ├── Generic_Page_About.php ├── Extension_FragmentCache_Page.php ├── Extension_NewRelic_Widget_View_Browser.php ├── Util_Environment_Exception.php ├── Util_WpFile_FilesystemMkdirException.php ├── Util_WpFile_FilesystemRmdirException.php ├── Util_WpFile_FilesystemRmException.php ├── Generic_GeneralPage_View_ShowSupportUs.js ├── CdnEngine_S3_Cf_Custom.php ├── ObjectCache_Page.php ├── Cdn_GoogleDrive_Page_View.js ├── Cdn_Highwinds_Page.php ├── Mobile_UserAgent.php ├── Cdnfsd_Limelight_Page.php ├── Cdnfsd_MaxCdn_Page.php ├── Cdnfsd_Page_View_Header.php ├── Cdnfsd_CloudFront_Page.php ├── Cdnfsd_Util.php ├── SystemOpCache_AdminActions.php ├── Util_WpFile_FilesystemOperationException.php ├── Extension_Swarmify_AdminActions.php ├── Cdn_Page_View_Header.php ├── Mobile_Page_ReferrerGroups.php ├── Util_WpFile_FilesystemChmodException.php ├── Extension_Swarmify_Core.php ├── Extension_Swarmify_Page.php ├── Util_WpFile_FilesystemWriteException.php ├── Generic_Page_Faq.php ├── w3-total-cache-old-php.php ├── Minify_GeneralPage_View_ShowHelp.js ├── Generic_Page_Install.php ├── Util_Bus.php ├── Cdn_MaxCdn_Popup_View_Success.php ├── Util_WpFile_FilesystemCopyException.php ├── UsageStatistics_View_General.php ├── Cdnfsd_Limelight_Popup_View_Success.php ├── Extension_NewRelic_AdminActions.php ├── Extensions_AdminActions.php ├── Extension_FragmentCache_GeneralPage_View.php ├── Extension_Swarmify_Widget_View.css ├── Extension_CloudFlare_View_Dashboard.js ├── Cdn_RackSpaceCdn_AdminActions.php ├── Extension_CloudFlare_Widget_View.css ├── Extension_Wpml_Plugin.php ├── Util_WpFile_FilesystemModifyException.php ├── UsageStatistics_Widget_View.css ├── Cdn_RackSpaceCloudFiles_Page_View.js ├── Extension_CloudFlare_Cdn_Page_View.php ├── ObjectCache_ConfigLabels.php ├── Extension_FragmentCache_GeneralPage.php ├── PgCache_Page.php ├── DbCache_Page.php ├── Cdn_MaxCdn_Page.php ├── DbCache_ConfigLabels.php ├── Extension_Amp_Plugin_Admin.php ├── Cdn_Highwinds_Popup_View_Intro.php ├── UsageStatistics_Plugin.php ├── Extension_FragmentCache_Environment.php ├── Util_ConfigLabel.php ├── Cdnfsd_CloudFront_Popup_View_Success.php ├── Cdn_RackSpaceCloudFiles_Page.php ├── Cdnfsd_MaxCdn_Popup_View_Success.php ├── Extension_NewRelic_Core.php ├── Extension_WordPressSeo_Plugin.php ├── Generic_WidgetServices_View.php ├── Cdn_GoogleDrive_Popup_AuthReturn.php ├── Cdn_RackSpaceCdn_Page.php ├── Util_Environment_Exceptions.php ├── extension-example ├── Extension_Example.php └── Extension_Example_Page_View.php ├── Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php ├── DbCache_Core.php ├── Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php ├── Extension_NewRelic_Page.php ├── Cdnfsd_Limelight_Page_View.php ├── Extension_Swarmify_Widget_View_NotConfigured.php ├── Generic_WidgetSpreadTheWord.js ├── Extension_NewRelic_GeneralPage.php ├── Cdnfsd_Limelight_Page_View.js ├── Extension_NewRelic_Popup_View_Intro.php ├── Mobile_Page_UserAgentGroups.php ├── Extension_FeedBurner_Page_View.php ├── Cdn_GoogleDrive_Page.php ├── ConfigStateNote.php ├── Generic_AdminLinks.php ├── Cdn_GoogleDrive_Page_View.php ├── UsageStatistics_Plugin_Admin.php ├── Cdnfsd_MaxCdn_Engine.php ├── Support_Page_View_PageContent.php ├── Extension_CloudFlare_Page_View.js ├── Cdn_RackSpaceCdn_Popup_View_Intro.php ├── Extension_CloudFlare_Popup_View_Intro.php ├── Cdn_RackSpaceCloudFiles_Popup_View_Intro.php ├── Cdn_MaxCdn_Popup_View_Intro.php ├── Cdnfsd_MaxCdn_Popup_View_Intro.php ├── Extension_CloudFlare_GeneralPage_View.php ├── Extension_CloudFlare_Widget_View.php ├── PageSpeed_Widget_View.css ├── SystemOpCache_Core.php ├── Mobile_Referrer.php ├── Mobile_Redirect.php ├── Generic_Page_Dashboard.php ├── Cdnfsd_CloudFront_Popup_View_Intro.php ├── Cdnfsd_Plugin.php ├── Cdnfsd_CloudFront_Engine.php ├── Cdnfsd_Core.php ├── Generic_WidgetSpreadTheWord_View.php ├── PageSpeed_Widget_View.php └── PageSpeed_Widget_View.js /index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ini/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pub/css/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pub/img/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pub/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pub/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/email/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/lightbox/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/mime/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/options/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/popup/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/widget/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/CSSTidy/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Minify/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Nusoap/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wp-content/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/options/cdn/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/popup/common/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Minify/HTTP/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Minify/Minify/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/options/cdn/common/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/options/common/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/options/minify/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Minify/Minify/CSS/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Minify/Minify/Cache/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Minify/Minify/Inline/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/options/common/footer.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/Minify/Minify/Controller/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/popup/common/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Minify_GeneralPage_View_ShowHelpForce.js: -------------------------------------------------------------------------------- 1 | jQuery(function() { 2 | w3tc_show_minify_help(); 3 | }); 4 | -------------------------------------------------------------------------------- /pub/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/close.png -------------------------------------------------------------------------------- /pub/img/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/open.png -------------------------------------------------------------------------------- /pub/img/cspref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/cspref.png -------------------------------------------------------------------------------- /pub/img/ps_bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/ps_bar.gif -------------------------------------------------------------------------------- /pub/img/ps_grad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/ps_grad.gif -------------------------------------------------------------------------------- /pub/img/ps_scores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/ps_scores.png -------------------------------------------------------------------------------- /pub/img/white-grad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/white-grad.png -------------------------------------------------------------------------------- /pub/img/button-grad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/button-grad.png -------------------------------------------------------------------------------- /pub/img/google-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/google-logo.png -------------------------------------------------------------------------------- /pub/img/overlay/ceo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/overlay/ceo.png -------------------------------------------------------------------------------- /pub/img/overlay/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/overlay/lock.png -------------------------------------------------------------------------------- /pub/img/w3tc-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/w3tc-sprite.png -------------------------------------------------------------------------------- /pub/img/wpspin_light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/wpspin_light.gif -------------------------------------------------------------------------------- /pub/img/w3tc_w3tc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/w3tc_w3tc-logo.png -------------------------------------------------------------------------------- /pub/img/button-grad-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/button-grad-active.png -------------------------------------------------------------------------------- /pub/img/cdn-highwinds-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/cdn-highwinds-logo.png -------------------------------------------------------------------------------- /pub/img/overlay/gray-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/overlay/gray-check.png -------------------------------------------------------------------------------- /pub/img/overlay/list-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/overlay/list-check.png -------------------------------------------------------------------------------- /pub/img/overlay/save-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/overlay/save-close.png -------------------------------------------------------------------------------- /pub/img/overlay/w3-meteor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/overlay/w3-meteor.png -------------------------------------------------------------------------------- /pub/img/sidebar-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/sidebar-background.png -------------------------------------------------------------------------------- /pub/img/w3tc-sprite-retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/w3tc-sprite-retina.png -------------------------------------------------------------------------------- /pub/img/w3tc_google-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/w3tc_google-logo.png -------------------------------------------------------------------------------- /pub/img/w3tc_maxcdn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/w3tc_maxcdn-logo.png -------------------------------------------------------------------------------- /pub/img/w3tc_netdna-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/w3tc_netdna-logo.png -------------------------------------------------------------------------------- /pub/img/w3tc_newrelic-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/w3tc_newrelic-logo.png -------------------------------------------------------------------------------- /pub/img/w3tc_swarmify-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/w3tc_swarmify-logo.png -------------------------------------------------------------------------------- /pub/img/w3tc_w3edge-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/w3tc_w3edge-logo.png -------------------------------------------------------------------------------- /pub/img/white-grad-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/white-grad-active.png -------------------------------------------------------------------------------- /pub/img/overlay/overlay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/overlay/overlay-logo.png -------------------------------------------------------------------------------- /pub/img/overlay/select-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/pub/img/overlay/select-arrow.png -------------------------------------------------------------------------------- /languages/w3-total-cache-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/languages/w3-total-cache-nl_NL.mo -------------------------------------------------------------------------------- /languages/w3-total-cache-sr_RS.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/w3-total-cache-fixed/HEAD/languages/w3-total-cache-sr_RS.mo -------------------------------------------------------------------------------- /lib/Azure/GuzzleHttp/Exception/GuzzleException.php: -------------------------------------------------------------------------------- 1 | 8 |
9 | Not configured 10 |
11 | -------------------------------------------------------------------------------- /Extension_NewRelic_Widget_View_NotConfigured.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /lib/Azure/GuzzleHttp/Psr7/functions_include.php: -------------------------------------------------------------------------------- 1 | 2 | Thank you for filling out the form 3 | 4 | 5 | -------------------------------------------------------------------------------- /ini/opcache.ini: -------------------------------------------------------------------------------- 1 | ; /etc/php.d/apc.ini 2 | 3 | zend_extension=opcache.so 4 | 5 | opcache.enable = 1 6 | opcache.fast_shutdown = 1 7 | opcache.enable_file_override = 1 8 | opcache.validate_timestamps = 0 9 | opcache.max_file_size = 10000000 10 | -------------------------------------------------------------------------------- /inc/lightbox/purchase.php: -------------------------------------------------------------------------------- 1 |
2 | 4 |
5 | -------------------------------------------------------------------------------- /ini/php.append.ini: -------------------------------------------------------------------------------- 1 | ; Use memcache as a session handler 2 | session.save_handler = memcache 3 | ; Use a comma separated list of server urls to use for storage: 4 | session.save_path = "tcp://localhost:11211?persistent=1&weight=1&timeout=1&retry_interval=15" -------------------------------------------------------------------------------- /UsageStatistics_Widget_View_Disabled.php: -------------------------------------------------------------------------------- 1 | 7 |

8 | Not active. Activate here 9 |

10 | -------------------------------------------------------------------------------- /inc/options/minify/html.php: -------------------------------------------------------------------------------- 1 | 8 | checkbox( 'minify.html.strip.crlf', false, 'html_' ) ?>
9 | -------------------------------------------------------------------------------- /lib/Azure/GuzzleHttp/Promise/CancellationException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Unfortunately, an error occurred while creating the minify cache. Please check your settings to ensure your site is working as intended.

5 |

Thanks for using W3 Total Cache.

6 | 7 | 8 | -------------------------------------------------------------------------------- /inc/email/minify_error_notification.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Unfortunately, an error occurred while creating the minify cache. Please check your settings to ensure your site is working as intended.

5 |

Thanks for using W3 Total Cache.

6 | 7 | 8 | -------------------------------------------------------------------------------- /ini/memcache.ini: -------------------------------------------------------------------------------- 1 | ; /etc/php.d/memcache.ini 2 | 3 | extension = memcache.so 4 | 5 | memcache.allow_failover = 1 6 | memcache.max_failover_attempts = 20 7 | memcache.chunk_size = 32768 8 | memcache.default_port = 11211 9 | memcache.hash_strategy = standard 10 | memcache.hash_function = crc32 -------------------------------------------------------------------------------- /CdnEngine_Mirror_Att.php: -------------------------------------------------------------------------------- 1 | 'text/html', 8 | 'rtf|rtx' => 'text/richtext', 9 | 'svg' => 'image/svg+xml', 10 | 'txt' => 'text/plain', 11 | 'xsd' => 'text/xsd', 12 | 'xsl' => 'text/xsl', 13 | 'xml' => 'text/xml' 14 | ); 15 | -------------------------------------------------------------------------------- /Generic_GeneralPage_View_ShowEdge.js: -------------------------------------------------------------------------------- 1 | 2 | jQuery(function() { 3 | W3tc_Lightbox.open({ 4 | id:'w3tc-overlay', 5 | close: '', 6 | width: 800, 7 | height: 240, 8 | url: ajaxurl + '?action=w3tc_ajax&_wpnonce=' + w3tc_nonce + 9 | '&w3tc_action=generic_edge' 10 | }); 11 | }); 12 | -------------------------------------------------------------------------------- /Cdn_Highwinds_Widget_View.css: -------------------------------------------------------------------------------- 1 | .w3tc-widget-highwinds-logo { 2 | float: left; 3 | width: 65px; 4 | height: 35px; 5 | background: url("pub/img/cdn-highwinds-logo.png") 0 0 no-repeat; 6 | } 7 | 8 | .w3tchw_tools li { 9 | display: inline-block; 10 | margin-right: 10px; 11 | } 12 | 13 | #w3tchw_report li { 14 | margin-bottom: 0; 15 | } -------------------------------------------------------------------------------- /Cdn_Page_View_Fsd_HeaderActions.php: -------------------------------------------------------------------------------- 1 | 8 |

9 | CDN completely', 'w3-total-cache' ), 12 | Util_Ui::url( array( 'w3tc_cdn_flush' => 'y' ) ) ); 13 | ?> 14 |

15 | -------------------------------------------------------------------------------- /inc/widget/latest.php: -------------------------------------------------------------------------------- 1 | 8 |

9 | 10 |

11 |

12 | 13 |

14 | -------------------------------------------------------------------------------- /Extension_CloudFlare_View_Comments.css: -------------------------------------------------------------------------------- 1 | .cloudflare_ip_check { 2 | padding-left: 10px; 3 | } 4 | 5 | img.cloudflare_ip_check_img { 6 | float: none; 7 | vertical-align:middle; 8 | padding-bottom: 2px; 9 | } 10 | 11 | .cloudflare_ip_check_error { 12 | color: #990000; 13 | } 14 | 15 | .cloudflare_ip_check_success { 16 | color: #009900; 17 | } -------------------------------------------------------------------------------- /inc/mime/cssjs.php: -------------------------------------------------------------------------------- 1 | 'text/css', 8 | 'htc' => 'text/x-component', 9 | 'less' => 'text/css', 10 | //JS - varieties 11 | 'js' => 'application/x-javascript', 12 | 'js2' => 'application/javascript', 13 | 'js3' => 'text/javascript', 14 | 'js4' => 'text/x-js', 15 | ); 16 | -------------------------------------------------------------------------------- /inc/widget/latest_news.php: -------------------------------------------------------------------------------- 1 | 8 |

9 | 10 |

11 |

12 | 13 |

14 | -------------------------------------------------------------------------------- /lib/Azure/GuzzleHttp/Promise/PromisorInterface.php: -------------------------------------------------------------------------------- 1 | 8 |

9 | Google Page Speed score is not available. 10 |

11 |

12 | Please follow the directions 13 | found in the Miscellanous settings box on the 14 | General Settings tab. 15 |

16 | -------------------------------------------------------------------------------- /Generic_Page_About.php: -------------------------------------------------------------------------------- 1 | 8 | checkbox( 'minify.js.strip.comments', false, 'js_' ) ?>
9 | checkbox( 'minify.js.strip.crlf', false, 'js_' ) ?>
10 | -------------------------------------------------------------------------------- /inc/widget/latest_ajax.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 | 11 |

12 | 13 | 14 |

15 | View Feed 16 |

17 | -------------------------------------------------------------------------------- /inc/widget/latest_control.php: -------------------------------------------------------------------------------- 1 | 8 |

9 | 13 |

14 | -------------------------------------------------------------------------------- /Extension_FragmentCache_Page.php: -------------------------------------------------------------------------------- 1 | get_registered_fragment_groups(); 12 | include W3TC_DIR . '/Extension_FragmentCache_Page_View.php'; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /inc/widget/latest_news_ajax.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 | 11 |

12 | 13 | 14 |

15 | View Feed 16 |

17 | -------------------------------------------------------------------------------- /inc/widget/latest_news_control.php: -------------------------------------------------------------------------------- 1 | 8 |

9 | 13 |

14 | -------------------------------------------------------------------------------- /Extension_NewRelic_Widget_View_Browser.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 | 11 | 12 | 13 |

14 | -------------------------------------------------------------------------------- /Util_Environment_Exception.php: -------------------------------------------------------------------------------- 1 | technical_message = $technical_message; 10 | } 11 | 12 | public function technical_message() { 13 | return $this->technical_message; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Util_WpFile_FilesystemMkdirException.php: -------------------------------------------------------------------------------- 1 | folder = $folder; 11 | } 12 | 13 | public function folder() { 14 | return $this->folder; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Util_WpFile_FilesystemRmdirException.php: -------------------------------------------------------------------------------- 1 | folder = $folder; 11 | } 12 | 13 | public function folder() { 14 | return $this->folder; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /inc/options/minify/htmltidy.php: -------------------------------------------------------------------------------- 1 | 8 | checkbox( 'minify.htmltidy.options.clean', false, 'html_' ) ?>
9 | checkbox( 'minify.htmltidy.options.hide-comments', false, 'html_' ) ?>
10 | -------------------------------------------------------------------------------- /Util_WpFile_FilesystemRmException.php: -------------------------------------------------------------------------------- 1 | filename = $filename; 11 | } 12 | 13 | public function filename() { 14 | return $this->filename; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /lib/Minify/Minify/CombineOnly.php: -------------------------------------------------------------------------------- 1 | _config->get_boolean( 'objectcache.enabled' ); 21 | 22 | include W3TC_INC_DIR . '/options/objectcache.php'; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /Cdn_GoogleDrive_Page_View.js: -------------------------------------------------------------------------------- 1 | jQuery(function($) { 2 | $('.w3tc_cdn_google_drive_authorize').click(function() { 3 | window.location = w3tc_cdn_google_drive_url; 4 | }); 5 | 6 | if (window.w3tc_cdn_google_drive_popup_url) { 7 | W3tc_Lightbox.open({ 8 | id:'w3tc-overlay', 9 | close: '', 10 | width: 800, 11 | height: 500, 12 | url: w3tc_cdn_google_drive_popup_url, 13 | onClose: function() { 14 | } 15 | }); 16 | } 17 | }); 18 | -------------------------------------------------------------------------------- /Cdn_Highwinds_Page.php: -------------------------------------------------------------------------------- 1 | 8 |
9 | 10 |

Enter each URL on a new line

11 |

12 | 13 |

14 |
15 | -------------------------------------------------------------------------------- /Mobile_UserAgent.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 | '.Cdnfsd_Util::engine_name( $config->get_string( 'cdnfsd.engine' ) ).'', 13 | '' . __( 'enabled', 'w3-total-cache' ) : 'disabled">' . __( 'disabled', 'w3-total-cache' ) ) . '' 14 | ); ?> 15 |

16 | -------------------------------------------------------------------------------- /Cdnfsd_CloudFront_Page.php: -------------------------------------------------------------------------------- 1 | flush(); 10 | 11 | if ( $success ) { 12 | Util_Admin::redirect_with_custom_messages2( array( 13 | 'notes' => array( 'OPCache was flushed successfully' ) 14 | ), true ); 15 | } else { 16 | Util_Admin::redirect_with_custom_messages2( array( 17 | 'errors' => array( 'Failed to flush OPCache' ) 18 | ), true ); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Util_WpFile_FilesystemOperationException.php: -------------------------------------------------------------------------------- 1 | credentials_form = $credentials_form; 13 | } 14 | 15 | public function credentials_form() { 16 | return $this->credentials_form; 17 | 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /lib/NetDNA/W3tcWpHttpException.php: -------------------------------------------------------------------------------- 1 | =')) 9 | parent::__construct($message, (int)$code, $previous); 10 | else 11 | parent::__construct($message, (int)$code); 12 | $this->curl_headers = $headers; 13 | } 14 | 15 | public function getHeaders() { 16 | return $this->curl_headers; 17 | } 18 | 19 | } 20 | 21 | -------------------------------------------------------------------------------- /Extension_Swarmify_AdminActions.php: -------------------------------------------------------------------------------- 1 | set( array( 'swarmify', 'api_key' ), $_REQUEST['swarmcdnkey'] ); 11 | $config->save(); 12 | } 13 | 14 | Util_Environment::redirect( Util_Ui::admin_url( 15 | 'admin.php?page=w3tc_extensions&extension=swarmify&action=view' ) ); 16 | exit(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /inc/options/minify/ccjs.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 15 |
16 | -------------------------------------------------------------------------------- /Cdn_Page_View_Header.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 |

11 | '.Cache::engine_name( $config->get_string( 'cdn.engine' ) ).'', 14 | '' . __( 'enabled', 'w3-total-cache' ) : 'disabled">' . __( 'disabled', 'w3-total-cache' ) ) . '' 15 | ); ?> 16 |

17 | -------------------------------------------------------------------------------- /Mobile_Page_ReferrerGroups.php: -------------------------------------------------------------------------------- 1 | _config->get_array( 'referrer.rgroups' ); 21 | 22 | $w3_referrer = Dispatcher::component( 'Mobile_Referrer' ); 23 | 24 | $themes = $w3_referrer->get_themes(); 25 | 26 | include W3TC_INC_DIR . '/options/referrer.php'; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /inc/options/minify/yuijs.php: -------------------------------------------------------------------------------- 1 | 8 | checkbox( 'minify.yuijs.options.nomunge', false, 'js_' ) ?>
9 | checkbox( 'minify.yuijs.options.preserve-semi', false, 'js_' ) ?>
10 | checkbox( 'minify.yuijs.options.disable-optimizations', false, 'js_' ) ?>
11 | -------------------------------------------------------------------------------- /Util_WpFile_FilesystemChmodException.php: -------------------------------------------------------------------------------- 1 | filename = $filename; 12 | $this->permission = $permission; 13 | } 14 | 15 | public function filename() { 16 | return $this->filename; 17 | } 18 | 19 | public function permission() { 20 | return $this->permission; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /ini/s3-sample-policy.txt: -------------------------------------------------------------------------------- 1 | { 2 | "Statement": [ 3 | { 4 | "Sid": "Stmt1339423675421", 5 | "Action": [ 6 | "s3:DeleteObject", 7 | "s3:Get*", 8 | "s3:Put*", 9 | "s3:Set*" 10 | ], 11 | "Effect": "Allow", 12 | "Resource": [ 13 | "arn:aws:s3:::bucketnamehere/*" 14 | ] 15 | }, 16 | { 17 | "Sid": "Stmt1339423675422", 18 | "Action":s3:List*?, 19 | "Effect":"Allow", 20 | "Resource":"*" 21 | } 22 | ] 23 | } -------------------------------------------------------------------------------- /lib/Azure/GuzzleHttp/Promise/TaskQueueInterface.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |