diff --git a/.phpcs.xml.dist b/.phpcs.xml.dist index cf4d6e8c..70f89685 100644 --- a/.phpcs.xml.dist +++ b/.phpcs.xml.dist @@ -56,4 +56,31 @@ + + + + /tests/php/* + + + + /inc/plugins-cookies\.php + /inc/cache-files\.php + /inc/htaccess\.php + /inc/settings-forms\.php + /inc/preload\.php + /inc/lifecycle\.php + /inc/admin-notices\.php + /inc/admin-ui\.php diff --git a/CONTEXT.md b/CONTEXT.md new file mode 100644 index 00000000..dd652cac --- /dev/null +++ b/CONTEXT.md @@ -0,0 +1,62 @@ +# WP Super Cache — Context + +WP Super Cache is a procedural WordPress caching plugin. Most code is global +functions (no namespaces); `src/` is reserved for classmap-autoloaded classes, +and `inc/` holds the global-function include files. + +## Entry points + +- **`wp-cache.php`** — the plugin main file, reduced to a thin loader: plugin + header, constants, the `require_once` include list, `wpsc_init()` and its init + wiring, the frontend `wp_die`/`set_home` hooks, and the + activation/deactivation/uninstall registrations (which must stay here so + `__FILE__` resolves to the main plugin file). +- **`wp-cache-phase2.php`** — the drop-in caching engine on the request hot path + (served via `advanced-cache.php`). Not part of the admin/lifecycle split. + +## `inc/` file map (admin & lifecycle clusters) + +Each file owns one responsibility plus its own `add_action`/`add_filter` +registrations. Admin-only function clusters live in dedicated `inc/` files. + +| File | Responsibility | +|------|----------------| +| `inc/boost.php` | Jetpack Boost migration notice/AJAX and the install banner | +| `inc/plugins-cookies.php` | WPSC plugin-list & extra-cookie management; feed GC | +| `inc/cache-files.php` | Admin cache-file listing, stats, sizing, cleaning; per-post invalidation | +| `inc/htaccess.php` | `.htaccess` / mod_rewrite rule generation and management | +| `inc/settings-forms.php` | Settings-page form handlers and validators | +| `inc/preload.php` | The preload subsystem (status, cron worker, scheduling, UI, AJAX) | +| `inc/lifecycle.php` | Activation/deactivation/uninstall, enable/disable, advanced-cache + config/cache-dir management, GC defaults | +| `inc/admin-notices.php` | Admin notices, plugin-row UI, the front-page site check | +| `inc/admin-ui.php` | The settings screen: menus, enqueues, the renderer (incl. inline JS), tabs, render helpers | +| `inc/delete-cache-button.php`, `inc/preload-notification.php` | Pre-existing standalone admin features | + +The `inc/` files are loaded by the `require_once` block at the top of +`wp-cache.php`, which runs before `wpsc_init()`, so relocated functions are +defined in time for their hooks. + +### Relocated-code conventions + +- Functions in the relocated clusters keep their original global names and + signatures — themes/plugins calling them see no change. +- `__DIR__` / `__FILE__` inside relocated code resolves to the plugin root via + `dirname( __DIR__ )` (the `inc/` files sit one level below root). +- The relocated procedural includes carry pre-existing WPCS debt verbatim and + are excluded from PHPCS in `.phpcs.xml.dist`; modernizing them is a tracked + follow-up, separate from the relocation. Newly authored `inc/` files remain + fully linted. + +## Tests + +Two tiers (see `tests/php/README.md`): + +- **CI smoke** — `composer test-php`, PHPUnit 9.6, no database; covers + WordPress-free helpers in `wp-cache-phase2.php`. +- **Local integration** — `make test-integration`, `WP_UnitTestCase` + a real + database in the wp-env Docker environment; the bootstrap loads `wp-cache.php` + so the relocated procedural functions run under a real WP runtime. +- **e2e** — `composer test-e2e` (Docker/Jest); covers activation and the + settings UI, including behaviour that depends on plugin-root path resolution. + +See `docs/adr/` for the decisions behind this layout. diff --git a/docs/adr/0001-split-wp-cache-into-inc-files.md b/docs/adr/0001-split-wp-cache-into-inc-files.md new file mode 100644 index 00000000..d9ee5928 --- /dev/null +++ b/docs/adr/0001-split-wp-cache-into-inc-files.md @@ -0,0 +1,61 @@ +# 1. Split wp-cache.php into per-responsibility inc/ files + +Date: 2026-06-17 + +## Status + +Accepted + +## Context + +`wp-cache.php` had grown to ~4,500 lines holding ~120 global functions with +their hook registrations interleaved inline — lifecycle, admin UI, preload, +htaccess generation, cache-file management, settings forms, and Jetpack Boost +banners all in one file, changing at different rates. Navigating or safely +editing it was slow, and there was no PHP unit/integration coverage. + +Issue #1061 (executing #1047 item 4) called for splitting the file along its +responsibilities, preceded by a characterization test net, as a **pure +relocation** with zero behaviour change. + +## Decision + +Move the global-function clusters into ~9 focused `inc/` files (the existing +convention for non-class includes; `src/` stays reserved for classmap-autoloaded +classes), one responsibility per file, each carrying its own +`add_action`/`add_filter` registrations. `wp-cache.php` becomes a thin loader. +The file map is documented in `CONTEXT.md`. + +Constraints held: function names, signatures, hook names, and load order are +unchanged; `wp-cache-phase2.php` (the hot-path engine) is untouched; no classes, +shims, or global-state reduction. Each cluster was characterization-tested before +it moved. + +A few things are position-dependent and therefore deviate from a literal +byte-for-byte move, while preserving behaviour: + +- `register_activation_hook` / `register_deactivation_hook` / + `register_uninstall_hook` stay in `wp-cache.php` so `__FILE__` resolves to the + main plugin file; their handlers live in `inc/lifecycle.php`. +- `__DIR__` / `__FILE__` in relocated code resolves to the plugin root via + `dirname( __DIR__ )` so asset URLs, `WPCACHEHOME`, `advanced-cache.php` + generation, and partial-template paths stay correct. + +## Consequences + +- The plugin's behaviour is unchanged: the CI smoke suite (34), the local + integration suite (37), and the e2e suite (28) all pass. The e2e suite proved + essential — it caught the `__FILE__`/`__DIR__` path regressions that the + unit/integration tiers do not exercise. +- Each `inc/` file is small and focused, so future changes touch one + responsibility at a time. +- The relocated procedural includes carry their pre-existing WPCS debt verbatim + and are excluded from PHPCS (documented in `.phpcs.xml.dist`). **Follow-up:** + modernize the relocated `inc/` files (strict comparisons, escaping, spacing) + and remove the exclusions; a deeper pass can then reduce global state (e.g. + turn `inc/preload.php` into the #5 preload state machine). +- Because the changed-lines linter (`phpcs-changed`) diffs the cumulative branch + against trunk, a partially-moved tree can make `git` attribute surviving + legacy as "added." Only the original and the fully-moved states are + lint-clean, so this work landed as a single relocation commit rather than one + commit per cluster. diff --git a/inc/admin-notices.php b/inc/admin-notices.php new file mode 100644 index 00000000..6c1c6e1d --- /dev/null +++ b/inc/admin-notices.php @@ -0,0 +1,203 @@ +

"; + echo "

" . __( 'WP Super Cache Warning!', 'wp-super-cache' ) . '

'; + echo '

' . __( 'All users of this site have been logged out to refresh their login cookies.', 'wp-super-cache' ) . '

'; + echo ''; + return false; + } elseif ( get_site_option( 'wp_super_cache_index_detected' ) != 3 ) { + echo "
"; + echo "

" . __( 'WP Super Cache Warning!', 'wp-super-cache' ) . '

'; + echo '

' . __( 'Your server is configured to show files and directories, which may expose sensitive data such as login cookies to attackers in the cache directories. That has been fixed by adding a file named index.html to each directory. If you use simple caching, consider moving the location of the cache directory on the Advanced Settings page.', 'wp-super-cache' ) . '

'; + echo "

"; + _e( 'If you just installed WP Super Cache for the first time, you can dismiss this message. Otherwise, you should probably refresh the login cookies of all logged in WordPress users here by clicking the logout link below.', 'wp-super-cache' ); + echo "

"; + echo '

' . esc_html__( 'The logout link will log out all WordPress users on this site except you. Your authentication cookie will be updated, but you will not be logged out.', 'wp-super-cache' ) . '

'; + echo '' . esc_html__( 'Dismiss', 'wp-super-cache' ) . ''; + echo ' | ' . esc_html__( 'Logout', 'wp-super-cache' ) . ''; + echo '
'; +?> + +

' . $msg . '

'; +} +add_action( 'admin_notices', 'wpsc_config_file_notices' ); +function wpsc_dismiss_indexhtml_warning() { + check_ajax_referer( 'wpsc-index-dismiss' ); + + if ( ! current_user_can( 'manage_options' ) ) { + wp_send_json_error( null, 403 ); + } + + update_site_option( 'wp_super_cache_index_detected', 3 ); + die( 0 ); +} +add_action( 'wp_ajax_wpsc-index-dismiss', 'wpsc_dismiss_indexhtml_warning' ); + +if( get_option( 'gzipcompression' ) ) + update_option( 'gzipcompression', 0 ); + +function wp_cache_favorite_action( $actions ) { + if ( function_exists( '_deprecated_function' ) ) { + _deprecated_function( __FUNCTION__, 'WP Super Cache 1.6.4' ); + } + + if ( false == wpsupercache_site_admin() ) + return $actions; + + if ( function_exists('current_user_can') && !current_user_can('manage_options') ) + return $actions; + + $actions[ wp_nonce_url( 'options-general.php?page=wpsupercache&wp_delete_cache=1&tab=contents', 'wp-cache' ) ] = array( __( 'Delete Cache', 'wp-super-cache' ), 'manage_options' ); + + return $actions; +} +//add_filter( 'favorite_actions', 'wp_cache_favorite_action' ); + +function wp_cache_plugin_notice( $plugin ) { + global $cache_enabled; + if( $plugin == 'wp-super-cache/wp-cache.php' && !$cache_enabled && function_exists( 'admin_url' ) ) + echo '' . sprintf( __( 'WP Super Cache must be configured. Go to the admin page to enable and configure the plugin.', 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache' ) ) . ''; +} +add_action( 'after_plugin_row', 'wp_cache_plugin_notice' ); + +function wp_cache_plugin_actions( $links, $file ) { + if ( $file === 'wp-super-cache/wp-cache.php' && function_exists( 'admin_url' ) && is_array( $links ) ) { + $settings_link = '' . __( 'Settings', 'wp-super-cache' ) . ''; + array_unshift( $links, $settings_link ); // before other links + } + return $links; +} +add_filter( 'plugin_action_links', 'wp_cache_plugin_actions', 10, 2 ); + +function wp_cache_admin_notice() { + global $cache_enabled, $wp_cache_phase1_loaded; + if( substr( $_SERVER['PHP_SELF'], -11 ) == 'plugins.php' && !$cache_enabled && function_exists( 'admin_url' ) ) + echo '

' . sprintf( __('WP Super Cache is disabled. Please go to the plugin admin page to enable caching.', 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache' ) ) . '

'; + + if ( defined( 'WP_CACHE' ) && WP_CACHE == true && ( defined( 'ADVANCEDCACHEPROBLEM' ) || ( $cache_enabled && false == isset( $wp_cache_phase1_loaded ) ) ) ) { + if ( wp_cache_create_advanced_cache() ) { + echo '

' . sprintf( __( 'Warning! WP Super Cache caching was broken but has been fixed! The script advanced-cache.php could not load wp-cache-phase1.php.

The file %1$s/advanced-cache.php has been recreated and WPCACHEHOME fixed in your wp-config.php. Reload to hide this message.', 'wp-super-cache' ), WP_CONTENT_DIR ) . '

'; + } + } +} +add_action( 'admin_notices', 'wp_cache_admin_notice' ); + +function wp_cache_check_site() { + global $wp_super_cache_front_page_check, $wp_super_cache_front_page_clear, $wp_super_cache_front_page_text, $wp_super_cache_front_page_notification, $wpdb; + + if ( empty( $wp_super_cache_front_page_check ) ) { + return false; + } + + if ( function_exists( "wp_remote_get" ) == false ) { + return false; + } + $front_page = wp_remote_get( site_url(), array('timeout' => 60, 'blocking' => true ) ); + if( is_array( $front_page ) ) { + // Check for gzipped front page + if ( $front_page[ 'headers' ][ 'content-type' ] == 'application/x-gzip' ) { + if ( ! isset( $wp_super_cache_front_page_clear ) || $wp_super_cache_front_page_clear === 0 ) { + wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Front page is gzipped! Please clear cache!', 'wp-super-cache' ), home_url() ), sprintf( __( "Please visit %s to clear the cache as the front page of your site is now downloading!", 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache' ) ) ); + } else { + wp_cache_clear_cache( $wpdb->blogid ); + wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Front page is gzipped! Cache Cleared!', 'wp-super-cache' ), home_url() ), sprintf( __( "The cache on your blog has been cleared because the front page of your site is now downloading. Please visit %s to verify the cache has been cleared.", 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache' ) ) ); + } + } + + // Check for broken front page + if ( + ! empty( $wp_super_cache_front_page_text ) + && ! str_contains( $front_page['body'], $wp_super_cache_front_page_text ) + ) { + if ( ! isset( $wp_super_cache_front_page_clear ) || $wp_super_cache_front_page_clear === 0 ) { + wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Front page is not correct! Please clear cache!', 'wp-super-cache' ), home_url() ), sprintf( __( 'Please visit %1$s to clear the cache as the front page of your site is not correct and missing the text, "%2$s"!', 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache' ), $wp_super_cache_front_page_text ) ); + } else { + wp_cache_clear_cache( $wpdb->blogid ); + wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Front page is not correct! Cache Cleared!', 'wp-super-cache' ), home_url() ), sprintf( __( 'The cache on your blog has been cleared because the front page of your site is missing the text "%2$s". Please visit %1$s to verify the cache has been cleared.', 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache' ), $wp_super_cache_front_page_text ) ); + } + } + } + if ( isset( $wp_super_cache_front_page_notification ) && $wp_super_cache_front_page_notification == 1 ) { + wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Front page check!', 'wp-super-cache' ), home_url() ), sprintf( __( "WP Super Cache has checked the front page of your blog. Please visit %s if you would like to disable this.", 'wp-super-cache' ) . "\n\n", admin_url( 'options-general.php?page=wpsupercache' ) ) ); + } + + if ( !wp_next_scheduled( 'wp_cache_check_site_hook' ) ) { + wp_schedule_single_event( time() + 360 , 'wp_cache_check_site_hook' ); + wp_cache_debug( 'scheduled wp_cache_check_site_hook for 360 seconds time.', 2 ); + } +} +add_action( 'wp_cache_check_site_hook', 'wp_cache_check_site' ); diff --git a/inc/admin-ui.php b/inc/admin-ui.php new file mode 100644 index 00000000..1706e033 --- /dev/null +++ b/inc/admin-ui.php @@ -0,0 +1,1160 @@ + wp_create_nonce( 'wpsc_dismiss_boost_notice' ), + 'boostDismissNonce' => wp_create_nonce( 'wpsc_dismiss_boost_banner' ), + 'boostInstallNonce' => wp_create_nonce( 'updates' ), + 'boostActivateNonce' => wp_create_nonce( 'activate-boost' ), + ) + ); +} +add_action( 'admin_enqueue_scripts', 'wp_super_cache_admin_enqueue_scripts' ); + +/** + * Use the standard WordPress plugin installation ajax handler. + */ +add_action( 'wp_ajax_wpsc_install_plugin', 'wp_ajax_install_plugin' ); + +function wp_cache_manager_error_checks() { + global $wp_cache_debug, $wp_cache_cron_check, $cache_enabled, $super_cache_enabled, $wp_cache_config_file, $wp_cache_mobile_browsers, $wp_cache_mobile_prefixes, $wp_cache_mobile_browsers, $wp_cache_mobile_enabled, $wp_cache_mod_rewrite; + global $dismiss_htaccess_warning, $dismiss_readable_warning, $dismiss_gc_warning, $wp_cache_shutdown_gc, $is_nginx; + global $htaccess_path; + + if ( ! wpsupercache_site_admin() ) { + return false; + } + + // phpcs:ignore PHPCompatibility.IniDirectives.RemovedIniDirectives.safe_modeDeprecatedRemoved -- Version is checked before access. + if ( PHP_VERSION_ID < 50300 && ( ini_get( 'safe_mode' ) === '1' || strtolower( ini_get( 'safe_mode' ) ) === 'on' ) ) { // @codingStandardsIgnoreLine + echo '

' . esc_html__( 'Warning! PHP Safe Mode Enabled!', 'wp-super-cache' ) . '

'; + echo '

' . esc_html__( 'You may experience problems running this plugin because SAFE MODE is enabled.', 'wp-super-cache' ) . '
'; + + // phpcs:ignore PHPCompatibility.IniDirectives.RemovedIniDirectives.safe_mode_gidDeprecatedRemoved -- Version is checked before access. + if ( ! ini_get( 'safe_mode_gid' ) ) { // @codingStandardsIgnoreLine + esc_html_e( 'Your server is set up to check the owner of PHP scripts before allowing them to read and write files.', 'wp-super-cache' ); + echo '
'; + printf( __( 'You or an administrator may be able to make it work by changing the group owner of the plugin scripts to match that of the web server user. The group owner of the %s/cache/ directory must also be changed. See the safe mode manual page for further details.', 'wp-super-cache' ), esc_attr( WP_CONTENT_DIR ) ); + } else { + _e( 'You or an administrator must disable this. See the safe mode manual page for further details. This cannot be disabled in a .htaccess file unfortunately. It must be done in the php.ini config file.', 'wp-super-cache' ); + } + echo '

'; + } + + if ( '' == get_option( 'permalink_structure' ) ) { + echo '

' . __( 'Permlink Structure Error', 'wp-super-cache' ) . '

'; + echo "

" . __( 'A custom url or permalink structure is required for this plugin to work correctly. Please go to the Permalinks Options Page to configure your permalinks.', 'wp-super-cache' ) . "

"; + echo '
'; + return false; + } + + if ( $wp_cache_debug || ! $wp_cache_cron_check ) { + if ( defined( 'DISABLE_WP_CRON' ) && constant( 'DISABLE_WP_CRON' ) ) { + ?> +

+

+
+

+

+

Troubleshooting section of the readme.txt', 'wp-super-cache' ), 'https://wordpress.org/plugins/wp-super-cache/faq/' ); ?>

+
+ 0.01, 'blocking' => true)); + if( is_array( $cron ) ) { + if( $cron[ 'response' ][ 'code' ] == '404' ) { + ?>

Warning! wp-cron.php not found!

+

+

Troubleshooting section of the readme.txt', 'wp-super-cache' ), 'https://wordpress.org/plugins/wp-super-cache/faq/' ); ?>

+
+ ' . __( "Cannot continue... fix previous problems and retry.", 'wp-super-cache' ) . '

'; + return false; + } + + if ( false == function_exists( 'wpsc_deep_replace' ) ) { + $msg = __( 'Warning! You must set WP_CACHE and WPCACHEHOME in your wp-config.php for this plugin to work correctly:' ) . '
'; + $msg .= "define( 'WP_CACHE', true );
"; + $msg .= "define( 'WPCACHEHOME', '" . dirname( __DIR__ ) . "/' );
"; + wp_die( $msg ); + } + + if (!wp_cache_check_global_config()) { + return false; + } + + if ( 1 == ini_get( 'zlib.output_compression' ) || "on" == strtolower( ini_get( 'zlib.output_compression' ) ) ) { + ?>

+

this page for instructions on modifying your php.ini.', 'wp-super-cache' ); ?>

+

+

%s/wp-cache-config.php and cannot be modified. That file must be writeable by the web server to make any changes.', 'wp-super-cache' ), WPCACHECONFIGPATH ); ?> +

+

This page explains how to change file permissions.', 'wp-super-cache' ); ?>

+ chmod 666 /wp-cache-config.php
+ chmod 644 /wp-cache-config.php

+

+

this form to enable it.', 'wp-super-cache' ); ?>

+
+ + + + ' /> +
+
+
+

+

chmod 755 /

+

This page explains how to change file permissions.', 'wp-super-cache' ); ?>

+
+ + + + ' /> +
+
+
+

' . esc_html__( 'Mobile rewrite rules detected', 'wp-super-cache' ) . '

'; + echo '

' . esc_html__( 'For best performance you should enable "Mobile device support" or delete the mobile rewrite rules in your .htaccess. Look for the 2 lines with the text "2.0\ MMP|240x320" and delete those.', 'wp-super-cache' ) . '

' . esc_html__( 'This will have no affect on ordinary users but mobile users will see uncached pages.', 'wp-super-cache' ) . '

'; + } elseif ( + $wp_cache_mod_rewrite + && $cache_enabled + && $wp_cache_mobile_enabled + && $scrules != '' // phpcs:ignore Universal.Operators.StrictComparisons.LooseNotEqual + && ( + ( + '' != $wp_cache_mobile_prefixes // phpcs:ignore Universal.Operators.StrictComparisons.LooseNotEqual + && ! str_contains( $scrules, addcslashes( str_replace( ', ', '|', $wp_cache_mobile_prefixes ), ' ' ) ) + ) + || ( + '' != $wp_cache_mobile_browsers // phpcs:ignore Universal.Operators.StrictComparisons.LooseNotEqual + && ! str_contains( $scrules, addcslashes( str_replace( ', ', '|', $wp_cache_mobile_browsers ), ' ' ) ) + ) + ) + ) { + ?> +

+

+

+
  1. +
  2. Update Mod_Rewrite Rules button.', 'wp-super-cache' ); ?>
  3. +
  4. + # BEGIN WPSuperCache and # END WPSuperCache and let the plugin regenerate them by reloading this page.', 'wp-super-cache' ), array( 'code' => array() ) ), esc_html( $home_path ) ); + ?> +
  5. +
  6. + # BEGIN WPSuperCache and # END WPSuperCache. There are two sections that look very similar. Just below the line %%{HTTP:Cookie} !^.*(comment_author_|%2$s|wp-postpass_).*$ add these lines: (do it twice, once for each section)', 'wp-super-cache' ), array( 'code' => array() ) ), esc_html( $home_path ), esc_html( wpsc_get_logged_in_cookie() ) ); + ?> +

    +
+

+

+ Update Mod_Rewrite Rules button.', 'wp-super-cache' ); ?>

+ __( 'Required to serve compressed supercache files properly.', 'wp-super-cache' ), 'mod_headers' => __( 'Required to set caching information on supercache pages. IE7 users will see old pages without this module.', 'wp-super-cache' ), 'mod_expires' => __( 'Set the expiry date on supercached pages. Visitors may not see new pages when they refresh or leave comments without this module.', 'wp-super-cache' ) ); + foreach( $required_modules as $req => $desc ) { + if( !in_array( $req, $mods ) ) { + $missing_mods[ $req ] = $desc; + } + } + if( isset( $missing_mods) && is_array( $missing_mods ) ) { + ?>

+

"; + foreach( $missing_mods as $req => $desc ) { + echo "
  • $req - $desc
  • "; + } + echo ""; + echo "
    "; + } + } + + if ( $valid_nonce && isset( $_POST[ 'action' ] ) && $_POST[ 'action' ] == 'dismiss_htaccess_warning' ) { + wp_cache_replace_line('^ *\$dismiss_htaccess_warning', "\$dismiss_htaccess_warning = 1;", $wp_cache_config_file); + $dismiss_htaccess_warning = 1; + } elseif ( !isset( $dismiss_htaccess_warning ) ) { + $dismiss_htaccess_warning = 0; + } + if ( ! $is_nginx && $dismiss_htaccess_warning == 0 && $wp_cache_mod_rewrite && $super_cache_enabled && get_option( 'siteurl' ) != get_option( 'home' ) ) { // phpcs:ignore Universal.Operators.StrictComparisons.LooseEqual,Universal.Operators.StrictComparisons.LooseNotEqual + ?> +

    +

    here. Unfortunately, WordPress writes to the .htaccess in the install directory, not where your site is served from.
    When you update the rewrite rules in this plugin you will have to copy the file to where your site is hosted. This will be fixed in the future.', 'wp-super-cache' ); ?>

    +
    + + + + ' /> +
    +
    +
    \'\"\r\n\t\(\)\$\[\];#]/', '', $new_cache_path ); + wp_cache_replace_line('^ *\$cache_path', "\$cache_path = " . var_export( $cache_path, true ) . ";", $wp_cache_config_file); + } + + if( isset( $_POST[ 'wp_super_cache_late_init' ] ) ) { + $wp_super_cache_late_init = 1; + } else { + $wp_super_cache_late_init = 0; + } + wp_cache_replace_line('^ *\$wp_super_cache_late_init', "\$wp_super_cache_late_init = " . $wp_super_cache_late_init . ";", $wp_cache_config_file); + + if( isset( $_POST[ 'wp_cache_disable_utf8' ] ) ) { + $wp_cache_disable_utf8 = 1; + } else { + $wp_cache_disable_utf8 = 0; + } + wp_cache_replace_line('^ *\$wp_cache_disable_utf8', "\$wp_cache_disable_utf8 = " . $wp_cache_disable_utf8 . ";", $wp_cache_config_file); + + if( isset( $_POST[ 'wp_cache_no_cache_for_get' ] ) ) { + $wp_cache_no_cache_for_get = 1; + } else { + $wp_cache_no_cache_for_get = 0; + } + wp_cache_replace_line('^ *\$wp_cache_no_cache_for_get', "\$wp_cache_no_cache_for_get = " . $wp_cache_no_cache_for_get . ";", $wp_cache_config_file); + + if( isset( $_POST[ 'wp_supercache_304' ] ) ) { + $wp_supercache_304 = 1; + } else { + $wp_supercache_304 = 0; + } + wp_cache_replace_line('^ *\$wp_supercache_304', "\$wp_supercache_304 = " . $wp_supercache_304 . ";", $wp_cache_config_file); + + if( isset( $_POST[ 'wp_cache_mfunc_enabled' ] ) ) { + $wp_cache_mfunc_enabled = 1; + } else { + $wp_cache_mfunc_enabled = 0; + } + wp_cache_replace_line('^ *\$wp_cache_mfunc_enabled', "\$wp_cache_mfunc_enabled = " . $wp_cache_mfunc_enabled . ";", $wp_cache_config_file); + + if( isset( $_POST[ 'wp_cache_mobile_enabled' ] ) ) { + $wp_cache_mobile_enabled = 1; + } else { + $wp_cache_mobile_enabled = 0; + } + wp_cache_replace_line('^ *\$wp_cache_mobile_enabled', "\$wp_cache_mobile_enabled = " . $wp_cache_mobile_enabled . ";", $wp_cache_config_file); + + if( isset( $_POST[ 'wp_cache_front_page_checks' ] ) ) { + $wp_cache_front_page_checks = 1; + } else { + $wp_cache_front_page_checks = 0; + } + wp_cache_replace_line('^ *\$wp_cache_front_page_checks', "\$wp_cache_front_page_checks = " . $wp_cache_front_page_checks . ";", $wp_cache_config_file); + + if( isset( $_POST[ 'wp_supercache_cache_list' ] ) ) { + $wp_supercache_cache_list = 1; + } else { + $wp_supercache_cache_list = 0; + } + wp_cache_replace_line('^ *\$wp_supercache_cache_list', "\$wp_supercache_cache_list = " . $wp_supercache_cache_list . ";", $wp_cache_config_file); + + if ( isset( $_POST[ 'wp_cache_enabled' ] ) ) { + wp_cache_enable(); + if ( ! defined( 'DISABLE_SUPERCACHE' ) ) { + wp_cache_debug( 'DISABLE_SUPERCACHE is not set, super_cache enabled.' ); + wp_super_cache_enable(); + $super_cache_enabled = true; + } + } else { + wp_cache_disable(); + wp_super_cache_disable(); + $super_cache_enabled = false; + } + + if ( isset( $_POST[ 'wp_cache_mod_rewrite' ] ) && $_POST[ 'wp_cache_mod_rewrite' ] == 1 ) { + $wp_cache_mod_rewrite = 1; + add_mod_rewrite_rules(); + } else { + $wp_cache_mod_rewrite = 0; // cache files served by PHP + remove_mod_rewrite_rules(); + } + wp_cache_setting( 'wp_cache_mod_rewrite', $wp_cache_mod_rewrite ); + + if( isset( $_POST[ 'wp_cache_clear_on_post_edit' ] ) ) { + $wp_cache_clear_on_post_edit = 1; + } else { + $wp_cache_clear_on_post_edit = 0; + } + wp_cache_replace_line('^ *\$wp_cache_clear_on_post_edit', "\$wp_cache_clear_on_post_edit = " . $wp_cache_clear_on_post_edit . ";", $wp_cache_config_file); + + if( isset( $_POST[ 'cache_rebuild_files' ] ) ) { + $cache_rebuild_files = 1; + } else { + $cache_rebuild_files = 0; + } + wp_cache_replace_line('^ *\$cache_rebuild_files', "\$cache_rebuild_files = " . $cache_rebuild_files . ";", $wp_cache_config_file); + + if ( isset( $_POST[ 'wpsc_save_headers' ] ) ) { + $wpsc_save_headers = 1; + } else { + $wpsc_save_headers = 0; + } + wp_cache_replace_line('^ *\$wpsc_save_headers', "\$wpsc_save_headers = " . $wpsc_save_headers . ";", $wp_cache_config_file); + + if( isset( $_POST[ 'wp_cache_mutex_disabled' ] ) ) { + $wp_cache_mutex_disabled = 0; + } else { + $wp_cache_mutex_disabled = 1; + } + if( defined( 'WPSC_DISABLE_LOCKING' ) ) { + $wp_cache_mutex_disabled = 1; + } + wp_cache_replace_line('^ *\$wp_cache_mutex_disabled', "\$wp_cache_mutex_disabled = " . $wp_cache_mutex_disabled . ";", $wp_cache_config_file); + + if ( isset( $_POST['wp_cache_not_logged_in'] ) && $_POST['wp_cache_not_logged_in'] != 0 ) { + if ( $wp_cache_not_logged_in == 0 && function_exists( 'prune_super_cache' ) ) { + prune_super_cache( $cache_path, true ); + } + $wp_cache_not_logged_in = (int)$_POST['wp_cache_not_logged_in']; + } else { + $wp_cache_not_logged_in = 0; + } + wp_cache_replace_line('^ *\$wp_cache_not_logged_in', "\$wp_cache_not_logged_in = " . $wp_cache_not_logged_in . ";", $wp_cache_config_file); + + if( isset( $_POST[ 'wp_cache_make_known_anon' ] ) ) { + if( $wp_cache_make_known_anon == 0 && function_exists( 'prune_super_cache' ) ) + prune_super_cache ($cache_path, true); + $wp_cache_make_known_anon = 1; + } else { + $wp_cache_make_known_anon = 0; + } + wp_cache_replace_line('^ *\$wp_cache_make_known_anon', "\$wp_cache_make_known_anon = " . $wp_cache_make_known_anon . ";", $wp_cache_config_file); + + if( isset( $_POST[ 'wp_cache_refresh_single_only' ] ) ) { + $wp_cache_refresh_single_only = 1; + } else { + $wp_cache_refresh_single_only = 0; + } + wp_cache_setting( 'wp_cache_refresh_single_only', $wp_cache_refresh_single_only ); + + if ( defined( 'WPSC_DISABLE_COMPRESSION' ) ) { + $cache_compression = 0; + wp_cache_replace_line('^ *\$cache_compression', "\$cache_compression = " . $cache_compression . ";", $wp_cache_config_file); + } else { + if ( isset( $_POST[ 'cache_compression' ] ) ) { + $new_cache_compression = 1; + } else { + $new_cache_compression = 0; + } + if ( 1 == ini_get( 'zlib.output_compression' ) || "on" == strtolower( ini_get( 'zlib.output_compression' ) ) ) { + echo '
    ' . __( "Warning! You attempted to enable compression but zlib.output_compression is enabled. See #21 in the Troubleshooting section of the readme file.", 'wp-super-cache' ) . '
    '; + } elseif ( $new_cache_compression !== (int) $cache_compression ) { + $cache_compression = $new_cache_compression; + wp_cache_replace_line( '^ *\$cache_compression', "\$cache_compression = $cache_compression;", $wp_cache_config_file ); + if ( function_exists( 'prune_super_cache' ) ) { + prune_super_cache( $cache_path, true ); + } + delete_option( 'super_cache_meta' ); + } + } + } +} +if ( isset( $_GET[ 'page' ] ) && $_GET[ 'page' ] == 'wpsupercache' ) + add_action( 'admin_init', 'wp_cache_manager_updates' ); + +function wp_cache_manager() { + global $wp_cache_config_file, $valid_nonce, $supercachedir, $cache_path, $cache_enabled, $cache_compression, $super_cache_enabled; + global $wp_cache_clear_on_post_edit, $cache_rebuild_files, $wp_cache_mutex_disabled, $wp_cache_mobile_enabled, $wp_cache_mobile_browsers, $wp_cache_no_cache_for_get; + global $wp_cache_not_logged_in, $wp_cache_make_known_anon, $wp_supercache_cache_list, $cache_page_secret; + global $wp_super_cache_front_page_check, $wp_cache_refresh_single_only, $wp_cache_mobile_prefixes; + global $wp_cache_mod_rewrite, $wp_supercache_304, $wp_super_cache_late_init, $wp_cache_front_page_checks, $wp_cache_disable_utf8, $wp_cache_mfunc_enabled; + global $wp_super_cache_comments, $wp_cache_home_path, $wpsc_save_headers, $is_nginx; + global $wpsc_promo_links; + + if ( !wpsupercache_site_admin() ) + return false; + + // used by mod_rewrite rules and config file + if ( function_exists( "cfmobi_default_browsers" ) ) { + $wp_cache_mobile_browsers = cfmobi_default_browsers( "mobile" ); + $wp_cache_mobile_browsers = array_merge( $wp_cache_mobile_browsers, cfmobi_default_browsers( "touch" ) ); + } elseif ( function_exists( 'lite_detection_ua_contains' ) ) { + $wp_cache_mobile_browsers = explode( '|', lite_detection_ua_contains() ); + } else { + $wp_cache_mobile_browsers = array( '2.0 MMP', '240x320', '400X240', 'AvantGo', 'BlackBerry', 'Blazer', 'Cellphone', 'Danger', 'DoCoMo', 'Elaine/3.0', 'EudoraWeb', 'Googlebot-Mobile', 'hiptop', 'IEMobile', 'KYOCERA/WX310K', 'LG/U990', 'MIDP-2.', 'MMEF20', 'MOT-V', 'NetFront', 'Newt', 'Nintendo Wii', 'Nitro', 'Nokia', 'Opera Mini', 'Palm', 'PlayStation Portable', 'portalmmm', 'Proxinet', 'ProxiNet', 'SHARP-TQ-GX10', 'SHG-i900', 'Small', 'SonyEricsson', 'Symbian OS', 'SymbianOS', 'TS21i-10', 'UP.Browser', 'UP.Link', 'webOS', 'Windows CE', 'WinWAP', 'YahooSeeker/M1A1-R2D2', 'iPhone', 'iPod', 'iPad', 'Android', 'BlackBerry9530', 'LG-TU915 Obigo', 'LGE VX', 'webOS', 'Nokia5800' ); + } + if ( function_exists( "lite_detection_ua_prefixes" ) ) { + $wp_cache_mobile_prefixes = lite_detection_ua_prefixes(); + } else { + $wp_cache_mobile_prefixes = array( 'w3c ', 'w3c-', 'acs-', 'alav', 'alca', 'amoi', 'audi', 'avan', 'benq', 'bird', 'blac', 'blaz', 'brew', 'cell', 'cldc', 'cmd-', 'dang', 'doco', 'eric', 'hipt', 'htc_', 'inno', 'ipaq', 'ipod', 'jigs', 'kddi', 'keji', 'leno', 'lg-c', 'lg-d', 'lg-g', 'lge-', 'lg/u', 'maui', 'maxo', 'midp', 'mits', 'mmef', 'mobi', 'mot-', 'moto', 'mwbp', 'nec-', 'newt', 'noki', 'palm', 'pana', 'pant', 'phil', 'play', 'port', 'prox', 'qwap', 'sage', 'sams', 'sany', 'sch-', 'sec-', 'send', 'seri', 'sgh-', 'shar', 'sie-', 'siem', 'smal', 'smar', 'sony', 'sph-', 'symb', 't-mo', 'teli', 'tim-', 'tosh', 'tsm-', 'upg1', 'upsi', 'vk-v', 'voda', 'wap-', 'wapa', 'wapi', 'wapp', 'wapr', 'webc', 'winw', 'winw', 'xda ', 'xda-' ); // from http://svn.wp-plugins.org/wordpress-mobile-pack/trunk/plugins/wpmp_switcher/lite_detection.php + } + $wp_cache_mobile_browsers = apply_filters( 'cached_mobile_browsers', $wp_cache_mobile_browsers ); // Allow mobile plugins access to modify the mobile UA list + $wp_cache_mobile_prefixes = apply_filters( 'cached_mobile_prefixes', $wp_cache_mobile_prefixes ); // Allow mobile plugins access to modify the mobile UA prefix list + if ( function_exists( 'do_cacheaction' ) ) { + $wp_cache_mobile_browsers = do_cacheaction( 'wp_super_cache_mobile_browsers', $wp_cache_mobile_browsers ); + $wp_cache_mobile_prefixes = do_cacheaction( 'wp_super_cache_mobile_prefixes', $wp_cache_mobile_prefixes ); + } + $mobile_groups = apply_filters( 'cached_mobile_groups', array() ); // Group mobile user agents by capabilities. Lump them all together by default + // mobile_groups = array( 'apple' => array( 'ipod', 'iphone' ), 'nokia' => array( 'nokia5800', 'symbianos' ) ); + + $wp_cache_mobile_browsers = implode( ', ', $wp_cache_mobile_browsers ); + $wp_cache_mobile_prefixes = implode( ', ', $wp_cache_mobile_prefixes ); + + if ( false == apply_filters( 'wp_super_cache_error_checking', true ) ) + return false; + + if ( function_exists( 'get_supercache_dir' ) ) + $supercachedir = get_supercache_dir(); + if( get_option( 'gzipcompression' ) == 1 ) + update_option( 'gzipcompression', 0 ); + if( !isset( $cache_rebuild_files ) ) + $cache_rebuild_files = 0; + + $valid_nonce = isset($_REQUEST['_wpnonce']) ? wp_verify_nonce($_REQUEST['_wpnonce'], 'wp-cache') : false; + /* http://www.netlobo.com/div_hiding.html */ + ?> + + + +
    +'; + echo ''; + + // Set a default. + if ( false === $cache_enabled && ! isset( $wp_cache_mod_rewrite ) ) { + $wp_cache_mod_rewrite = 0; + } elseif ( ! isset( $wp_cache_mod_rewrite ) && $cache_enabled && $super_cache_enabled ) { + $wp_cache_mod_rewrite = 1; + } + + $admin_url = admin_url( 'options-general.php?page=wpsupercache' ); + $curr_tab = ! empty( $_GET['tab'] ) ? sanitize_text_field( stripslashes( $_GET['tab'] ) ) : ''; // WPCS: sanitization ok. + if ( empty( $curr_tab ) ) { + $curr_tab = 'easy'; + if ( $wp_cache_mod_rewrite ) { + $curr_tab = 'settings'; + echo '

    ' . __( 'Notice: Expert mode caching enabled. Showing Advanced Settings Page by default.', 'wp-super-cache' ) . '

    '; + } + } + + if ( 'preload' === $curr_tab ) { + if ( true == $super_cache_enabled && ! defined( 'DISABLESUPERCACHEPRELOADING' ) ) { + global $wp_cache_preload_interval, $wp_cache_preload_on, $wp_cache_preload_taxonomies, $wp_cache_preload_email_me, $wp_cache_preload_email_volume, $wp_cache_preload_posts, $wpdb; + wpsc_preload_settings(); + $currently_preloading = false; + + echo '
    '; + } + } + + wpsc_admin_tabs( $curr_tab ); + echo '
    '; + + if ( isset( $wp_super_cache_front_page_check ) && $wp_super_cache_front_page_check == 1 && ! wp_next_scheduled( 'wp_cache_check_site_hook' ) ) { + wp_schedule_single_event( time() + 360, 'wp_cache_check_site_hook' ); + wp_cache_debug( 'scheduled wp_cache_check_site_hook for 360 seconds time.', 2 ); + } + + if ( isset( $_REQUEST['wp_restore_config'] ) && $valid_nonce ) { + unlink( $wp_cache_config_file ); + echo '' . esc_html__( 'Configuration file changed, some values might be wrong. Load the page again from the "Settings" menu to reset them.', 'wp-super-cache' ) . ''; + } + + if ( substr( get_option( 'permalink_structure' ), -1 ) == '/' ) { + wp_cache_replace_line( '^ *\$wp_cache_slash_check', "\$wp_cache_slash_check = 1;", $wp_cache_config_file ); + } else { + wp_cache_replace_line( '^ *\$wp_cache_slash_check', "\$wp_cache_slash_check = 0;", $wp_cache_config_file ); + } + $home_path = parse_url( site_url() ); + $home_path = trailingslashit( array_key_exists( 'path', $home_path ) ? $home_path['path'] : '' ); + if ( ! isset( $wp_cache_home_path ) ) { + $wp_cache_home_path = '/'; + wp_cache_setting( 'wp_cache_home_path', '/' ); + } + if ( "$home_path" != "$wp_cache_home_path" ) { + wp_cache_setting( 'wp_cache_home_path', $home_path ); + } + + if ( $wp_cache_mobile_enabled == 1 ) { + update_cached_mobile_ua_list( $wp_cache_mobile_browsers, $wp_cache_mobile_prefixes, $mobile_groups ); + } + + ?> + + +
    + + '; + wp_cache_files(); + break; + case 'preload': + wpsc_render_partial( + 'preload', + compact( + 'cache_enabled', + 'super_cache_enabled', + 'admin_url', + 'wp_cache_preload_interval', + 'wp_cache_preload_on', + 'wp_cache_preload_taxonomies', + 'wp_cache_preload_email_me', + 'wp_cache_preload_email_volume', + 'currently_preloading', + 'wp_cache_preload_posts' + ) + ); + + break; + case 'plugins': + wpsc_plugins_tab(); + break; + case 'debug': + global $wp_super_cache_debug, $wp_cache_debug_log, $wp_cache_debug_ip, $wp_cache_debug_ip; + global $wp_super_cache_front_page_text, $wp_super_cache_front_page_notification; + global $wp_super_cache_advanced_debug, $wp_cache_debug_username, $wp_super_cache_front_page_clear; + wpsc_render_partial( + 'debug', + compact( 'wp_super_cache_debug', 'wp_cache_debug_log', 'wp_cache_debug_ip', 'cache_path', 'valid_nonce', 'wp_cache_config_file', 'wp_super_cache_comments', 'wp_super_cache_front_page_check', 'wp_super_cache_front_page_clear', 'wp_super_cache_front_page_text', 'wp_super_cache_front_page_notification', 'wp_super_cache_advanced_debug', 'wp_cache_debug_username', 'wp_cache_home_path' ) + ); + break; + case 'settings': + global $cache_acceptable_files, $wpsc_rejected_cookies, $cache_rejected_uri, $wp_cache_pages; + global $cache_max_time, $wp_cache_config_file, $valid_nonce, $super_cache_enabled, $cache_schedule_type, $cache_scheduled_time, $cache_schedule_interval, $cache_time_interval, $cache_gc_email_me, $wp_cache_preload_on; + + wp_cache_update_rejected_pages(); + wp_cache_update_rejected_cookies(); + wp_cache_update_rejected_strings(); + wp_cache_update_accepted_strings(); + wp_cache_time_update(); + + wpsc_render_partial( + 'advanced', + compact( + 'wp_cache_front_page_checks', + 'admin_url', + 'cache_enabled', + 'super_cache_enabled', + 'wp_cache_mod_rewrite', + 'is_nginx', + 'wp_cache_not_logged_in', + 'wp_cache_no_cache_for_get', + 'cache_compression', + 'cache_rebuild_files', + 'wpsc_save_headers', + 'wp_supercache_304', + 'wp_cache_make_known_anon', + 'wp_cache_mfunc_enabled', + 'wp_cache_mobile_enabled', + 'wp_cache_mobile_browsers', + 'wp_cache_disable_utf8', + 'wp_cache_clear_on_post_edit', + 'wp_cache_front_page_checks', + 'wp_cache_refresh_single_only', + 'wp_supercache_cache_list', + 'wp_cache_mutex_disabled', + 'wp_super_cache_late_init', + 'cache_page_secret', + 'cache_path', + 'cache_acceptable_files', + 'wpsc_rejected_cookies', + 'cache_rejected_uri', + 'wp_cache_pages', + 'cache_max_time', + 'valid_nonce', + 'super_cache_enabled', + 'cache_schedule_type', + 'cache_scheduled_time', + 'cache_schedule_interval', + 'cache_time_interval', + 'cache_gc_email_me', + 'wp_cache_mobile_prefixes', + 'wp_cache_preload_on' + ) + ); + + wpsc_edit_tracking_parameters(); + wpsc_edit_rejected_ua(); + wpsc_lockdown(); + wpsc_restore_settings(); + + break; + case 'easy': + default: + wpsc_render_partial( + 'easy', + array( + 'admin_url' => $admin_url, + 'cache_enabled' => $cache_enabled, + 'is_nginx' => $is_nginx, + 'wp_cache_mod_rewrite' => $wp_cache_mod_rewrite, + 'valid_nonce' => $valid_nonce, + 'cache_path' => $cache_path, + 'wp_super_cache_comments' => $wp_super_cache_comments, + ) + ); + break; + } + ?> + + + + +
    + +

    +
      +
    • +
    • +
    • +
    • +
    + +

    +
      +
    1. Debug tab for diagnostics.', 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache&tab=debug' ) ); ?>
    2. +
    3. + plugin documentation.', 'wp-super-cache' ), + 'https://jetpack.com/support/wp-super-cache/' + ) + ); + ?> +
    4. +
    5. + support forum.', 'wp-super-cache' ), + 'https://wordpress.org/support/plugin/wp-super-cache/' + ) + ); + ?> +
    6. +
    7. development version for the latest fixes (changelog).', 'wp-super-cache' ), 'https://odd.blog/y/2o', 'https://plugins.trac.wordpress.org/log/wp-super-cache/' ); ?>
    8. +
    +

    +

    rate us and give feedback.', 'wp-super-cache' ), 'https://wordpress.org/support/plugin/wp-super-cache/reviews?rate=5#new-post' ); ?>

    + + +

    %2$s', 'wp-super-cache' ), date( 'M j, Y', $start_date ), number_format( get_option( 'wpsupercache_count' ) ) ); ?>

    + +

      + " . esc_html( substr( $url['url'] ?? '', 0, 20 ) ) . "\n"; + } + ?> +
    + +

    + +
    +
    +
    +
    + + + '; + echo '

    ' . esc_html__( 'Cache plugins are PHP scripts you\'ll find in a dedicated folder inside the WP Super Cache folder (wp-super-cache/plugins/). They load at the same time as WP Super Cache, and before regular WordPress plugins.', 'wp-super-cache' ) . '

    '; + echo '

    ' . esc_html__( 'Keep in mind that cache plugins are for advanced users only. To create and manage them, you\'ll need extensive knowledge of both PHP and WordPress actions.', 'wp-super-cache' ) . '

    '; + echo '

    ' . sprintf( __( 'Warning! Due to the way WordPress upgrades plugins, the ones you upload to the WP Super Cache folder (wp-super-cache/plugins/) will be deleted when you upgrade WP Super Cache. To avoid this loss, load your cache plugins from a different location. When you set $wp_cache_plugins_dir to the new location in wp-config.php, WP Super Cache will look there instead.
    You can find additional details in the developer documentation.', 'wp-super-cache' ), 'https://odd.blog/wp-super-cache-developers/' ) . '

    '; + echo ''; + echo '
    '; + ob_start(); + if ( defined( 'WP_CACHE' ) ) { + if ( function_exists( 'do_cacheaction' ) ) { + do_cacheaction( 'cache_admin_page' ); + } + } + $out = ob_get_contents(); + ob_end_clean(); + + if ( SUBMITDISABLED == ' ' && $out != '' ) { + echo '

    ' . esc_html__( 'Available Plugins', 'wp-super-cache' ) . '

    '; + echo '
      '; + echo $out; + echo '
    '; + } + echo '
    '; +} + +function wpsc_admin_tabs( $current = '' ) { + global $cache_enabled, $super_cache_enabled, $wp_cache_mod_rewrite; + + if ( '' === $current ) { + $current = ! empty( $_GET['tab'] ) ? stripslashes( $_GET['tab'] ) : ''; // WPCS: CSRF ok, sanitization ok. + } + + $admin_url = admin_url( 'options-general.php?page=wpsupercache' ); + $admin_tabs = array( + 'easy' => __( 'Easy', 'wp-super-cache' ), + 'settings' => __( 'Advanced', 'wp-super-cache' ), + 'cdn' => __( 'CDN', 'wp-super-cache' ), + 'contents' => __( 'Contents', 'wp-super-cache' ), + 'preload' => __( 'Preload', 'wp-super-cache' ), + 'plugins' => __( 'Plugins', 'wp-super-cache' ), + 'debug' => __( 'Debug', 'wp-super-cache' ), + ); + + echo '
    '; +} + +function supercache_admin_bar_render() { + global $wp_admin_bar; + + if ( function_exists( '_deprecated_function' ) ) { + _deprecated_function( __FUNCTION__, 'WP Super Cache 1.6.4' ); + } + + wpsc_admin_bar_render( $wp_admin_bar ); +} + +/** + * Renders a partial/template. + * + * The global $current_user is made available for any rendered template. + * + * @param string $partial - Filename under ./partials directory, with or without .php (appended if absent). + * @param array $page_vars - Variables made available for the template. + */ +function wpsc_render_partial( $partial, array $page_vars = array() ) { + if ( ! str_ends_with( $partial, '.php' ) ) { + $partial .= '.php'; + } + + if ( strpos( $partial, 'partials/' ) !== 0 ) { + $partial = 'partials/' . $partial; + } + + $path = dirname( __DIR__ ) . '/' . $partial; + if ( ! file_exists( $path ) ) { + return; + } + + foreach ( $page_vars as $key => $val ) { + $$key = $val; + } + global $current_user; + include $path; +} + +/** + * Render common header + */ +function wpsc_render_header() { + ?> +
    + + +
    + + + get_error_message(), null, JSON_UNESCAPED_SLASHES ); + } + + wpsc_notify_migration_to_boost( $source ); + + wp_send_json_success( null, null, JSON_UNESCAPED_SLASHES ); +} +add_action( 'wp_ajax_wpsc_activate_boost', 'wpsc_ajax_activate_boost' ); + +/** + * Show a Jetpack Boost installation banner (unless dismissed or installed) + */ +function wpsc_jetpack_boost_install_banner() { + if ( ! wpsc_is_boost_current() ) { + return; + } + // Don't show the banner if Boost is installed, or the banner has been dismissed. + $is_dismissed = '1' === get_user_option( 'wpsc_dismissed_boost_banner' ); + if ( wpsc_is_boost_active() || $is_dismissed ) { + return; + } + + $config = wpsc_get_boost_migration_config(); + $button_url = $config['is_installed'] ? $config['activate_url'] : $config['install_url']; + $button_label = $config['is_installed'] ? __( 'Set up Jetpack Boost', 'wp-super-cache' ) : __( 'Install Jetpack Boost', 'wp-super-cache' ); + $button_class = $config['is_installed'] ? 'wpsc-activate-boost-button' : 'wpsc-install-boost-button'; + $plugin_url = plugin_dir_url( dirname( __DIR__ ) . '/wp-cache.php' ); + + ?> +
    +
    +
    + + +

    + +

    + +

    + +

    + + + +
    + + + + + + Learn More + +
    +
    + +
    + <?php esc_attr_e( 'An image showing the Jetpack Boost dashboard.', 'wp-super-cache' ); ?> +
    +
    + + +
    + 1024 ) { + $fsize = number_format( $fsize / 1024, 2 ) . "MB"; + } elseif ( $fsize != 0 ) { + $fsize = number_format( $fsize, 2 ) . "KB"; + } else { + $fsize = "0KB"; + } + return $fsize; +} + +function wp_cache_regenerate_cache_file_stats() { + global $cache_compression, $supercachedir, $file_prefix, $wp_cache_preload_on, $cache_max_time; + + if ( $supercachedir == '' ) + $supercachedir = get_supercache_dir(); + + $sizes = wpsc_generate_sizes_array(); + $now = time(); + if (is_dir( $supercachedir ) ) { + if ( $dh = opendir( $supercachedir ) ) { + while ( ( $entry = readdir( $dh ) ) !== false ) { + if ( $entry != '.' && $entry != '..' ) { + $sizes = wpsc_dirsize( trailingslashit( $supercachedir ) . $entry, $sizes ); + } + } + closedir( $dh ); + } + } + foreach( $sizes as $cache_type => $list ) { + foreach( array( 'cached_list', 'expired_list' ) as $status ) { + $cached_list = array(); + foreach( $list[ $status ] as $dir => $details ) { + if ( $details[ 'files' ] == 2 && !isset( $details[ 'upper_age' ] ) ) { + $details[ 'files' ] = 1; + } + $cached_list[ $dir ] = $details; + } + $sizes[ $cache_type ][ $status ] = $cached_list; + } + } + if ( $cache_compression ) { + $sizes[ 'supercache' ][ 'cached' ] = intval( $sizes[ 'supercache' ][ 'cached' ] / 2 ); + $sizes[ 'supercache' ][ 'expired' ] = intval( $sizes[ 'supercache' ][ 'expired' ] / 2 ); + } + $cache_stats = array( 'generated' => time(), 'supercache' => $sizes[ 'supercache' ], 'wpcache' => $sizes[ 'wpcache' ] ); + update_option( 'supercache_stats', $cache_stats ); + return $cache_stats; +} + +function wp_cache_files() { + global $cache_path, $file_prefix, $cache_max_time, $valid_nonce, $supercachedir, $super_cache_enabled, $blog_cache_dir, $cache_compression; + global $wp_cache_preload_on; + + if ( '/' != substr($cache_path, -1)) { + $cache_path .= '/'; + } + + if ( $valid_nonce ) { + if(isset($_REQUEST['wp_delete_cache'])) { + wp_cache_clean_cache($file_prefix); + $_GET[ 'action' ] = 'regenerate_cache_stats'; + } + if ( isset( $_REQUEST[ 'wp_delete_all_cache' ] ) ) { + wp_cache_clean_cache( $file_prefix, true ); + $_GET[ 'action' ] = 'regenerate_cache_stats'; + } + if(isset($_REQUEST['wp_delete_expired'])) { + wp_cache_clean_expired($file_prefix); + $_GET[ 'action' ] = 'regenerate_cache_stats'; + } + } + echo ""; + echo '
    '; + echo '

    ' . __( 'Cache Contents', 'wp-super-cache' ) . '

    '; + + $cache_stats = get_option( 'supercache_stats' ); + if ( !is_array( $cache_stats ) || ( isset( $_GET[ 'listfiles' ] ) ) || ( $valid_nonce && array_key_exists('action', $_GET) && $_GET[ 'action' ] == 'regenerate_cache_stats' ) ) { + $count = 0; + $expired = 0; + $now = time(); + $wp_cache_fsize = 0; + if ( ( $handle = @opendir( $blog_cache_dir ) ) ) { + if ( $valid_nonce && isset( $_GET[ 'action' ] ) && $_GET[ 'action' ] == 'deletewpcache' ) { + $deleteuri = wpsc_deep_replace( array( '..', '\\', 'index.php' ), preg_replace( '/[ <>\'\"\r\n\t\(\)]/', '', base64_decode( $_GET[ 'uri' ] ) ) ); + } else { + $deleteuri = ''; + } + + if ( $valid_nonce && isset( $_GET[ 'action' ] ) && $_GET[ 'action' ] == 'deletesupercache' ) { + $supercacheuri = wpsc_deep_replace( array( '..', '\\', 'index.php' ), preg_replace( '/[ <>\'\"\r\n\t\(\)]/', '', preg_replace("/(\?.*)?$/", '', base64_decode( $_GET[ 'uri' ] ) ) ) ); + $supercacheuri = trailingslashit( realpath( $cache_path . 'supercache/' . $supercacheuri ) ); + if ( wp_cache_confirm_delete( $supercacheuri ) ) { + printf( __( "Deleting supercache file: %s
    ", 'wp-super-cache' ), $supercacheuri ); + wpsc_delete_files( $supercacheuri ); + prune_super_cache( $supercacheuri . 'page', true ); + @rmdir( $supercacheuri ); + } else { + wp_die( __( 'Warning! You are not allowed to delete that file', 'wp-super-cache' ) ); + } + } + while( false !== ( $file = readdir( $handle ) ) ) { + if ( // phpcs:ignore Generic.WhiteSpace.ScopeIndent.IncorrectExact + str_contains( $file, $file_prefix ) + && substr( $file, -4 ) == '.php' // phpcs:ignore Universal.Operators.StrictComparisons.LooseEqual + ) { // phpcs:ignore Generic.WhiteSpace.ScopeIndent.Incorrect + if ( false == file_exists( $blog_cache_dir . 'meta/' . $file ) ) { + @unlink( $blog_cache_dir . $file ); + continue; // meta does not exist + } + $mtime = filemtime( $blog_cache_dir . 'meta/' . $file ); + $fsize = @filesize( $blog_cache_dir . $file ); + if ( $fsize > 0 ) + $fsize = $fsize - 15; // die() command takes 15 bytes at the start of the file + + $age = $now - $mtime; + if ( $valid_nonce && isset( $_GET[ 'listfiles' ] ) ) { + $meta = json_decode( wp_cache_get_legacy_cache( $blog_cache_dir . 'meta/' . $file ), true ); + if ( $deleteuri != '' && $meta[ 'uri' ] == $deleteuri ) { + printf( __( "Deleting wp-cache file: %s
    ", 'wp-super-cache' ), esc_html( $deleteuri ) ); + @unlink( $blog_cache_dir . 'meta/' . $file ); + @unlink( $blog_cache_dir . $file ); + continue; + } + $meta[ 'age' ] = $age; + foreach( $meta as $key => $val ) + $meta[ $key ] = esc_html( $val ); + if ( $cache_max_time > 0 && $age > $cache_max_time ) { + $expired_list[ $age ][] = $meta; + } else { + $cached_list[ $age ][] = $meta; + } + } + + if ( $cache_max_time > 0 && $age > $cache_max_time ) { + ++$expired; + } else { + ++$count; + } + $wp_cache_fsize += $fsize; + } + } + closedir($handle); + } + if( $wp_cache_fsize != 0 ) { + $wp_cache_fsize = $wp_cache_fsize/1024; + } else { + $wp_cache_fsize = 0; + } + if( $wp_cache_fsize > 1024 ) { + $wp_cache_fsize = number_format( $wp_cache_fsize / 1024, 2 ) . "MB"; + } elseif( $wp_cache_fsize != 0 ) { + $wp_cache_fsize = number_format( $wp_cache_fsize, 2 ) . "KB"; + } else { + $wp_cache_fsize = '0KB'; + } + $cache_stats = wp_cache_regenerate_cache_file_stats(); + } else { + echo "

    " . __( 'Cache stats are not automatically generated. You must click the link below to regenerate the stats on this page.', 'wp-super-cache' ) . "

    "; + echo " 'wpsupercache', 'tab' => 'contents', 'action' => 'regenerate_cache_stats' ) ), 'wp-cache' ) . "'>" . __( 'Regenerate cache stats', 'wp-super-cache' ) . ""; + if ( ! empty( $cache_stats['generated'] ) ) { + echo "

    " . sprintf( __( 'Cache stats last generated: %s minutes ago.', 'wp-super-cache' ), number_format( ( time() - $cache_stats[ 'generated' ] ) / 60 ) ) . "

    "; + } + $cache_stats = get_option( 'supercache_stats' ); + }// regerate stats cache + + if ( is_array( $cache_stats ) ) { + $fsize = wp_cache_format_fsize( $cache_stats[ 'wpcache' ][ 'fsize' ] / 1024 ); + echo "

    " . __( 'WP-Cache', 'wp-super-cache' ) . " ({$fsize})

    "; + echo "
    • " . sprintf( __( '%s Cached Pages', 'wp-super-cache' ), $cache_stats[ 'wpcache' ][ 'cached' ] ) . "
    • "; + echo "
    • " . sprintf( __( '%s Expired Pages', 'wp-super-cache' ), $cache_stats[ 'wpcache' ][ 'expired' ] ) . "
    "; + if ( array_key_exists('fsize', (array)$cache_stats[ 'supercache' ]) ) + $fsize = $cache_stats[ 'supercache' ][ 'fsize' ] / 1024; + else + $fsize = 0; + $fsize = wp_cache_format_fsize( $fsize ); + echo "

    " . __( 'WP-Super-Cache', 'wp-super-cache' ) . " ({$fsize})

    "; + echo "
    • " . sprintf( __( '%s Cached Pages', 'wp-super-cache' ), $cache_stats[ 'supercache' ][ 'cached' ] ) . "
    • "; + if ( isset( $now ) && ! empty( $cache_stats['generated'] ) ) { + $age = intval( ( $now - $cache_stats['generated'] ) / 60 ); + } else { + $age = 0; + } + echo "
    • " . sprintf( __( '%s Expired Pages', 'wp-super-cache' ), $cache_stats[ 'supercache' ][ 'expired' ] ) . "
    "; + if ( $valid_nonce && array_key_exists('listfiles', $_GET) && isset( $_GET[ 'listfiles' ] ) ) { + echo "
    "; + $cache_description = array( 'supercache' => __( 'WP-Super-Cached', 'wp-super-cache' ), 'wpcache' => __( 'WP-Cached', 'wp-super-cache' ) ); + foreach( $cache_stats as $type => $details ) { + if ( is_array( $details ) == false ) + continue; + foreach( array( 'cached_list' => 'Fresh', 'expired_list' => 'Stale' ) as $list => $description ) { + if ( is_array( $details[ $list ] ) & !empty( $details[ $list ] ) ) { + echo "
    " . sprintf( __( '%s %s Files', 'wp-super-cache' ), $description, $cache_description[ $type ] ) . "
    "; + echo ""; + $c = 1; + $flip = 1; + + ksort( $details[ $list ] ); + foreach( $details[ $list ] as $directory => $d ) { + if ( isset( $d[ 'upper_age' ] ) ) { + $age = "{$d[ 'lower_age' ]} - {$d[ 'upper_age' ]}"; + } else { + $age = $d[ 'lower_age' ]; + } + $bg = $flip ? 'style="background: #EAEAEA;"' : ''; + echo "\n"; + $flip = !$flip; + ++$c; + } + echo "
    #" . __( 'URI', 'wp-super-cache' ) . "" . __( 'Files', 'wp-super-cache' ) . "" . __( 'Age', 'wp-super-cache' ) . "" . __( 'Delete', 'wp-super-cache' ) . "
    $c {$directory}{$d[ 'files' ]}{$age} 'wpsupercache', 'action' => 'deletesupercache', 'uri' => base64_encode( $directory ) ) ), 'wp-cache' ) . "#listfiles'>X
    "; + } + } + } + echo "
    "; + echo "

    " . __( 'Hide file list', 'wp-super-cache' ) . "

    "; + } elseif ( $cache_stats[ 'supercache' ][ 'cached' ] > 500 || $cache_stats[ 'supercache' ][ 'expired' ] > 500 || $cache_stats[ 'wpcache' ][ 'cached' ] > 500 || $cache_stats[ 'wpcache' ][ 'expired' ] > 500 ) { + echo "

    " . __( 'Too many cached files, no listing possible.', 'wp-super-cache' ) . "

    "; + } else { + echo "

    'wpsupercache', 'listfiles' => '1' ) ), 'wp-cache' ) . "#listfiles'>" . __( 'List all cached files', 'wp-super-cache' ) . "

    "; + } + if ( $cache_max_time > 0 ) + echo "

    " . sprintf( __( 'Expired files are files older than %s seconds. They are still used by the plugin and are deleted periodically.', 'wp-super-cache' ), $cache_max_time ) . "

    "; + if ( $wp_cache_preload_on ) + echo "

    " . __( 'Preload mode is enabled. Supercache files will never be expired.', 'wp-super-cache' ) . "

    "; + } // cache_stats + wp_cache_delete_buttons(); + + echo '
    '; + echo '
    '; +} + +function wp_cache_delete_buttons() { + + $admin_url = admin_url( 'options-general.php?page=wpsupercache' ); + + echo '
    '; + echo ''; + echo '
    '; + wp_nonce_field('wp-cache'); + echo "
    \n"; + + echo '
    '; + echo ''; + echo '
    '; + wp_nonce_field('wp-cache'); + echo "
    \n"; + if ( is_multisite() && wpsupercache_site_admin() ) { + echo '
    '; + echo ''; + echo '
    '; + wp_nonce_field('wp-cache'); + echo "
    \n"; + } +} + +function delete_cache_dashboard() { + if ( function_exists( '_deprecated_function' ) ) { + _deprecated_function( __FUNCTION__, 'WP Super Cache 1.6.4' ); + } + + if ( false == wpsupercache_site_admin() ) + return false; + + if ( function_exists('current_user_can') && !current_user_can('manage_options') ) + return false; + + echo "
  • " . __( 'Delete Cache', 'wp-super-cache' ) . "
  • "; +} +//add_action( 'dashmenu', 'delete_cache_dashboard' ); + +function wpsc_dirsize($directory, $sizes) { + global $cache_max_time, $cache_path, $valid_nonce, $wp_cache_preload_on, $file_prefix; + $now = time(); + + if (is_dir($directory)) { + if( $dh = opendir( $directory ) ) { + while( ( $entry = readdir( $dh ) ) !== false ) { + if ($entry != '.' && $entry != '..') { + $sizes = wpsc_dirsize( trailingslashit( $directory ) . $entry, $sizes ); + } + } + closedir($dh); + } + } elseif ( is_file( $directory ) && strpos( $directory, 'meta-' . $file_prefix ) === false ) { + if ( strpos( $directory, '/' . $file_prefix ) !== false ) { + $cache_type = 'wpcache'; + } else { + $cache_type = 'supercache'; + } + $keep_fresh = false; + if ( $cache_type === 'supercache' && $wp_cache_preload_on ) { + $keep_fresh = true; + } + $filem = filemtime( $directory ); + if ( ! $keep_fresh && $cache_max_time > 0 && $filem + $cache_max_time <= $now ) { + $cache_status = 'expired'; + } else { + $cache_status = 'cached'; + } + $sizes[ $cache_type ][ $cache_status ] += 1; + // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Presumably the caller should handle it if necessary. + if ( $valid_nonce && isset( $_GET['listfiles'] ) ) { + $dir = str_replace( $cache_path . 'supercache/', '', dirname( $directory ) ); + $age = $now - $filem; + if ( ! isset( $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ] ) ) { + $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['lower_age'] = $age; + $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['files'] = 1; + } else { + $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['files'] += 1; + if ( $age <= $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['lower_age'] ) { + + if ( $age < $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['lower_age'] && ! isset( $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['upper_age'] ) ) { + $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['upper_age'] = $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['lower_age']; + } + + $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['lower_age'] = $age; + + } elseif ( ! isset( $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['upper_age'] ) || $age > $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['upper_age'] ) { + + $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['upper_age'] = $age; + + } + } + } + if ( ! isset( $sizes['fsize'] ) ) { + // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged + $sizes[ $cache_type ]['fsize'] = @filesize( $directory ); + } else { + // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged + $sizes[ $cache_type ]['fsize'] += @filesize( $directory ); + } + } + return $sizes; +} + +function wp_cache_clean_cache( $file_prefix, $all = false ) { + global $cache_path, $supercachedir, $blog_cache_dir; + + do_action( 'wp_cache_cleared' ); + + if ( $all == true && wpsupercache_site_admin() && function_exists( 'prune_super_cache' ) ) { + prune_super_cache( $cache_path, true ); + return true; + } + if ( $supercachedir == '' ) + $supercachedir = get_supercache_dir(); + + if (function_exists ('prune_super_cache')) { + if( is_dir( $supercachedir ) ) { + prune_super_cache( $supercachedir, true ); + } elseif( is_dir( $supercachedir . '.disabled' ) ) { + prune_super_cache( $supercachedir . '.disabled', true ); + } + $_POST[ 'super_cache_stats' ] = 1; // regenerate super cache stats; + } else { + wp_cache_debug( 'Warning! prune_super_cache() not found in wp-cache.php', 1 ); + } + + wp_cache_clean_legacy_files( $blog_cache_dir, $file_prefix ); + wp_cache_clean_legacy_files( $cache_path, $file_prefix ); +} + +function wpsc_delete_post_cache( $id ) { + $post = get_post( $id ); + wpsc_delete_url_cache( get_author_posts_url( (int) $post->post_author ) ); + $permalink = get_permalink( $id ); + if ( $permalink != '' ) { + wpsc_delete_url_cache( $permalink ); + return true; + } else { + return false; + } +} + +function wp_cache_clean_legacy_files( $dir, $file_prefix ) { + global $wpdb; + + $dir = trailingslashit( $dir ); + if ( @is_dir( $dir . 'meta' ) == false ) + return false; + + if ( $handle = @opendir( $dir ) ) { + $curr_blog_id = is_multisite() ? get_current_blog_id() : false; + + while ( false !== ( $file = readdir( $handle ) ) ) { + if ( is_file( $dir . $file ) == false || $file == 'index.html' ) { + continue; + } + + if ( str_contains( $file, $file_prefix ) ) { + if ( strpos( $file, '.html' ) ) { + // delete old WPCache files immediately + @unlink( $dir . $file); + @unlink( $dir . 'meta/' . str_replace( '.html', '.meta', $file ) ); + } else { + $meta = json_decode( wp_cache_get_legacy_cache( $dir . 'meta/' . $file ), true ); + if ( $curr_blog_id && $curr_blog_id !== (int) $meta['blog_id'] ) { + continue; + } + @unlink( $dir . $file); + @unlink( $dir . 'meta/' . $file); + } + } + } + closedir($handle); + } +} + +function wp_cache_clean_expired($file_prefix) { + global $cache_max_time, $blog_cache_dir, $wp_cache_preload_on; + + if ( $cache_max_time == 0 ) { + return false; + } + + // If phase2 was compiled, use its function to avoid race-conditions + if(function_exists('wp_cache_phase2_clean_expired')) { + if ( $wp_cache_preload_on != 1 && function_exists ('prune_super_cache')) { + $dir = get_supercache_dir(); + if( is_dir( $dir ) ) { + prune_super_cache( $dir ); + } elseif( is_dir( $dir . '.disabled' ) ) { + prune_super_cache( $dir . '.disabled' ); + } + $_POST[ 'super_cache_stats' ] = 1; // regenerate super cache stats; + } + return wp_cache_phase2_clean_expired($file_prefix); + } + + $now = time(); + if ( $handle = @opendir( $blog_cache_dir ) ) { + while ( false !== ( $file = readdir( $handle ) ) ) { + if ( str_contains( $file, $file_prefix ) ) { + if ( strpos( $file, '.html' ) ) { + @unlink( $blog_cache_dir . $file); + @unlink( $blog_cache_dir . 'meta/' . str_replace( '.html', '.meta', $file ) ); + } elseif ( ( filemtime( $blog_cache_dir . $file ) + $cache_max_time ) <= $now ) { + @unlink( $blog_cache_dir . $file ); + @unlink( $blog_cache_dir . 'meta/' . $file ); + } + } + } + closedir($handle); + } +} + +// Catch 404 requests. Themes that use query_posts() destroy $wp_query->is_404 +function wp_cache_catch_404() { + global $wp_cache_404; + if ( function_exists( '_deprecated_function' ) ) + _deprecated_function( __FUNCTION__, 'WP Super Cache 1.5.6' ); + $wp_cache_404 = false; + if( is_404() ) + $wp_cache_404 = true; +} +//More info - https://github.com/Automattic/wp-super-cache/pull/373 +//add_action( 'template_redirect', 'wp_cache_catch_404' ); + +/* + * clear_post_supercache() relocated here from wp-cache.php (#1061): post-level + * supercache invalidation belongs with cache-file management. + */ +function clear_post_supercache( $post_id ) { + $dir = get_current_url_supercache_dir( $post_id ); + if ( false == @is_dir( $dir ) ) + return false; + + if ( get_supercache_dir() == $dir ) { + wp_cache_debug( "clear_post_supercache: not deleting post_id $post_id as it points at homepage: $dir" ); + return false; + } + + wp_cache_debug( "clear_post_supercache: post_id: $post_id. deleting files in $dir" ); + if ( get_post_type( $post_id ) != 'page') { // don't delete child pages if they exist + prune_super_cache( $dir, true ); + } else { + wpsc_delete_files( $dir ); + } +} diff --git a/inc/htaccess.php b/inc/htaccess.php new file mode 100644 index 00000000..b71b59e5 --- /dev/null +++ b/inc/htaccess.php @@ -0,0 +1,410 @@ + $markerline ) { + if ( strpos( $markerline, '# BEGIN ' . $marker ) !== false ) { + $state = false; + } + if ( $state ) { + if ( $n + 1 < count( $markerdata ) ) { + fwrite( $f, "{$markerline}\n" ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fwrite + } else { + fwrite( $f, "{$markerline}" ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fwrite + } + } + if ( strpos( $markerline, '# END ' . $marker ) !== false ) { + $state = true; + } + } + return true; + } else { + return false; + } +} + +function update_cached_mobile_ua_list( $mobile_browsers, $mobile_prefixes = 0, $mobile_groups = 0 ) { + global $wp_cache_config_file, $wp_cache_mobile_browsers, $wp_cache_mobile_prefixes, $wp_cache_mobile_groups; + wp_cache_setting( 'wp_cache_mobile_browsers', $mobile_browsers ); + wp_cache_setting( 'wp_cache_mobile_prefixes', $mobile_prefixes ); + if ( is_array( $mobile_groups ) ) { + $wp_cache_mobile_groups = $mobile_groups; + wp_cache_replace_line('^ *\$wp_cache_mobile_groups', "\$wp_cache_mobile_groups = '" . implode( ', ', $mobile_groups ) . "';", $wp_cache_config_file); + } + + return true; +} + +function wpsc_update_htaccess() { + extract( wpsc_get_htaccess_info() ); // $document_root, $apache_root, $home_path, $home_root, $home_root_lc, $inst_root, $wprules, $scrules, $condition_rules, $rules, $gziprules + // @phan-suppress-next-line PhanTypeSuspiciousStringExpression -- $home_path is set via extract() + wpsc_remove_marker( $home_path.'.htaccess', 'WordPress' ); // remove original WP rules so SuperCache rules go on top + // @phan-suppress-next-line PhanTypeSuspiciousStringExpression -- $home_path is set via extract() + if( insert_with_markers( $home_path.'.htaccess', 'WPSuperCache', explode( "\n", $rules ) ) && insert_with_markers( $home_path.'.htaccess', 'WordPress', explode( "\n", $wprules ) ) ) { + return true; + } else { + return false; + } +} + +function wpsc_update_htaccess_form( $short_form = true ) { + global $wpmu_version; + + $admin_url = admin_url( 'options-general.php?page=wpsupercache' ); + extract( wpsc_get_htaccess_info() ); // $document_root, $apache_root, $home_path, $home_root, $home_root_lc, $inst_root, $wprules, $scrules, $condition_rules, $rules, $gziprules + // @phan-suppress-next-line PhanTypeSuspiciousStringExpression -- $home_path is set via extract() + if( !is_writeable_ACLSafe( $home_path . ".htaccess" ) ) { + echo "
    " . __( 'Cannot update .htaccess', 'wp-super-cache' ) . "

    " . sprintf( __( 'The file %s.htaccess cannot be modified by the web server. Please correct this using the chmod command or your ftp client.', 'wp-super-cache' ), $home_path ) . "

    " . __( 'Refresh this page when the file permissions have been modified.' ) . "

    " . sprintf( __( 'Alternatively, you can edit your %s.htaccess file manually and add the following code (before any WordPress rules):', 'wp-super-cache' ), $home_path ) . "

    "; + echo "

    # BEGIN WPSuperCache\n" . esc_html( $rules ) . "# END WPSuperCache

    "; + } else { + if ( $short_form == false ) { + echo "

    " . sprintf( __( 'To serve static html files your server must have the correct mod_rewrite rules added to a file called %s.htaccess', 'wp-super-cache' ), $home_path ) . " "; + _e( "You can edit the file yourself. Add the following rules.", 'wp-super-cache' ); + echo __( " Make sure they appear before any existing WordPress rules. ", 'wp-super-cache' ) . "

    "; + echo "
    "; + echo "
    # BEGIN WPSuperCache\n" . esc_html( $rules ) . "# END WPSuperCache

    "; + echo "
    "; + echo "
    " . sprintf( __( 'Rules must be added to %s too:', 'wp-super-cache' ), WP_CONTENT_DIR . "/cache/.htaccess" ) . "
    "; + echo "
    "; + echo "
    # BEGIN supercache\n" . esc_html( $gziprules ) . "# END supercache

    "; + echo "
    "; + } + if ( !isset( $wpmu_version ) || $wpmu_version == '' ) { + echo '
    '; + echo ''; + echo '
    '; + wp_nonce_field('wp-cache'); + echo "
    \n"; + } + } +} + +/* + * Return LOGGED_IN_COOKIE if it doesn't begin with wordpress_logged_in + * to avoid having people update their .htaccess file + */ +function wpsc_get_logged_in_cookie() { + $logged_in_cookie = 'wordpress_logged_in'; + if ( defined( 'LOGGED_IN_COOKIE' ) && substr( constant( 'LOGGED_IN_COOKIE' ), 0, 19 ) != 'wordpress_logged_in' ) + $logged_in_cookie = constant( 'LOGGED_IN_COOKIE' ); + return $logged_in_cookie; +} + +function wpsc_get_htaccess_info() { + global $wp_cache_mobile_enabled, $wp_cache_mobile_prefixes, $wp_cache_mobile_browsers, $wp_cache_disable_utf8; + global $htaccess_path; + + if ( isset( $_SERVER[ "PHP_DOCUMENT_ROOT" ] ) ) { + $document_root = $_SERVER[ "PHP_DOCUMENT_ROOT" ]; + $apache_root = $_SERVER[ "PHP_DOCUMENT_ROOT" ]; + } else { + $document_root = $_SERVER[ "DOCUMENT_ROOT" ]; + $apache_root = '%{DOCUMENT_ROOT}'; + } + $content_dir_root = $document_root; + if ( strpos( $document_root, '/kunden/homepages/' ) === 0 ) { + // https://wordpress.org/support/topic/plugin-wp-super-cache-how-to-get-mod_rewrite-working-on-1and1-shared-hosting?replies=1 + // On 1and1, PHP's directory structure starts with '/homepages'. The + // Apache directory structure has an extra '/kunden' before it. + // Also 1and1 does not support the %{DOCUMENT_ROOT} variable in + // .htaccess files. + // This prevents the $inst_root from being calculated correctly and + // means that the $apache_root is wrong. + // + // e.g. This is an example of how Apache and PHP see the directory + // structure on 1and1: + // Apache: /kunden/homepages/xx/dxxxxxxxx/htdocs/site1/index.html + // PHP: /homepages/xx/dxxxxxxxx/htdocs/site1/index.html + // Here we fix up the paths to make mode_rewrite work on 1and1 shared hosting. + $content_dir_root = substr( $content_dir_root, 7 ); + $apache_root = $document_root; + } + $home_path = get_home_path(); + $home_root = parse_url(get_bloginfo('url')); + $home_root = isset( $home_root[ 'path' ] ) ? trailingslashit( $home_root[ 'path' ] ) : '/'; + if ( isset( $htaccess_path ) ) { + $home_path = $htaccess_path; + } elseif ( + $home_root == '/' && + $home_path != $_SERVER[ 'DOCUMENT_ROOT' ] + ) { + $home_path = $_SERVER[ 'DOCUMENT_ROOT' ]; + } elseif ( + $home_root != '/' && + $home_path != str_replace( '//', '/', $_SERVER[ 'DOCUMENT_ROOT' ] . $home_root ) && + is_dir( $_SERVER[ 'DOCUMENT_ROOT' ] . $home_root ) + ) { + $home_path = str_replace( '//', '/', $_SERVER[ 'DOCUMENT_ROOT' ] . $home_root ); + } + + $home_path = trailingslashit( $home_path ); + $home_root_lc = str_replace( '//', '/', strtolower( $home_root ) ); + $inst_root = str_replace( '//', '/', '/' . trailingslashit( str_replace( $content_dir_root, '', str_replace( '\\', '/', WP_CONTENT_DIR ) ) ) ); + $wprules = implode( "\n", extract_from_markers( $home_path.'.htaccess', 'WordPress' ) ); + $wprules = str_replace( "RewriteEngine On\n", '', $wprules ); + $wprules = str_replace( "RewriteBase $home_root\n", '', $wprules ); + $scrules = implode( "\n", extract_from_markers( $home_path.'.htaccess', 'WPSuperCache' ) ); + + if( substr( get_option( 'permalink_structure' ), -1 ) == '/' ) { + $condition_rules[] = "RewriteCond %{REQUEST_URI} !^.*[^/]$"; + $condition_rules[] = "RewriteCond %{REQUEST_URI} !^.*//.*$"; + } + $condition_rules[] = "RewriteCond %{REQUEST_METHOD} !POST"; + $condition_rules[] = "RewriteCond %{QUERY_STRING} ^$"; + $condition_rules[] = "RewriteCond %{HTTP:Cookie} !^.*(comment_author_|" . wpsc_get_logged_in_cookie() . wpsc_get_extra_cookies() . "|wp-postpass_).*$"; + $condition_rules[] = "RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\\\"]+ [NC]"; + $condition_rules[] = "RewriteCond %{HTTP:Profile} !^[a-z0-9\\\"]+ [NC]"; + if ( $wp_cache_mobile_enabled ) { + if ( isset( $wp_cache_mobile_browsers ) && "" != $wp_cache_mobile_browsers ) + $condition_rules[] = "RewriteCond %{HTTP_USER_AGENT} !^.*(" . addcslashes( str_replace( ', ', '|', $wp_cache_mobile_browsers ), ' ' ) . ").* [NC]"; + if ( isset( $wp_cache_mobile_prefixes ) && "" != $wp_cache_mobile_prefixes ) + $condition_rules[] = "RewriteCond %{HTTP_USER_AGENT} !^(" . addcslashes( str_replace( ', ', '|', $wp_cache_mobile_prefixes ), ' ' ) . ").* [NC]"; + } + $condition_rules = apply_filters( 'supercacherewriteconditions', $condition_rules ); + + $rules = "\n"; + $rules .= "RewriteEngine On\n"; + $rules .= "RewriteBase $home_root\n"; // props Chris Messina + $rules .= "#If you serve pages from behind a proxy you may want to change 'RewriteCond %{HTTPS} on' to something more sensible\n"; + if ( isset( $wp_cache_disable_utf8 ) == false || $wp_cache_disable_utf8 == 0 ) { + $charset = get_option('blog_charset') == '' ? 'UTF-8' : get_option('blog_charset'); + $rules .= "AddDefaultCharset {$charset}\n"; + } + + $rules .= "CONDITION_RULES"; + $rules .= "RewriteCond %{HTTP:Accept-Encoding} gzip\n"; + $rules .= "RewriteCond %{HTTPS} on\n"; + $rules .= "RewriteCond {$apache_root}{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index-https.html.gz -f\n"; + $rules .= "RewriteRule ^(.*) \"{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index-https.html.gz\" [L]\n\n"; + + $rules .= "CONDITION_RULES"; + $rules .= "RewriteCond %{HTTP:Accept-Encoding} gzip\n"; + $rules .= "RewriteCond %{HTTPS} !on\n"; + $rules .= "RewriteCond {$apache_root}{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index.html.gz -f\n"; + $rules .= "RewriteRule ^(.*) \"{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index.html.gz\" [L]\n\n"; + + $rules .= "CONDITION_RULES"; + $rules .= "RewriteCond %{HTTPS} on\n"; + $rules .= "RewriteCond {$apache_root}{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index-https.html -f\n"; + $rules .= "RewriteRule ^(.*) \"{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index-https.html\" [L]\n\n"; + + $rules .= "CONDITION_RULES"; + $rules .= "RewriteCond %{HTTPS} !on\n"; + $rules .= "RewriteCond {$apache_root}{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index.html -f\n"; + $rules .= "RewriteRule ^(.*) \"{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index.html\" [L]\n"; + $rules .= "\n"; + $rules = apply_filters( 'supercacherewriterules', $rules ); + + $rules = str_replace( "CONDITION_RULES", implode( "\n", $condition_rules ) . "\n", $rules ); + + $gziprules = "\n \n ForceType text/html\n FileETag None\n \n AddEncoding gzip .gz\n AddType text/html .gz\n\n"; + $gziprules .= "\n SetEnvIfNoCase Request_URI \.gz$ no-gzip\n\n"; + + // Default headers. + $headers = array( + 'Vary' => 'Accept-Encoding, Cookie', + 'Cache-Control' => 'max-age=3, must-revalidate', + ); + + // Allow users to override the Vary header with WPSC_VARY_HEADER. + if ( defined( 'WPSC_VARY_HEADER' ) && ! empty( WPSC_VARY_HEADER ) ) { + $headers['Vary'] = WPSC_VARY_HEADER; + } + + // Allow users to override Cache-control header with WPSC_CACHE_CONTROL_HEADER + if ( defined( 'WPSC_CACHE_CONTROL_HEADER' ) && ! empty( WPSC_CACHE_CONTROL_HEADER ) ) { + $headers['Cache-Control'] = WPSC_CACHE_CONTROL_HEADER; + } + + // Allow overriding headers with a filter. + $headers = apply_filters( 'wpsc_htaccess_mod_headers', $headers ); + + // Combine headers into a block of text. + $headers_text = implode( + "\n", + array_map( + function ( $key, $value ) { + return " Header set $key '" . addcslashes( $value, "'" ) . "'"; + }, + array_keys( $headers ), + array_values( $headers ) + ) + ); + + // Pack headers into gziprules (for historic reasons) - TODO refactor the values + // returned to better reflect the blocks being written. + if ( $headers_text != '' ) { + $gziprules .= "\n$headers_text\n\n"; + } + + // Deafult mod_expires rules. + $expires_rules = array( + 'ExpiresActive On', + 'ExpiresByType text/html A3', + ); + + // Allow overriding mod_expires rules with a filter. + $expires_rules = apply_filters( 'wpsc_htaccess_mod_expires', $expires_rules ); + + $gziprules .= "\n"; + $gziprules .= implode( + "\n", + array_map( + function ( $line ) { + return " $line"; + }, + $expires_rules + ) + ); + $gziprules .= "\n\n"; + + $gziprules .= "Options -Indexes\n"; + + return array( + 'document_root' => $document_root, + 'apache_root' => $apache_root, + 'home_path' => $home_path, + 'home_root' => $home_root, + 'home_root_lc' => $home_root_lc, + 'inst_root' => $inst_root, + 'wprules' => $wprules, + 'scrules' => $scrules, + 'condition_rules' => $condition_rules, + 'rules' => $rules, + 'gziprules' => $gziprules, + ); +} + +function add_mod_rewrite_rules() { + return update_mod_rewrite_rules(); +} + +function remove_mod_rewrite_rules() { + return update_mod_rewrite_rules( false ); +} + +function update_mod_rewrite_rules( $add_rules = true ) { + global $cache_path, $update_mod_rewrite_rules_error; + + $update_mod_rewrite_rules_error = false; + + if ( defined( "DO_NOT_UPDATE_HTACCESS" ) ) { + $update_mod_rewrite_rules_error = ".htaccess update disabled by admin: DO_NOT_UPDATE_HTACCESS defined"; + return false; + } + + if ( ! function_exists( 'get_home_path' ) ) { + include_once( ABSPATH . 'wp-admin/includes/file.php' ); // get_home_path() + include_once( ABSPATH . 'wp-admin/includes/misc.php' ); // extract_from_markers() + } + $home_path = trailingslashit( get_home_path() ); + $home_root = parse_url( get_bloginfo( 'url' ) ); + $home_root = isset( $home_root[ 'path' ] ) ? trailingslashit( $home_root[ 'path' ] ) : '/'; + if ( + $home_root == '/' && + $home_path != $_SERVER[ 'DOCUMENT_ROOT' ] + ) { + $home_path = $_SERVER[ 'DOCUMENT_ROOT' ]; + } elseif ( + $home_root != '/' && + $home_path != str_replace( '//', '/', $_SERVER[ 'DOCUMENT_ROOT' ] . $home_root ) && + is_dir( $_SERVER[ 'DOCUMENT_ROOT' ] . $home_root ) + ) { + $home_path = str_replace( '//', '/', $_SERVER[ 'DOCUMENT_ROOT' ] . $home_root ); + } + $home_path = trailingslashit( $home_path ); + + if ( ! file_exists( $home_path . ".htaccess" ) ) { + $update_mod_rewrite_rules_error = ".htaccess not found: {$home_path}.htaccess"; + return false; + } + + $generated_rules = wpsc_get_htaccess_info(); + $existing_rules = implode( "\n", extract_from_markers( $home_path . '.htaccess', 'WPSuperCache' ) ); + + $rules = $add_rules ? $generated_rules[ 'rules' ] : ''; + + if ( $existing_rules == $rules ) { + $update_mod_rewrite_rules_error = "rules have not changed"; + return true; + } + + if ( $generated_rules[ 'wprules' ] == '' ) { + $update_mod_rewrite_rules_error = "WordPress rules empty"; + return false; + } + + if ( empty( $rules ) ) { + return insert_with_markers( $home_path . '.htaccess', 'WPSuperCache', array() ); + } + + $url = trailingslashit( get_bloginfo( 'url' ) ); + $original_page = wp_remote_get( $url, array( 'timeout' => 60, 'blocking' => true ) ); + if ( is_wp_error( $original_page ) ) { + $update_mod_rewrite_rules_error = "Problem loading page"; + return false; + } + + $backup_filename = $cache_path . 'htaccess.' . wp_rand() . '.php'; + $backup_file_contents = file_get_contents( $home_path . '.htaccess' ); + file_put_contents( $backup_filename, "<" . "?php die(); ?" . ">" . $backup_file_contents ); + $existing_gzip_rules = implode( "\n", extract_from_markers( $cache_path . '.htaccess', 'supercache' ) ); + if ( $existing_gzip_rules != $generated_rules[ 'gziprules' ] ) { + insert_with_markers( $cache_path . '.htaccess', 'supercache', explode( "\n", $generated_rules[ 'gziprules' ] ) ); + } + $wprules = extract_from_markers( $home_path . '.htaccess', 'WordPress' ); + wpsc_remove_marker( $home_path . '.htaccess', 'WordPress' ); // remove original WP rules so SuperCache rules go on top + if ( insert_with_markers( $home_path . '.htaccess', 'WPSuperCache', explode( "\n", $rules ) ) && insert_with_markers( $home_path . '.htaccess', 'WordPress', $wprules ) ) { + $new_page = wp_remote_get( $url, array( 'timeout' => 60, 'blocking' => true ) ); + $restore_backup = false; + if ( is_wp_error( $new_page ) ) { + $restore_backup = true; + $update_mod_rewrite_rules_error = "Error testing page with new .htaccess rules: " . $new_page->get_error_message() . "."; + wp_cache_debug( 'update_mod_rewrite_rules: failed to update rules. error fetching second page: ' . $new_page->get_error_message() ); + } elseif ( $new_page[ 'body' ] != $original_page[ 'body' ] ) { + $restore_backup = true; + $update_mod_rewrite_rules_error = "Page test failed as pages did not match with new .htaccess rules."; + wp_cache_debug( 'update_mod_rewrite_rules: failed to update rules. page test failed as pages did not match. Files dumped in ' . $cache_path . ' for inspection.' ); + wp_cache_debug( 'update_mod_rewrite_rules: original page: 1-' . md5( $original_page[ 'body' ] ) . '.txt' ); + wp_cache_debug( 'update_mod_rewrite_rules: new page: 1-' . md5( $new_page[ 'body' ] ) . '.txt' ); + file_put_contents( $cache_path . '1-' . md5( $original_page[ 'body' ] ) . '.txt', $original_page[ 'body' ] ); + file_put_contents( $cache_path . '2-' . md5( $new_page[ 'body' ] ) . '.txt', $new_page[ 'body' ] ); + } + + if ( $restore_backup ) { + global $wp_cache_debug; + file_put_contents( $home_path . '.htaccess', $backup_file_contents ); + unlink( $backup_filename ); + if ( $wp_cache_debug ) { + $update_mod_rewrite_rules_error .= "
    See debug log for further details"; + } else { + $update_mod_rewrite_rules_error .= "
    Enable debug log on Debugging page for further details and try again"; + } + + return false; + } + } else { + file_put_contents( $home_path . '.htaccess', $backup_file_contents ); + unlink( $backup_filename ); + $update_mod_rewrite_rules_error = "problem inserting rules in .htaccess and original .htaccess restored"; + return false; + } + + return true; +} diff --git a/inc/lifecycle.php b/inc/lifecycle.php new file mode 100644 index 00000000..03b07651 --- /dev/null +++ b/inc/lifecycle.php @@ -0,0 +1,759 @@ +' . __( 'Warning', 'wp-super-cache' ) . ': ' . __( 'GZIP compression is enabled in WordPress, wp-cache will be bypassed until you disable gzip compression.', 'wp-super-cache' ); + return false; + } + + $lines = file( $wp_cache_config_file ); + foreach ( $lines as $line ) { + if ( preg_match( '/^\s*\$cache_enabled\s*=\s*true\s*;/', $line ) ) { + return true; + } + } + + return false; +} + +function wp_cache_remove_index() { + global $cache_path; + + if ( empty( $cache_path ) ) { + return; + } + + @unlink( $cache_path . "index.html" ); + @unlink( $cache_path . "supercache/index.html" ); + @unlink( $cache_path . "blogs/index.html" ); + if ( is_dir( $cache_path . "blogs" ) ) { + $dir = new DirectoryIterator( $cache_path . "blogs" ); + foreach( $dir as $fileinfo ) { + if ( $fileinfo->isDot() ) { + continue; + } + if ( $fileinfo->isDir() ) { + $directory = $cache_path . "blogs/" . $fileinfo->getFilename(); + if ( is_file( $directory . "/index.html" ) ) { + unlink( $directory . "/index.html" ); + } + if ( is_dir( $directory . "/meta" ) ) { + if ( is_file( $directory . "/meta/index.html" ) ) { + unlink( $directory . "/meta/index.html" ); + } + } + } + } + } +} + +function wp_cache_logout_all() { + global $current_user; + if ( isset( $_GET[ 'action' ] ) && $_GET[ 'action' ] == 'wpsclogout' && wp_verify_nonce( $_GET[ '_wpnonce' ], 'wpsc_logout' ) ) { + $user_id = $current_user->ID; + WP_Session_Tokens::destroy_all_for_all_users(); + wp_set_auth_cookie( $user_id, false, is_ssl() ); + update_site_option( 'wp_super_cache_index_detected', 2 ); + wp_redirect( admin_url() ); + } +} +if ( isset( $_GET[ 'action' ] ) && $_GET[ 'action' ] == 'wpsclogout' ) + add_action( 'admin_init', 'wp_cache_logout_all' ); + +function wp_cache_add_index_protection() { + global $cache_path, $blog_cache_dir; + + if ( is_dir( $cache_path ) && false == is_file( "$cache_path/index.html" ) ) { + $page = wp_remote_get( home_url( "/wp-content/cache/" ) ); + if ( false == is_wp_error( $page ) ) { + if ( false == get_site_option( 'wp_super_cache_index_detected' ) + && $page[ 'response' ][ 'code' ] == 200 + && stripos( $page[ 'body' ], 'index of' ) ) { + add_site_option( 'wp_super_cache_index_detected', 1 ); // only show this once + } + } + if ( ! function_exists( 'insert_with_markers' ) ) { + include_once( ABSPATH . 'wp-admin/includes/misc.php' ); + } + insert_with_markers( $cache_path . '.htaccess', "INDEX", array( 'Options -Indexes' ) ); + } + + $directories = array( $cache_path, $cache_path . '/supercache/', $cache_path . '/blogs/', $blog_cache_dir, $blog_cache_dir . "/meta" ); + foreach( $directories as $dir ) { + if ( false == is_dir( $dir ) ) + @mkdir( $dir ); + if ( is_dir( $dir ) && false == is_file( "$dir/index.html" ) ) { + $fp = @fopen( "$dir/index.html", 'w' ); + if ( $fp ) + fclose( $fp ); + } + } +} + +function wp_cache_add_site_cache_index() { + global $cache_path; + + wp_cache_add_index_protection(); // root and supercache + + if ( is_dir( $cache_path . "blogs" ) ) { + $dir = new DirectoryIterator( $cache_path . "blogs" ); + foreach( $dir as $fileinfo ) { + if ( $fileinfo->isDot() ) { + continue; + } + if ( $fileinfo->isDir() ) { + $directory = $cache_path . "blogs/" . $fileinfo->getFilename(); + if ( false == is_file( $directory . "/index.html" ) ) { + $fp = @fopen( $directory . "/index.html", 'w' ); + if ( $fp ) + fclose( $fp ); + } + if ( is_dir( $directory . "/meta" ) ) { + if ( false == is_file( $directory . "/meta/index.html" ) ) { + $fp = @fopen( $directory . "/meta/index.html", 'w' ); + if ( $fp ) + fclose( $fp ); + } + } + } + } + } +} + +function wp_cache_verify_cache_dir() { + global $cache_path, $blog_cache_dir; + + $dir = dirname($cache_path); + if ( !file_exists($cache_path) ) { + if ( !is_writeable_ACLSafe( $dir ) || !($dir = mkdir( $cache_path ) ) ) { + echo "" . __( 'Error', 'wp-super-cache' ) . ": " . sprintf( __( 'Your cache directory (%1$s) did not exist and couldn’t be created by the web server. Check %1$s permissions.', 'wp-super-cache' ), $dir ); + return false; + } + } + if ( !is_writeable_ACLSafe($cache_path)) { + echo "" . __( 'Error', 'wp-super-cache' ) . ": " . sprintf( __( 'Your cache directory (%1$s) or %2$s need to be writable for this plugin to work. Double-check it.', 'wp-super-cache' ), $cache_path, $dir ); + return false; + } + + if ( '/' != substr($cache_path, -1)) { + $cache_path .= '/'; + } + + if( false == is_dir( $blog_cache_dir ) ) { + @mkdir( $cache_path . "blogs" ); + if( $blog_cache_dir != $cache_path . "blogs/" ) + @mkdir( $blog_cache_dir ); + } + + if( false == is_dir( $blog_cache_dir . 'meta' ) ) + @mkdir( $blog_cache_dir . 'meta' ); + + wp_cache_add_index_protection(); + return true; +} + +function wp_cache_verify_config_file() { + global $wp_cache_config_file, $wp_cache_config_file_sample, $sem_id, $cache_path; + global $WPSC_HTTP_HOST; + + $new = false; + $dir = dirname($wp_cache_config_file); + + if ( file_exists($wp_cache_config_file) ) { + $lines = implode( ' ', file( $wp_cache_config_file ) ); + if ( ! str_contains( $lines, 'WPCACHEHOME' ) ) { + if( is_writeable_ACLSafe( $wp_cache_config_file ) ) { + @unlink( $wp_cache_config_file ); + } else { + echo "" . __( 'Error', 'wp-super-cache' ) . ": " . sprintf( __( 'Your WP-Cache config file (%s) is out of date and not writable by the Web server. Please delete it and refresh this page.', 'wp-super-cache' ), $wp_cache_config_file ); + return false; + } + } + } elseif( !is_writeable_ACLSafe($dir)) { + echo "" . __( 'Error', 'wp-super-cache' ) . ": " . sprintf( __( 'Configuration file missing and %1$s directory (%2$s) is not writable by the web server. Check its permissions.', 'wp-super-cache' ), WP_CONTENT_DIR, $dir ); + return false; + } + + if ( !file_exists($wp_cache_config_file) ) { + if ( !file_exists($wp_cache_config_file_sample) ) { + echo "" . __( 'Error', 'wp-super-cache' ) . ": " . sprintf( __( 'Sample WP-Cache config file (%s) does not exist. Verify your installation.', 'wp-super-cache' ), $wp_cache_config_file_sample ); + return false; + } + copy($wp_cache_config_file_sample, $wp_cache_config_file); + $dir = str_replace( str_replace( '\\', '/', WP_CONTENT_DIR ), '', str_replace( '\\', '/', dirname( __DIR__ ) ) ); + if ( is_file( dirname( __DIR__ ) . '/wp-cache-config-sample.php' ) ) { + wp_cache_replace_line('define\(\ \'WPCACHEHOME', "\tdefine( 'WPCACHEHOME', WP_CONTENT_DIR . \"{$dir}/\" );", $wp_cache_config_file); + } elseif ( is_file( dirname( __DIR__ ) . '/wp-super-cache/wp-cache-config-sample.php' ) ) { + wp_cache_replace_line('define\(\ \'WPCACHEHOME', "\tdefine( 'WPCACHEHOME', WP_CONTENT_DIR . \"{$dir}/wp-super-cache/\" );", $wp_cache_config_file); + } + $new = true; + } + if ( $sem_id == 5419 && $cache_path != '' && $WPSC_HTTP_HOST != '' ) { + $sem_id = crc32( $WPSC_HTTP_HOST . $cache_path ) & 0x7fffffff; + wp_cache_replace_line('sem_id', '$sem_id = ' . $sem_id . ';', $wp_cache_config_file); + } + if ( $new ) { + require($wp_cache_config_file); + wpsc_set_default_gc( true ); + } + return true; +} + +function wp_cache_create_advanced_cache() { + global $wpsc_advanced_cache_filename, $wpsc_advanced_cache_dist_filename; + if ( file_exists( ABSPATH . 'wp-config.php') ) { + $global_config_file = ABSPATH . 'wp-config.php'; + } elseif ( file_exists( dirname( ABSPATH ) . '/wp-config.php' ) ) { + $global_config_file = dirname( ABSPATH ) . '/wp-config.php'; + } elseif ( defined( 'DEBIAN_FILE' ) && file_exists( DEBIAN_FILE ) ) { + $global_config_file = DEBIAN_FILE; + } else { + die('Cannot locate wp-config.php'); + } + + $line = 'define( \'WPCACHEHOME\', \'' . dirname( __DIR__ ) . '/\' );'; + + if ( ! apply_filters( 'wpsc_enable_wp_config_edit', true ) ) { + echo '

    ' . __( 'Warning', 'wp-super-cache' ) . "! " . sprintf( __( 'Not allowed to edit %s per configuration.', 'wp-super-cache' ), $global_config_file ) . "

    "; + return false; + } + + if ( + ! strpos( file_get_contents( $global_config_file ), "WPCACHEHOME" ) || + ( + defined( 'WPCACHEHOME' ) && + ( + constant( 'WPCACHEHOME' ) == '' || + ( + constant( 'WPCACHEHOME' ) != '' && + ! file_exists( constant( 'WPCACHEHOME' ) . '/wp-cache.php' ) + ) + ) + ) + ) { + if ( + ! is_writeable_ACLSafe( $global_config_file ) || + ! wp_cache_replace_line( 'define *\( *\'WPCACHEHOME\'', $line, $global_config_file ) + ) { + echo '

    ' . __( 'Warning', 'wp-super-cache' ) . "! " . sprintf( __( 'Could not update %s! WPCACHEHOME must be set in config file.', 'wp-super-cache' ), $global_config_file ) . "

    "; + return false; + } + } + $ret = true; + + if ( file_exists( $wpsc_advanced_cache_filename ) ) { + $file = file_get_contents( $wpsc_advanced_cache_filename ); + if ( + ! strpos( $file, "WP SUPER CACHE 0.8.9.1" ) && + ! strpos( $file, "WP SUPER CACHE 1.2" ) + ) { + return false; + } + } + + $file = file_get_contents( $wpsc_advanced_cache_dist_filename ); + $fp = @fopen( $wpsc_advanced_cache_filename, 'w' ); + if( $fp ) { + // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fwrite + fwrite( $fp, $file ); + fclose( $fp ); + do_action( 'wpsc_created_advanced_cache' ); + } else { + $ret = false; + } + return $ret; +} + +/** + * Identify the advanced cache plugin used + * + * @return string The name of the advanced cache plugin, BOOST, WPSC or OTHER. + */ +function wpsc_identify_advanced_cache() { + global $wpsc_advanced_cache_filename; + if ( ! file_exists( $wpsc_advanced_cache_filename ) ) { + return 'NONE'; + } + $contents = file_get_contents( $wpsc_advanced_cache_filename ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents + + if ( false !== str_contains( $contents, 'Boost Cache Plugin' ) ) { + return 'BOOST'; + } + + if ( str_contains( $contents, 'WP SUPER CACHE 0.8.9.1' ) || str_contains( $contents, 'WP SUPER CACHE 1.2' ) ) { + return 'WPSC'; + } + + return 'OTHER'; +} + +function wpsc_check_advanced_cache() { + global $wpsc_advanced_cache_filename; + + $ret = false; + $other_advanced_cache = false; + if ( file_exists( $wpsc_advanced_cache_filename ) ) { + $cache_type = wpsc_identify_advanced_cache(); + switch ( $cache_type ) { + case 'WPSC': + return true; + case 'BOOST': + $other_advanced_cache = 'BOOST'; + break; + default: + $other_advanced_cache = true; + break; + } + } else { + $ret = wp_cache_create_advanced_cache(); + } + + if ( false == $ret ) { + if ( $other_advanced_cache === 'BOOST' ) { + wpsc_deactivate_boost_cache_notice(); + } elseif ( $other_advanced_cache ) { + echo '

    ' . __( 'Warning! You may not be allowed to use this plugin on your site.', 'wp-super-cache' ) . "

    "; + echo '

    ' . + sprintf( + __( 'The file %s was created by another plugin or by your system administrator. Please examine the file carefully by FTP or SSH and consult your hosting documentation. ', 'wp-super-cache' ), + $wpsc_advanced_cache_filename + ) . + '

    '; + echo '

    ' . + __( 'If it was created by another caching plugin please uninstall that plugin first before activating WP Super Cache. If the file is not removed by that action you should delete the file manually.', 'wp-super-cache' ), + '

    '; + echo '

    ' . + __( 'If you need support for this problem contact your hosting provider.', 'wp-super-cache' ), + '

    '; + echo '
    '; + } elseif ( ! is_writeable_ACLSafe( $wpsc_advanced_cache_filename ) ) { + echo '

    ' . __( 'Warning', 'wp-super-cache' ) . "! " . sprintf( __( '%s/advanced-cache.php cannot be updated.', 'wp-super-cache' ), WP_CONTENT_DIR ) . "

    "; + echo '
      '; + echo "
    1. " . + sprintf( + __( 'Make %1$s writable using the chmod command through your ftp or server software. (chmod 777 %1$s) and refresh this page. This is only a temporary measure and you’ll have to make it read only afterwards again. (Change 777 to 755 in the previous command)', 'wp-super-cache' ), + WP_CONTENT_DIR + ) . + "
    2. "; + echo "
    3. " . sprintf( __( 'Refresh this page to update %s/advanced-cache.php', 'wp-super-cache' ), WP_CONTENT_DIR ) . "
    "; + echo sprintf( __( 'If that doesn’t work, make sure the file %s/advanced-cache.php doesn’t exist:', 'wp-super-cache' ), WP_CONTENT_DIR ) . "
      "; + echo "
    "; + echo '
    '; + } + return false; + } + return true; +} + +function wp_cache_check_global_config() { + global $wp_cache_check_wp_config; + + if ( !isset( $wp_cache_check_wp_config ) ) + return true; + + + if ( file_exists( ABSPATH . 'wp-config.php') ) { + $global_config_file = ABSPATH . 'wp-config.php'; + } else { + $global_config_file = dirname( ABSPATH ) . '/wp-config.php'; + } + + if ( preg_match( '#^\s*(define\s*\(\s*[\'"]WP_CACHE[\'"]|const\s+WP_CACHE\s*=)#m', file_get_contents( $global_config_file ) ) === 1 ) { // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents + if ( defined( 'WP_CACHE' ) && ! constant( 'WP_CACHE' ) ) { + ?> +

    +

    +

    define('WP_CACHE', true);

    + ' . __( "

    WP_CACHE constant set to false

    The WP_CACHE constant is used by WordPress to load the code that serves cached pages. Unfortunately, it is set to false. Please edit your wp-config.php and add or edit the following line above the final require_once command:

    define('WP_CACHE', true);

    ", 'wp-super-cache' ) . ""; + } else { + echo '

    ' . __( "Error: WP_CACHE is not enabled in your wp-config.php file and I couldn’t modify it.", 'wp-super-cache' ) . "

    "; + echo "

    " . sprintf( __( "Edit %s and add the following line:
    define('WP_CACHE', true);
    Otherwise, WP-Cache will not be executed by WordPress core. ", 'wp-super-cache' ), $global_config_file ) . "

    "; + } + return false; + } else { + echo "
    " . __( '

    WP_CACHE constant added to wp-config.php

    If you continue to see this warning message please see point 5 of the Troubleshooting Guide. The WP_CACHE line must be moved up.', 'wp-super-cache' ) . "

    "; + } + return true; +} + +function wp_cache_disable_plugin( $delete_config_file = true ) { + global $wp_rewrite; + if ( file_exists( ABSPATH . 'wp-config.php') ) { + $global_config_file = ABSPATH . 'wp-config.php'; + } else { + $global_config_file = dirname(ABSPATH) . '/wp-config.php'; + } + + if ( apply_filters( 'wpsc_enable_wp_config_edit', true ) ) { + $line = 'define(\'WP_CACHE\', true);'; + if ( + strpos( file_get_contents( $global_config_file ), $line ) && + ( + ! is_writeable_ACLSafe( $global_config_file ) || + ! wp_cache_replace_line( 'define*\(*\'WP_CACHE\'', '', $global_config_file ) + ) + ) { + wp_die( "Could not remove WP_CACHE define from $global_config_file. Please edit that file and remove the line containing the text 'WP_CACHE'. Then refresh this page." ); + } + $line = 'define( \'WPCACHEHOME\','; + if ( + strpos( file_get_contents( $global_config_file ), $line ) && + ( + ! is_writeable_ACLSafe( $global_config_file ) || + ! wp_cache_replace_line( 'define *\( *\'WPCACHEHOME\'', '', $global_config_file ) + ) + ) { + wp_die( "Could not remove WPCACHEHOME define from $global_config_file. Please edit that file and remove the line containing the text 'WPCACHEHOME'. Then refresh this page." ); + } + } elseif ( function_exists( 'wp_cache_debug' ) ) { + wp_cache_debug( 'wp_cache_disable_plugin: not allowed to edit wp-config.php per configuration.' ); + } + + uninstall_supercache( WP_CONTENT_DIR . '/cache' ); + $file_not_deleted = array(); + wpsc_remove_advanced_cache(); + if ( @file_exists( WP_CONTENT_DIR . "/advanced-cache.php" ) ) { + $file_not_deleted[] = WP_CONTENT_DIR . '/advanced-cache.php'; + } + if ( $delete_config_file && @file_exists( WPCACHECONFIGPATH . "/wp-cache-config.php" ) ) { + if ( false == unlink( WPCACHECONFIGPATH . "/wp-cache-config.php" ) ) + $file_not_deleted[] = WPCACHECONFIGPATH . '/wp-cache-config.php'; + } + if ( ! empty( $file_not_deleted ) ) { + $msg = __( "Dear User,\n\nWP Super Cache was removed from your blog or deactivated but some files could\nnot be deleted.\n\n", 'wp-super-cache' ); + foreach ( $file_not_deleted as $path ) { + $msg .= "{$path}\n"; + } + $msg .= "\n"; + $msg .= sprintf( __( "You should delete these files manually.\nYou may need to change the permissions of the files or parent directory.\nYou can read more about this in the Codex at\n%s\n\nThank you.", 'wp-super-cache' ), 'https://codex.wordpress.org/Changing_File_Permissions#About_Chmod' ); + + if ( apply_filters( 'wpsc_send_uninstall_errors', 1 ) ) { + wp_mail( get_option( 'admin_email' ), __( 'WP Super Cache: could not delete files', 'wp-super-cache' ), $msg ); + } + } + extract( wpsc_get_htaccess_info() ); // $document_root, $apache_root, $home_path, $home_root, $home_root_lc, $inst_root, $wprules, $scrules, $condition_rules, $rules, $gziprules + // @phan-suppress-next-line PhanTypeSuspiciousStringExpression -- $home_path is set via extract() + if ( $scrules != '' && insert_with_markers( $home_path.'.htaccess', 'WPSuperCache', array() ) ) { + $wp_rewrite->flush_rules(); + } elseif( $scrules != '' ) { + wp_mail( get_option( 'admin_email' ), __( 'Supercache Uninstall Problems', 'wp-super-cache' ), sprintf( __( "Dear User,\n\nWP Super Cache was removed from your blog but the mod_rewrite rules\nin your .htaccess were not.\n\nPlease edit the following file and remove the code\nbetween 'BEGIN WPSuperCache' and 'END WPSuperCache'. Please backup the file first!\n\n%s\n\nRegards,\nWP Super Cache Plugin\nhttps://wordpress.org/plugins/wp-super-cache/", 'wp-super-cache' ), ABSPATH . '/.htaccess' ) ); + } +} + +function uninstall_supercache( $folderPath ) { // from http://www.php.net/manual/en/function.rmdir.php + if ( trailingslashit( constant( 'ABSPATH' ) ) == trailingslashit( $folderPath ) ) + return false; + if ( @is_dir ( $folderPath ) ) { + $dh = @opendir($folderPath); + while( false !== ( $value = @readdir( $dh ) ) ) { + if ( $value != "." && $value != ".." ) { + $value = $folderPath . "/" . $value; + if ( @is_dir ( $value ) ) { + uninstall_supercache( $value ); + } else { + @unlink( $value ); + } + } + } + return @rmdir( $folderPath ); + } else { + return false; + } +} + +function wpsc_set_default_gc( $force = false ) { + global $cache_path, $wp_cache_shutdown_gc, $cache_schedule_type; + + if ( isset( $wp_cache_shutdown_gc ) && $wp_cache_shutdown_gc == 1 ) { + return false; + } + + if ( $force ) { + unset( $cache_schedule_type ); + $timestamp = wp_next_scheduled( 'wp_cache_gc' ); + if ( $timestamp ) { + wp_unschedule_event( $timestamp, 'wp_cache_gc' ); + } + } + + // set up garbage collection with some default settings + if ( false == isset( $cache_schedule_type ) && false == wp_next_scheduled( 'wp_cache_gc' ) ) { + $cache_schedule_type = 'interval'; + $cache_time_interval = 600; + $cache_max_time = 1800; + $cache_schedule_interval = 'hourly'; + $cache_gc_email_me = 0; + wp_cache_setting( 'cache_schedule_type', $cache_schedule_type ); + wp_cache_setting( 'cache_time_interval', $cache_time_interval ); + wp_cache_setting( 'cache_max_time', $cache_max_time ); + wp_cache_setting( 'cache_schedule_interval', $cache_schedule_interval ); + wp_cache_setting( 'cache_gc_email_me', $cache_gc_email_me ); + + wp_schedule_single_event( time() + 600, 'wp_cache_gc' ); + } + + return true; +} + +function wpsc_update_check() { + global $wpsc_version; + + if ( + ! isset( $wpsc_version ) || + $wpsc_version != 169 + ) { + wp_cache_setting( 'wpsc_version', 169 ); + global $wp_cache_debug_log, $cache_path; + $log_file = $cache_path . str_replace('/', '', str_replace('..', '', $wp_cache_debug_log)); + if ( ! file_exists( $log_file ) ) { + return false; + } + @unlink( $log_file ); + wp_cache_debug( 'wpsc_update_check: Deleted old log file on plugin update.' ); + } +} +add_action( 'admin_init', 'wpsc_update_check' ); diff --git a/inc/plugins-cookies.php b/inc/plugins-cookies.php new file mode 100644 index 00000000..f603bc55 --- /dev/null +++ b/inc/plugins-cookies.php @@ -0,0 +1,134 @@ + $details ) { + $key = "cache_" . $details[ 'key' ]; + if ( isset( $GLOBALS[ $key ] ) && $GLOBALS[ $key ] == 1 ) { + $list[ $t ][ 'enabled' ] = true; + } else { + $list[ $t ][ 'enabled' ] = false; + } + + $list[ $t ]['desc'] = strip_tags( $list[ $t ]['desc'] ?? '' ); // phpcs:ignore WordPress.WP.AlternativeFunctions.strip_tags_strip_tags + $list[ $t ]['title'] = strip_tags( $list[ $t ]['title'] ?? '' ); // phpcs:ignore WordPress.WP.AlternativeFunctions.strip_tags_strip_tags + } + return $list; +} + +function wpsc_update_plugin_list( $update ) { + $list = do_cacheaction( 'wpsc_filter_list' ); + foreach( $update as $key => $enabled ) { + $plugin_toggle = "cache_{$key}"; + if ( isset( $GLOBALS[ $plugin_toggle ] ) || isset( $list[ $key ] ) ) { + wp_cache_setting( $plugin_toggle, (int)$enabled ); + } + } +} + +function wpsc_add_plugin( $file ) { + global $wpsc_plugins; + if ( substr( $file, 0, strlen( ABSPATH ) ) == ABSPATH ) { + $file = substr( $file, strlen( ABSPATH ) ); // remove ABSPATH + } + if ( + ! isset( $wpsc_plugins ) || + ! is_array( $wpsc_plugins ) || + ! in_array( $file, $wpsc_plugins ) + ) { + $wpsc_plugins[] = $file; + wp_cache_setting( 'wpsc_plugins', $wpsc_plugins ); + } + return $file; +} +add_action( 'wpsc_add_plugin', 'wpsc_add_plugin' ); + +function wpsc_delete_plugin( $file ) { + global $wpsc_plugins; + if ( substr( $file, 0, strlen( ABSPATH ) ) == ABSPATH ) { + $file = substr( $file, strlen( ABSPATH ) ); // remove ABSPATH + } + if ( + isset( $wpsc_plugins ) && + is_array( $wpsc_plugins ) && + in_array( $file, $wpsc_plugins ) + ) { + unset( $wpsc_plugins[ array_search( $file, $wpsc_plugins ) ] ); + wp_cache_setting( 'wpsc_plugins', $wpsc_plugins ); + } + return $file; +} +add_action( 'wpsc_delete_plugin', 'wpsc_delete_plugin' ); + +function wpsc_get_plugins() { + global $wpsc_plugins; + return $wpsc_plugins; +} + +function wpsc_add_cookie( $name ) { + global $wpsc_cookies; + if ( + ! isset( $wpsc_cookies ) || + ! is_array( $wpsc_cookies ) || + ! in_array( $name, $wpsc_cookies ) + ) { + $wpsc_cookies[] = $name; + wp_cache_setting( 'wpsc_cookies', $wpsc_cookies ); + } + return $name; +} +add_action( 'wpsc_add_cookie', 'wpsc_add_cookie' ); + +function wpsc_delete_cookie( $name ) { + global $wpsc_cookies; + if ( + isset( $wpsc_cookies ) && + is_array( $wpsc_cookies ) && + in_array( $name, $wpsc_cookies ) + ) { + unset( $wpsc_cookies[ array_search( $name, $wpsc_cookies ) ] ); + wp_cache_setting( 'wpsc_cookies', $wpsc_cookies ); + } + return $name; +} +add_action( 'wpsc_delete_cookie', 'wpsc_delete_cookie' ); + +function wpsc_get_cookies() { + global $wpsc_cookies; + return $wpsc_cookies; +} + +function wpsc_get_extra_cookies() { + global $wpsc_cookies; + if ( + is_array( $wpsc_cookies ) && + ! empty( $wpsc_cookies ) + ) { + return '|' . implode( '|', $wpsc_cookies ); + } else { + return ''; + } +} diff --git a/inc/preload.php b/inc/preload.php new file mode 100644 index 00000000..80e75b3b --- /dev/null +++ b/inc/preload.php @@ -0,0 +1,722 @@ + false, + 'history' => array(), + 'next' => false, + 'previous' => null, + ); + + $filename = wpsc_get_preload_status_file_path(); + if ( file_exists( $filename ) ) { + $data = wp_json_file_decode( $filename, array( 'associative' => true ) ); + if ( is_array( $data ) ) { + $status = $data; + } + } + + if ( $include_next ) { + $status['next'] = wpsc_get_next_preload_time(); + } + + return $status; +} + +/** + * Update the preload status file during a preload. + */ +function wpsc_update_active_preload( $group = null, $progress = null, $url = null ) { + $preload_status = wpsc_get_preload_status(); + + $preload_status['running'] = true; + + // Add the new entry to the history. + array_unshift( + $preload_status['history'], + array( + 'group' => $group, + 'progress' => $progress, + 'url' => $url, + ) + ); + + // Limit to 5 in the history. + $preload_status['history'] = array_slice( $preload_status['history'], 0, 5 ); + + $filename = wpsc_get_preload_status_file_path(); + // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_file_put_contents + if ( false === file_put_contents( $filename, wp_json_encode( $preload_status, JSON_UNESCAPED_SLASHES ) ) ) { + wp_cache_debug( "wpsc_update_active_preload: failed to write to $filename" ); + } +} + +/** + * Update the preload status to indicate it is idle. If a finish time is specified, store it. + */ +function wpsc_update_idle_preload( $finish_time = null ) { + $preload_status = wpsc_get_preload_status(); + + $preload_status['running'] = false; + $preload_status['history'] = array(); + + if ( ! empty( $finish_time ) ) { + $preload_status['previous'] = $finish_time; + } + + $filename = wpsc_get_preload_status_file_path(); + // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_file_put_contents + if ( false === file_put_contents( $filename, wp_json_encode( $preload_status, JSON_UNESCAPED_SLASHES ) ) ) { + wp_cache_debug( "wpsc_update_idle_preload: failed to write to $filename" ); + } +} + +function wp_cron_preload_cache() { + global $wpdb, $wp_cache_preload_interval, $wp_cache_preload_posts, $wp_cache_preload_email_me, $wp_cache_preload_email_volume, $cache_path, $wp_cache_preload_taxonomies; + + // check if stop_preload.txt exists and preload should be stopped. + // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged + if ( @file_exists( $cache_path . 'stop_preload.txt' ) ) { + wp_cache_debug( 'wp_cron_preload_cache: preload cancelled. Aborting preload.' ); + wpsc_reset_preload_settings(); + return true; + } + + /* + * The mutex file is used to prevent multiple preload processes from running at the same time. + * If the mutex file is found, the preload process will wait 3-8 seconds and then check again. + * If the mutex file is still found, the preload process will abort. + * If the mutex file is not found, the preload process will create the mutex file and continue. + * The mutex file is deleted at the end of the preload process. + * The mutex file is deleted if it is more than 10 minutes old. + * The mutex file should only be deleted by the preload process that created it. + * If the mutex file is deleted by another process, another preload process may start. + */ + $mutex = $cache_path . "preload_mutex.tmp"; + if ( @file_exists( $mutex ) ) { // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged + sleep( 3 + wp_rand( 1, 5 ) ); + // check again just in case another preload process is still running. + if ( @file_exists( $mutex ) && @filemtime( $mutex ) > ( time() - 600 ) ) { // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged + wp_cache_debug( 'wp_cron_preload_cache: preload mutex found and less than 600 seconds old. Aborting preload.', 1 ); + return true; + } else { + wp_cache_debug( 'wp_cron_preload_cache: old preload mutex found and deleted. Preload continues.', 1 ); + @unlink( $mutex ); + } + } + $fp = @fopen( $mutex, 'w' ); + @fclose( $fp ); + + $counter = get_option( 'preload_cache_counter' ); + $c = $counter[ 'c' ]; + + if ( $wp_cache_preload_email_volume == 'none' && $wp_cache_preload_email_me == 1 ) { + $wp_cache_preload_email_me = 0; + wp_cache_setting( 'wp_cache_preload_email_me', 0 ); + } + + $just_started_preloading = false; + + /* + * Preload taxonomies first. + * + */ + if ( isset( $wp_cache_preload_taxonomies ) && $wp_cache_preload_taxonomies ) { + wp_cache_debug( 'wp_cron_preload_cache: doing taxonomy preload.', 5 ); + $taxonomies = apply_filters( + 'wp_cache_preload_taxonomies', + array( + 'post_tag' => 'tag', + 'category' => 'category', + ) + ); + + $preload_more_taxonomies = false; + + foreach ( $taxonomies as $taxonomy => $path ) { + $taxonomy_filename = $cache_path . 'taxonomy_' . $taxonomy . '.txt'; + + // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged + if ( false === @file_exists( $taxonomy_filename ) ) { + + if ( ! $just_started_preloading && $wp_cache_preload_email_me ) { + // translators: 1: site url + wp_mail( get_option( 'admin_email' ), sprintf( __( '[%1$s] Cache Preload Started', 'wp-super-cache' ), home_url(), '' ), ' ' ); + } + + $just_started_preloading = true; + $out = ''; + $records = get_terms( $taxonomy ); + foreach ( $records as $term ) { + $out .= get_term_link( $term ) . "\n"; + } + // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fopen + $fp = fopen( $taxonomy_filename, 'w' ); + if ( $fp ) { + // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fwrite + fwrite( $fp, $out ); + // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fclose + fclose( $fp ); + } + $details = explode( "\n", $out ); + } else { + // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents + $details = explode( "\n", file_get_contents( $taxonomy_filename ) ); + } + if ( count( $details ) > 0 && $details[0] !== '' ) { + $rows = array_splice( $details, 0, WPSC_PRELOAD_POST_COUNT ); + if ( $wp_cache_preload_email_me && $wp_cache_preload_email_volume === 'many' ) { + // translators: 1: Site URL, 2: Taxonomy name, 3: Number of posts done, 4: Number of posts to preload + wp_mail( get_option( 'admin_email' ), sprintf( __( '[%1$s] Refreshing %2$s taxonomy from %3$d to %4$d', 'wp-super-cache' ), home_url(), $taxonomy, $c, ( $c + WPSC_PRELOAD_POST_COUNT ) ), 'Refreshing: ' . print_r( $rows, 1 ) ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_print_r + } + + foreach ( $rows as $url ) { + set_time_limit( 60 ); + if ( $url === '' ) { + continue; + } + + $url_info = wp_parse_url( $url ); + $dir = get_supercache_dir() . $url_info['path']; + wp_cache_debug( "wp_cron_preload_cache: delete $dir" ); + wpsc_delete_files( $dir ); + prune_super_cache( trailingslashit( $dir ) . 'feed/', true ); + prune_super_cache( trailingslashit( $dir ) . 'page/', true ); + + wpsc_update_active_preload( 'taxonomies', $taxonomy, $url ); + + wp_remote_get( + $url, + array( + 'timeout' => 60, + 'blocking' => true, + ) + ); + wp_cache_debug( "wp_cron_preload_cache: fetched $url" ); + sleep( WPSC_PRELOAD_POST_INTERVAL ); + + if ( ! wpsc_is_preload_active() ) { + wp_cache_debug( 'wp_cron_preload_cache: cancelling preload process.' ); + wpsc_reset_preload_settings(); + + if ( $wp_cache_preload_email_me ) { + // translators: Home URL of website + wp_mail( get_option( 'admin_email' ), sprintf( __( '[%1$s] Cache Preload Stopped', 'wp-super-cache' ), home_url(), '' ), ' ' ); + } + wpsc_update_idle_preload( time() ); + return true; + } + } + // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fopen + $fp = fopen( $taxonomy_filename, 'w' ); + if ( $fp ) { + // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fwrite + fwrite( $fp, implode( "\n", $details ) ); + // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fclose + fclose( $fp ); + } + } + + if ( + $preload_more_taxonomies === false && + count( $details ) > 0 && + $details[0] !== '' + ) { + $preload_more_taxonomies = true; + } + } + + if ( $preload_more_taxonomies === true ) { + wpsc_schedule_next_preload(); + sleep( WPSC_PRELOAD_LOOP_INTERVAL ); + return true; + } + } elseif ( $c === 0 && $wp_cache_preload_email_me ) { + // translators: Home URL of website + wp_mail( get_option( 'admin_email' ), sprintf( __( '[%1$s] Cache Preload Started', 'wp-super-cache' ), home_url(), '' ), ' ' ); + } + + /* + * + * Preload posts now. + * + * The preload_cache_counter has two values: + * c = the number of posts we've preloaded after this loop. + * t = the time we started preloading in the current loop. + * + * $c is set to the value of preload_cache_counter['c'] at the start of the function + * before it is incremented by WPSC_PRELOAD_POST_COUNT here. + * The time is used to check if preloading has stalled in check_up_on_preloading(). + */ + + update_option( + 'preload_cache_counter', + array( + 'c' => ( $c + WPSC_PRELOAD_POST_COUNT ), + 't' => time(), + ) + ); + + if ( $wp_cache_preload_posts == 'all' || $c < $wp_cache_preload_posts ) { + $types = wpsc_get_post_types(); + $posts = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE ( post_type IN ( $types ) ) AND post_status = 'publish' ORDER BY ID DESC LIMIT %d," . WPSC_PRELOAD_POST_COUNT, $c ) ); // phpcs:ignore + wp_cache_debug( 'wp_cron_preload_cache: got ' . WPSC_PRELOAD_POST_COUNT . ' posts from position ' . $c ); + } else { + wp_cache_debug( "wp_cron_preload_cache: no more posts to get. Limit ($wp_cache_preload_posts) reached.", 5 ); + $posts = false; + } + if ( !isset( $wp_cache_preload_email_volume ) ) + $wp_cache_preload_email_volume = 'medium'; + + if ( $posts ) { + if ( get_option( 'show_on_front' ) == 'page' ) { + $page_on_front = get_option( 'page_on_front' ); + $page_for_posts = get_option( 'page_for_posts' ); + } else { + $page_on_front = $page_for_posts = 0; + } + if ( $wp_cache_preload_email_me && $wp_cache_preload_email_volume === 'many' ) { + /* translators: 1: home url, 2: start post id, 3: end post id */ + wp_mail( get_option( 'admin_email' ), sprintf( __( '[%1$s] Refreshing posts from %2$d to %3$d', 'wp-super-cache' ), home_url(), $c, ( $c + WPSC_PRELOAD_POST_COUNT ) ), ' ' ); + } + $msg = ''; + $count = $c + 1; + + foreach( $posts as $post_id ) { + set_time_limit( 60 ); + if ( $page_on_front != 0 && ( $post_id == $page_on_front || $post_id == $page_for_posts ) ) + continue; + $url = get_permalink( $post_id ); + + if ( ! is_string( $url ) ) { + wp_cache_debug( "wp_cron_preload_cache: skipped $post_id. Expected a URL, received: " . gettype( $url ) ); + continue; + } + + if ( wp_cache_is_rejected( $url ) ) { + wp_cache_debug( "wp_cron_preload_cache: skipped $url per rejected strings setting" ); + continue; + } + clear_post_supercache( $post_id ); + + wpsc_update_active_preload( 'posts', $count, $url ); + + if ( ! wpsc_is_preload_active() ) { + wp_cache_debug( 'wp_cron_preload_cache: cancelling preload process.' ); + wpsc_reset_preload_settings(); + + if ( $wp_cache_preload_email_me ) { + // translators: Home URL of website + wp_mail( get_option( 'admin_email' ), sprintf( __( '[%1$s] Cache Preload Stopped', 'wp-super-cache' ), home_url(), '' ), ' ' ); + } + + wpsc_update_idle_preload( time() ); + return true; + } + + $msg .= "$url\n"; + wp_remote_get( $url, array('timeout' => 60, 'blocking' => true ) ); + wp_cache_debug( "wp_cron_preload_cache: fetched $url", 5 ); + ++$count; + sleep( WPSC_PRELOAD_POST_INTERVAL ); + } + + if ( $wp_cache_preload_email_me && ( $wp_cache_preload_email_volume === 'medium' || $wp_cache_preload_email_volume === 'many' ) ) { + // translators: 1: home url, 2: number of posts refreshed + wp_mail( get_option( 'admin_email' ), sprintf( __( '[%1$s] %2$d posts refreshed', 'wp-super-cache' ), home_url(), ( $c + WPSC_PRELOAD_POST_COUNT ) ), __( 'Refreshed the following posts:', 'wp-super-cache' ) . "\n$msg" ); + } + + wpsc_schedule_next_preload(); + wpsc_delete_files( get_supercache_dir() ); + sleep( WPSC_PRELOAD_LOOP_INTERVAL ); + } else { + $msg = ''; + wpsc_reset_preload_counter(); + if ( (int)$wp_cache_preload_interval && defined( 'DOING_CRON' ) ) { + if ( $wp_cache_preload_email_me ) + $msg = sprintf( __( 'Scheduling next preload refresh in %d minutes.', 'wp-super-cache' ), (int)$wp_cache_preload_interval ); + wp_cache_debug( "wp_cron_preload_cache: no more posts. scheduling next preload in $wp_cache_preload_interval minutes.", 5 ); + wp_schedule_single_event( time() + ( (int)$wp_cache_preload_interval * 60 ), 'wp_cache_full_preload_hook' ); + } + global $file_prefix, $cache_max_time; + if ( $wp_cache_preload_interval > 0 ) { + $cache_max_time = (int)$wp_cache_preload_interval * 60; // fool the GC into expiring really old files + } else { + $cache_max_time = 86400; // fool the GC into expiring really old files + } + if ( $wp_cache_preload_email_me ) + wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Cache Preload Completed', 'wp-super-cache' ), home_url() ), __( "Cleaning up old supercache files.", 'wp-super-cache' ) . "\n" . $msg ); + if ( $cache_max_time > 0 ) { // GC is NOT disabled + wp_cache_debug( "wp_cron_preload_cache: clean expired cache files older than $cache_max_time seconds.", 5 ); + wp_cache_phase2_clean_expired( $file_prefix, true ); // force cleanup of old files. + } + + wpsc_reset_preload_settings(); + wpsc_update_idle_preload( time() ); + } + @unlink( $mutex ); +} +add_action( 'wp_cache_preload_hook', 'wp_cron_preload_cache' ); +add_action( 'wp_cache_full_preload_hook', 'wp_cron_preload_cache' ); + +/* + * Schedule the next preload event without resetting the preload counter. + * This happens when the next loop of an active preload is scheduled. + */ +function wpsc_schedule_next_preload() { + global $cache_path; + + /* + * Edge case: If preload is not active, don't schedule the next preload. + * This can happen if the preload is cancelled by the user right after a loop finishes. + */ + if ( ! wpsc_is_preload_active() ) { + wpsc_reset_preload_settings(); + wp_cache_debug( 'wpsc_schedule_next_preload: preload is not active. not scheduling next preload.' ); + return; + } + + if ( defined( 'DOING_CRON' ) ) { + wp_cache_debug( 'wp_cron_preload_cache: scheduling the next preload in 3 seconds.' ); + wp_schedule_single_event( time() + 3, 'wp_cache_preload_hook' ); + } + + // we always want to delete the mutex file, even if we're not using cron + $mutex = $cache_path . 'preload_mutex.tmp'; + wp_delete_file( $mutex ); +} + +function option_preload_cache_counter( $value ) { + if ( false == is_array( $value ) ) { + return array( + 'c' => 0, + 't' => time(), + ); + } else { + return $value; + } +} +add_filter( 'option_preload_cache_counter', 'option_preload_cache_counter' ); + +function check_up_on_preloading() { + $value = get_option( 'preload_cache_counter' ); + if ( is_array( $value ) && $value['c'] > 0 && ( time() - $value['t'] ) > 3600 && false === wp_next_scheduled( 'wp_cache_preload_hook' ) ) { + wp_schedule_single_event( time() + 5, 'wp_cache_preload_hook' ); + } +} +add_action( 'init', 'check_up_on_preloading' ); // sometimes preloading stops working. Kickstart it. + +/* + * returns true if preload is active + */ +function wpsc_is_preload_active() { + global $cache_path; + + // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged + if ( @file_exists( $cache_path . 'stop_preload.txt' ) ) { + return false; + } + + if ( file_exists( $cache_path . 'preload_mutex.tmp' ) ) { + return true; + } + + // check taxonomy preload loop + $taxonomies = apply_filters( + 'wp_cache_preload_taxonomies', + array( + 'post_tag' => 'tag', + 'category' => 'category', + ) + ); + + foreach ( $taxonomies as $taxonomy => $path ) { + $taxonomy_filename = $cache_path . 'taxonomy_' . $taxonomy . '.txt'; + if ( file_exists( $taxonomy_filename ) ) { + return true; + } + } + + // check post preload loop + $preload_cache_counter = get_option( 'preload_cache_counter' ); + if ( + is_array( $preload_cache_counter ) + && isset( $preload_cache_counter['c'] ) + && $preload_cache_counter['c'] > 0 + ) { + return true; + } + + return false; +} + +/* + * This function will reset the preload cache counter + */ +function wpsc_reset_preload_counter() { + update_option( + 'preload_cache_counter', + array( + 'c' => 0, + 't' => time(), + ) + ); +} + +/* + * This function will reset all preload settings + */ +function wpsc_reset_preload_settings() { + global $cache_path; + + $mutex = $cache_path . 'preload_mutex.tmp'; + wp_delete_file( $mutex ); + wp_delete_file( $cache_path . 'stop_preload.txt' ); + wpsc_reset_preload_counter(); + + $taxonomies = apply_filters( + 'wp_cache_preload_taxonomies', + array( + 'post_tag' => 'tag', + 'category' => 'category', + ) + ); + + foreach ( $taxonomies as $taxonomy => $path ) { + $taxonomy_filename = $cache_path . 'taxonomy_' . $taxonomy . '.txt'; + wp_delete_file( $taxonomy_filename ); + } +} + +function wpsc_cancel_preload() { + $next_preload = wp_next_scheduled( 'wp_cache_preload_hook' ); + $next_full_preload = wp_next_scheduled( 'wp_cache_full_preload_hook' ); + + if ( $next_preload || $next_full_preload ) { + wp_cache_debug( 'wpsc_cancel_preload: reset preload settings' ); + wpsc_reset_preload_settings(); + } + + if ( $next_preload ) { + wp_cache_debug( 'wpsc_cancel_preload: unscheduling wp_cache_preload_hook' ); + wp_unschedule_event( $next_preload, 'wp_cache_preload_hook' ); + } + if ( $next_full_preload ) { + wp_cache_debug( 'wpsc_cancel_preload: unscheduling wp_cache_full_preload_hook' ); + wp_unschedule_event( $next_full_preload, 'wp_cache_full_preload_hook' ); + } + wp_cache_debug( 'wpsc_cancel_preload: creating stop_preload.txt' ); + + /* + * Reset the preload settings, but also create the stop_preload.txt file to + * prevent the preload from starting again. + * By creating the stop_preload.txt file, we can be sure the preload will cancel. + */ + wpsc_reset_preload_settings(); + wpsc_create_stop_preload_flag(); + wpsc_update_idle_preload( time() ); +} + +/* + * The preload process checks for a file called stop_preload.txt and will stop if found. + * This function creates that file. + */ +function wpsc_create_stop_preload_flag() { + global $cache_path; + // phpcs:ignore -- WordPress.WP.AlternativeFunctions.file_system_read_fopen WordPress.PHP.NoSilencedErrors.Discouraged + $fp = @fopen( $cache_path . 'stop_preload.txt', 'w' ); + // phpcs:ignore -- WordPress.WP.AlternativeFunctions.file_system_operations_fclose WordPress.PHP.NoSilencedErrors.Discouraged + @fclose( $fp ); +} + +function wpsc_enable_preload() { + + wpsc_reset_preload_settings(); + wp_schedule_single_event( time() + 10, 'wp_cache_full_preload_hook' ); +} + +function wpsc_get_post_types() { + + $preload_type_args = apply_filters( 'wpsc_preload_post_types_args', array( + 'public' => true, + 'publicly_queryable' => true + ) ); + + $post_types = (array) apply_filters( 'wpsc_preload_post_types', get_post_types( $preload_type_args, 'names', 'or' )); + + return "'" . implode( "', '", array_map( 'esc_sql', $post_types ) ) . "'"; +} +function wpsc_post_count() { + global $wpdb; + static $count; + + if ( isset( $count ) ) { + return $count; + } + + $post_type_list = wpsc_get_post_types(); + $count = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->posts} WHERE post_type IN ( $post_type_list ) AND post_status = 'publish'" ); + + return $count; +} + +/** + * Get the minimum interval in minutes between preload refreshes. + * Filter the default value of 10 minutes using the `wpsc_minimum_preload_interval` filter. + * + * @return int + */ +function wpsc_get_minimum_preload_interval() { + return apply_filters( 'wpsc_minimum_preload_interval', 10 ); +} + +function wpsc_preload_settings() { + global $wp_cache_preload_interval, $wp_cache_preload_on, $wp_cache_preload_taxonomies, $wp_cache_preload_email_volume, $wp_cache_preload_posts, $valid_nonce; + + if ( isset( $_POST[ 'action' ] ) == false || $_POST[ 'action' ] != 'preload' ) + return; + + if ( ! $valid_nonce ) { + return; + } + + if ( isset( $_POST[ 'preload_off' ] ) ) { + wpsc_cancel_preload(); + return; + } elseif ( isset( $_POST[ 'preload_now' ] ) ) { + wpsc_enable_preload(); + wpsc_update_idle_preload(); + ?> +
    +

    +
    + = $min_refresh_interval ) ) { + $_POST[ 'wp_cache_preload_interval' ] = (int)$_POST[ 'wp_cache_preload_interval' ]; + if ( $wp_cache_preload_interval != $_POST[ 'wp_cache_preload_interval' ] ) { + $force_preload_reschedule = true; + } + + // phpcs:ignore WordPress.Security.NonceVerification.Missing + $wp_cache_preload_interval = (int) $_POST['wp_cache_preload_interval']; + wp_cache_setting( 'wp_cache_preload_interval', $wp_cache_preload_interval ); + } + + if ( $_POST[ 'wp_cache_preload_posts' ] == 'all' ) { + $wp_cache_preload_posts = 'all'; + } else { + $wp_cache_preload_posts = (int)$_POST[ 'wp_cache_preload_posts' ]; + } + wp_cache_setting( 'wp_cache_preload_posts', $wp_cache_preload_posts ); + + if ( isset( $_POST[ 'wp_cache_preload_email_volume' ] ) && in_array( $_POST[ 'wp_cache_preload_email_volume' ], array( 'none', 'less', 'medium', 'many' ) ) ) { + $wp_cache_preload_email_volume = $_POST[ 'wp_cache_preload_email_volume' ]; + } else { + $wp_cache_preload_email_volume = 'none'; + } + wp_cache_setting( 'wp_cache_preload_email_volume', $wp_cache_preload_email_volume ); + + if ( $wp_cache_preload_email_volume == 'none' ) + wp_cache_setting( 'wp_cache_preload_email_me', 0 ); + else + wp_cache_setting( 'wp_cache_preload_email_me', 1 ); + + if ( isset( $_POST[ 'wp_cache_preload_taxonomies' ] ) ) { + $wp_cache_preload_taxonomies = 1; + } else { + $wp_cache_preload_taxonomies = 0; + } + wp_cache_setting( 'wp_cache_preload_taxonomies', $wp_cache_preload_taxonomies ); + + if ( isset( $_POST[ 'wp_cache_preload_on' ] ) ) { + $wp_cache_preload_on = 1; + } else { + $wp_cache_preload_on = 0; + } + wp_cache_setting( 'wp_cache_preload_on', $wp_cache_preload_on ); + + // Ensure that preload settings are applied to scheduled cron. + $next_preload = wp_next_scheduled( 'wp_cache_full_preload_hook' ); + $should_schedule = ( $wp_cache_preload_on === 1 && $wp_cache_preload_interval > 0 ); + + // If forcing a reschedule, or preload is disabled, clear the next scheduled event. + if ( $next_preload && ( ! $should_schedule || $force_preload_reschedule ) ) { + wp_cache_debug( 'Clearing old preload event' ); + wpsc_reset_preload_counter(); + wpsc_create_stop_preload_flag(); + wp_unschedule_event( $next_preload, 'wp_cache_full_preload_hook' ); + + $next_preload = 0; + } + + // Ensure a preload is scheduled if it should be. + if ( ! $next_preload && $should_schedule ) { + wp_cache_debug( 'Scheduling new preload event' ); + wp_schedule_single_event( time() + ( $wp_cache_preload_interval * 60 ), 'wp_cache_full_preload_hook' ); + } +} + +function wpsc_is_preloading() { + if ( wp_next_scheduled( 'wp_cache_preload_hook' ) || wp_next_scheduled( 'wp_cache_full_preload_hook' ) ) { + return true; + } else { + return false; + } +} diff --git a/inc/settings-forms.php b/inc/settings-forms.php new file mode 100644 index 00000000..2d7ae73f --- /dev/null +++ b/inc/settings-forms.php @@ -0,0 +1,390 @@ +\'\"\r\n\t\(\)\$\[\];#]/', '', $page ) ); + if ( $page != '' ) { + $cached_direct_pages[] = $page; + $out .= "'$page', "; + } + } + } + if ( $valid_nonce && array_key_exists('new_direct_page', $_POST) && $_POST[ 'new_direct_page' ] && '' != $_POST[ 'new_direct_page' ] ) { + $page = str_replace( get_option( 'siteurl' ), '', $_POST[ 'new_direct_page' ] ); + $page = str_replace( '..', '', preg_replace( '/[ <>\'\"\r\n\t\(\)\$\[\];#]/', '', $page ) ); + if ( substr( $page, 0, 1 ) != '/' ) + $page = '/' . $page; + if ( $page != '/' || false == is_array( $cached_direct_pages ) || in_array( $page, $cached_direct_pages ) == false ) { + $cached_direct_pages[] = $page; + $out .= "'$page', "; + + @unlink( trailingslashit( ABSPATH . $page ) . "index.html" ); + wpsc_delete_files( get_supercache_dir() . $page ); + } + } + + if ( $out != '' ) { + $out = substr( $out, 0, -2 ); + } + if ( $out == "''" ) { + $out = ''; + } + $out = '$cached_direct_pages = array( ' . $out . ' );'; + wp_cache_replace_line('^ *\$cached_direct_pages', "$out", $wp_cache_config_file); + + if ( !empty( $expiredfiles ) ) { + foreach( $expiredfiles as $file ) { + if( $file != '' ) { + $firstfolder = explode( '/', $file ); + $firstfolder = ABSPATH . $firstfolder[1]; + $file = ABSPATH . $file; + $file = realpath( str_replace( '..', '', preg_replace('/[ <>\'\"\r\n\t\(\)]/', '', $file ) ) ); + if ( $file ) { + @unlink( trailingslashit( $file ) . "index.html" ); + @unlink( trailingslashit( $file ) . "index.html.gz" ); + RecursiveFolderDelete( trailingslashit( $firstfolder ) ); + } + } + } + } + + if ( $valid_nonce && array_key_exists('deletepage', $_POST) && $_POST[ 'deletepage' ] ) { + $page = str_replace( '..', '', preg_replace('/[ <>\'\"\r\n\t\(\)]/', '', $_POST['deletepage'] ) ) . '/'; + $pagefile = realpath( ABSPATH . $page . 'index.html' ); + if ( substr( $pagefile, 0, strlen( ABSPATH ) ) != ABSPATH || false == wp_cache_confirm_delete( ABSPATH . $page ) ) { + die( __( 'Cannot delete directory', 'wp-super-cache' ) ); + } + $firstfolder = explode( '/', $page ); + $firstfolder = ABSPATH . $firstfolder[1]; + $page = ABSPATH . $page; + if( is_file( $pagefile ) && is_writeable_ACLSafe( $pagefile ) && is_writeable_ACLSafe( $firstfolder ) ) { + @unlink( $pagefile ); + @unlink( $pagefile . '.gz' ); + RecursiveFolderDelete( $firstfolder ); + } + } + + return $cached_direct_pages; +} + +function wpsc_lockdown() { + global $cached_direct_pages, $cache_enabled, $super_cache_enabled; + + $admin_url = admin_url( 'options-general.php?page=wpsupercache' ); + $wp_lock_down = wp_update_lock_down(); + + wpsc_render_partial( + 'lockdown', + compact( 'cached_direct_pages', 'cache_enabled', 'super_cache_enabled', 'admin_url', 'wp_lock_down' ) + ); +} + +function wp_cache_time_update() { + global $cache_max_time, $wp_cache_config_file, $valid_nonce, $cache_schedule_type, $cache_scheduled_time, $cache_schedule_interval, $cache_time_interval, $cache_gc_email_me; + if ( isset( $_POST[ 'action' ] ) && $_POST[ 'action' ] == 'expirytime' ) { + + if ( false == $valid_nonce ) + return false; + + if( !isset( $cache_schedule_type ) ) { + $cache_schedule_type = 'interval'; + wp_cache_replace_line('^ *\$cache_schedule_type', "\$cache_schedule_type = '$cache_schedule_type';", $wp_cache_config_file); + } + + if( !isset( $cache_scheduled_time ) ) { + $cache_scheduled_time = '00:00'; + wp_cache_replace_line('^ *\$cache_scheduled_time', "\$cache_scheduled_time = '$cache_scheduled_time';", $wp_cache_config_file); + } + + if( !isset( $cache_max_time ) ) { + $cache_max_time = 3600; + wp_cache_replace_line('^ *\$cache_max_time', "\$cache_max_time = $cache_max_time;", $wp_cache_config_file); + } + + if ( !isset( $cache_time_interval ) ) { + $cache_time_interval = $cache_max_time; + wp_cache_replace_line('^ *\$cache_time_interval', "\$cache_time_interval = '$cache_time_interval';", $wp_cache_config_file); + } + + if ( isset( $_POST['wp_max_time'] ) ) { + $cache_max_time = (int)$_POST['wp_max_time']; + wp_cache_replace_line('^ *\$cache_max_time', "\$cache_max_time = $cache_max_time;", $wp_cache_config_file); + // schedule gc watcher + if ( false == wp_next_scheduled( 'wp_cache_gc_watcher' ) ) + wp_schedule_event( time()+600, 'hourly', 'wp_cache_gc_watcher' ); + } + + if ( isset( $_POST[ 'cache_gc_email_me' ] ) ) { + $cache_gc_email_me = 1; + wp_cache_replace_line('^ *\$cache_gc_email_me', "\$cache_gc_email_me = $cache_gc_email_me;", $wp_cache_config_file); + } else { + $cache_gc_email_me = 0; + wp_cache_replace_line('^ *\$cache_gc_email_me', "\$cache_gc_email_me = $cache_gc_email_me;", $wp_cache_config_file); + } + if ( isset( $_POST[ 'cache_schedule_type' ] ) && $_POST[ 'cache_schedule_type' ] == 'interval' && isset( $_POST['cache_time_interval'] ) ) { + wp_clear_scheduled_hook( 'wp_cache_gc' ); + $cache_schedule_type = 'interval'; + if ( (int)$_POST[ 'cache_time_interval' ] == 0 ) + $_POST[ 'cache_time_interval' ] = 600; + $cache_time_interval = (int)$_POST[ 'cache_time_interval' ]; + wp_schedule_single_event( time() + $cache_time_interval, 'wp_cache_gc' ); + wp_cache_replace_line('^ *\$cache_schedule_type', "\$cache_schedule_type = '$cache_schedule_type';", $wp_cache_config_file); + wp_cache_replace_line('^ *\$cache_time_interval', "\$cache_time_interval = '$cache_time_interval';", $wp_cache_config_file); + } else { // clock + wp_clear_scheduled_hook( 'wp_cache_gc' ); + $cache_schedule_type = 'time'; + if ( !isset( $_POST[ 'cache_scheduled_time' ] ) || + $_POST[ 'cache_scheduled_time' ] == '' || + 5 != strlen( $_POST[ 'cache_scheduled_time' ] ) || + ":" != substr( $_POST[ 'cache_scheduled_time' ], 2, 1 ) + ) + $_POST[ 'cache_scheduled_time' ] = '00:00'; + + $cache_scheduled_time = $_POST[ 'cache_scheduled_time' ]; + + if ( ! preg_match( '/[0-9][0-9]:[0-9][0-9]/', $cache_scheduled_time ) ) { + $cache_scheduled_time = '00:00'; + } + $schedules = wp_get_schedules(); + if ( !isset( $cache_schedule_interval ) ) + $cache_schedule_interval = 'daily'; + if ( isset( $_POST[ 'cache_schedule_interval' ] ) && isset( $schedules[ $_POST[ 'cache_schedule_interval' ] ] ) ) + $cache_schedule_interval = $_POST[ 'cache_schedule_interval' ]; + wp_cache_replace_line('^ *\$cache_schedule_type', "\$cache_schedule_type = '$cache_schedule_type';", $wp_cache_config_file); + wp_cache_replace_line('^ *\$cache_schedule_interval', "\$cache_schedule_interval = '{$cache_schedule_interval}';", $wp_cache_config_file); + wp_cache_replace_line('^ *\$cache_scheduled_time', "\$cache_scheduled_time = '$cache_scheduled_time';", $wp_cache_config_file); + wp_schedule_event( strtotime( $cache_scheduled_time ), $cache_schedule_interval, 'wp_cache_gc' ); + } + } +} + +function wp_cache_sanitize_value($text, & $array) { + $text = esc_html(strip_tags($text)); + $array = preg_split( '/[\s,]+/', rtrim( $text ) ); + $text = var_export($array, true); + $text = preg_replace('/[\s]+/', ' ', $text); + return $text; +} + +function wp_cache_update_rejected_ua() { + global $cache_rejected_user_agent, $wp_cache_config_file, $valid_nonce; + + if ( isset( $_POST[ 'wp_rejected_user_agent' ] ) && $valid_nonce ) { + $_POST[ 'wp_rejected_user_agent' ] = str_replace( ' ', '___', $_POST[ 'wp_rejected_user_agent' ] ); + $text = str_replace( '___', ' ', wp_cache_sanitize_value( $_POST[ 'wp_rejected_user_agent' ], $cache_rejected_user_agent ) ); + wp_cache_replace_line( '^ *\$cache_rejected_user_agent', "\$cache_rejected_user_agent = $text;", $wp_cache_config_file ); + foreach( $cache_rejected_user_agent as $k => $ua ) { + $cache_rejected_user_agent[ $k ] = str_replace( '___', ' ', $ua ); + } + reset( $cache_rejected_user_agent ); + } +} + +function wpsc_edit_rejected_ua() { + global $cache_rejected_user_agent; + + $admin_url = admin_url( 'options-general.php?page=wpsupercache' ); + wp_cache_update_rejected_ua(); + wpsc_render_partial( + 'rejected_user_agents', + compact( 'cache_rejected_user_agent', 'admin_url' ) + ); +} + +function wp_cache_update_rejected_pages() { + global $wp_cache_config_file, $valid_nonce, $wp_cache_pages; + + if ( isset( $_POST[ 'wp_edit_rejected_pages' ] ) && $valid_nonce ) { + $pages = array( 'single', 'pages', 'archives', 'tag', 'frontpage', 'home', 'category', 'feed', 'author', 'search' ); + foreach( $pages as $page ) { + if ( isset( $_POST[ 'wp_cache_pages' ][ $page ] ) ) { + $value = 1; + } else { + $value = 0; + } + wp_cache_replace_line('^ *\$wp_cache_pages\[ "' . $page . '" \]', "\$wp_cache_pages[ \"{$page}\" ] = $value;", $wp_cache_config_file); + $wp_cache_pages[ $page ] = $value; + } + } +} + +function wpsc_update_tracking_parameters() { + global $wpsc_tracking_parameters, $valid_nonce, $wp_cache_config_file; + + if ( isset( $_POST['tracking_parameters'] ) && $valid_nonce ) { + $text = wp_cache_sanitize_value( str_replace( '\\\\', '\\', $_POST['tracking_parameters'] ), $wpsc_tracking_parameters ); + wp_cache_replace_line( '^ *\$wpsc_tracking_parameters', "\$wpsc_tracking_parameters = $text;", $wp_cache_config_file ); + wp_cache_setting( 'wpsc_ignore_tracking_parameters', isset( $_POST['wpsc_ignore_tracking_parameters'] ) ? 1 : 0 ); + } +} + +function wpsc_edit_tracking_parameters() { + global $wpsc_tracking_parameters, $wpsc_ignore_tracking_parameters; + + $admin_url = admin_url( 'options-general.php?page=wpsupercache' ); + wpsc_update_tracking_parameters(); + + if ( ! isset( $wpsc_tracking_parameters ) ) { + $wpsc_tracking_parameters = array( 'fbclid', 'ref', 'gclid', 'fb_source', 'mc_cid', 'mc_eid', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'utm_expid', 'mtm_source', 'mtm_medium', 'mtm_campaign', 'mtm_keyword', 'mtm_content', 'mtm_cid', 'mtm_group', 'mtm_placement', 'ysclid', 'srsltid', 'yclid' ); + } + + if ( ! isset( $wpsc_ignore_tracking_parameters ) ) { + $wpsc_ignore_tracking_parameters = 0; + } + wpsc_render_partial( + 'tracking_parameters', + compact( 'wpsc_ignore_tracking_parameters', 'wpsc_tracking_parameters', 'admin_url' ) + ); +} + +function wp_cache_update_rejected_cookies() { + global $wpsc_rejected_cookies, $wp_cache_config_file, $valid_nonce; + + if ( isset( $_POST['wp_rejected_cookies'] ) && $valid_nonce ) { + $text = wp_cache_sanitize_value( str_replace( '\\\\', '\\', $_POST['wp_rejected_cookies'] ), $wpsc_rejected_cookies ); + wp_cache_replace_line( '^ *\$wpsc_rejected_cookies', "\$wpsc_rejected_cookies = $text;", $wp_cache_config_file ); + } +} + +function wp_cache_update_rejected_strings() { + global $cache_rejected_uri, $wp_cache_config_file, $valid_nonce; + + if ( isset($_REQUEST['wp_rejected_uri']) && $valid_nonce ) { + $text = wp_cache_sanitize_value( str_replace( '\\\\', '\\', $_REQUEST['wp_rejected_uri'] ), $cache_rejected_uri ); + wp_cache_replace_line('^ *\$cache_rejected_uri', "\$cache_rejected_uri = $text;", $wp_cache_config_file); + } +} + +function wp_cache_update_accepted_strings() { + global $cache_acceptable_files, $wp_cache_config_file, $valid_nonce; + + if ( isset( $_REQUEST[ 'wp_accepted_files' ] ) && $valid_nonce ) { + $text = wp_cache_sanitize_value( $_REQUEST[ 'wp_accepted_files' ], $cache_acceptable_files ); + wp_cache_replace_line( '^ *\$cache_acceptable_files', "\$cache_acceptable_files = $text;", $wp_cache_config_file ); + } +} + +function wpsc_update_debug_settings() { + global $wp_super_cache_debug, $wp_cache_debug_log, $wp_cache_debug_ip, $cache_path, $valid_nonce, $wp_cache_config_file, $wp_super_cache_comments; + global $wp_super_cache_front_page_check, $wp_super_cache_front_page_clear, $wp_super_cache_front_page_text, $wp_super_cache_front_page_notification, $wp_super_cache_advanced_debug; + global $wp_cache_debug_username; + + if ( ! isset( $wp_super_cache_comments ) ) { + $wp_super_cache_comments = 1; // defaults to "enabled". + wp_cache_setting( 'wp_super_cache_comments', $wp_super_cache_comments ); + } + + if ( false == $valid_nonce ) { + return array ( + 'wp_super_cache_debug' => $wp_super_cache_debug, + 'wp_cache_debug_log' => $wp_cache_debug_log, + 'wp_cache_debug_ip' => $wp_cache_debug_ip, + 'wp_super_cache_comments' => $wp_super_cache_comments, + 'wp_super_cache_front_page_check' => $wp_super_cache_front_page_check, + 'wp_super_cache_front_page_clear' => $wp_super_cache_front_page_clear, + 'wp_super_cache_front_page_text' => $wp_super_cache_front_page_text, + 'wp_super_cache_front_page_notification' => $wp_super_cache_front_page_notification, + 'wp_super_cache_advanced_debug' => $wp_super_cache_advanced_debug, + 'wp_cache_debug_username' => $wp_cache_debug_username, + ); + } + + if ( isset( $_POST[ 'wpsc_delete_log' ] ) && $_POST[ 'wpsc_delete_log' ] == 1 && $wp_cache_debug_log != '' ) { + @unlink( $cache_path . $wp_cache_debug_log ); + extract( wpsc_create_debug_log( $wp_cache_debug_log, $wp_cache_debug_username ) ); // $wp_cache_debug_log, $wp_cache_debug_username + } + + if ( ! isset( $wp_cache_debug_log ) || $wp_cache_debug_log == '' ) { + extract( wpsc_create_debug_log() ); // $wp_cache_debug_log, $wp_cache_debug_username + } elseif ( ! file_exists( $cache_path . $wp_cache_debug_log ) ) { // make sure debug log exists before toggling debugging + extract( wpsc_create_debug_log( $wp_cache_debug_log, $wp_cache_debug_username ) ); // $wp_cache_debug_log, $wp_cache_debug_username + } + $wp_super_cache_debug = ( isset( $_POST[ 'wp_super_cache_debug' ] ) && $_POST[ 'wp_super_cache_debug' ] == 1 ) ? 1 : 0; + wp_cache_setting( 'wp_super_cache_debug', $wp_super_cache_debug ); + + if ( isset( $_POST[ 'wp_cache_debug' ] ) ) { + wp_cache_setting( 'wp_cache_debug_username', $wp_cache_debug_username ); + wp_cache_setting( 'wp_cache_debug_log', $wp_cache_debug_log ); + $wp_super_cache_comments = isset( $_POST[ 'wp_super_cache_comments' ] ) ? 1 : 0; + wp_cache_setting( 'wp_super_cache_comments', $wp_super_cache_comments ); + if ( isset( $_POST[ 'wp_cache_debug_ip' ] ) && filter_var( $_POST[ 'wp_cache_debug_ip' ], FILTER_VALIDATE_IP ) ) { + $wp_cache_debug_ip = esc_html( preg_replace( '/[ <>\'\"\r\n\t\(\)\$\[\];#]/', '', $_POST[ 'wp_cache_debug_ip' ] ) ); + } else { + $wp_cache_debug_ip = ''; + } + wp_cache_setting( 'wp_cache_debug_ip', $wp_cache_debug_ip ); + $wp_super_cache_front_page_check = isset( $_POST[ 'wp_super_cache_front_page_check' ] ) ? 1 : 0; + wp_cache_setting( 'wp_super_cache_front_page_check', $wp_super_cache_front_page_check ); + $wp_super_cache_front_page_clear = isset( $_POST[ 'wp_super_cache_front_page_clear' ] ) ? 1 : 0; + wp_cache_setting( 'wp_super_cache_front_page_clear', $wp_super_cache_front_page_clear ); + if ( isset( $_POST[ 'wp_super_cache_front_page_text' ] ) ) { + $wp_super_cache_front_page_text = esc_html( preg_replace( '/[ <>\'\"\r\n\t\(\)\$\[\];#]/', '', $_POST[ 'wp_super_cache_front_page_text' ] ) ); + } else { + $wp_super_cache_front_page_text = ''; + } + wp_cache_setting( 'wp_super_cache_front_page_text', $wp_super_cache_front_page_text ); + $wp_super_cache_front_page_notification = isset( $_POST[ 'wp_super_cache_front_page_notification' ] ) ? 1 : 0; + wp_cache_setting( 'wp_super_cache_front_page_notification', $wp_super_cache_front_page_notification ); + if ( $wp_super_cache_front_page_check == 1 && !wp_next_scheduled( 'wp_cache_check_site_hook' ) ) { + wp_schedule_single_event( time() + 360 , 'wp_cache_check_site_hook' ); + wp_cache_debug( 'scheduled wp_cache_check_site_hook for 360 seconds time.' ); + } + } + + return array ( + 'wp_super_cache_debug' => $wp_super_cache_debug, + 'wp_cache_debug_log' => $wp_cache_debug_log, + 'wp_cache_debug_ip' => $wp_cache_debug_ip, + 'wp_super_cache_comments' => $wp_super_cache_comments, + 'wp_super_cache_front_page_check' => $wp_super_cache_front_page_check, + 'wp_super_cache_front_page_clear' => $wp_super_cache_front_page_clear, + 'wp_super_cache_front_page_text' => $wp_super_cache_front_page_text, + 'wp_super_cache_front_page_notification' => $wp_super_cache_front_page_notification, + 'wp_super_cache_advanced_debug' => $wp_super_cache_advanced_debug, + 'wp_cache_debug_username' => $wp_cache_debug_username, + ); +} diff --git a/tests/php/bootstrap-integration.php b/tests/php/bootstrap-integration.php index b329f91e..ca9058c6 100644 --- a/tests/php/bootstrap-integration.php +++ b/tests/php/bootstrap-integration.php @@ -37,15 +37,27 @@ require_once $_tests_dir . '/includes/functions.php'; /** - * Load the procedural caching engine once WordPress (with the real hook system) - * is available, so its functions are defined under a genuine WP runtime. + * Load the procedural caching engine and the main plugin file once WordPress + * (with the real hook system) is available, so their functions are defined under + * a genuine WP runtime. */ function _wpsc_manually_load_procedural_files() { + $plugin_dir = dirname( __DIR__, 2 ); + // Guard against a redeclaration fatal if the plugin is ever active in the // tests env and loads wp-cache-phase2.php via a different (WPCACHEHOME) path, // which would defeat require_once's path-based idempotency. if ( ! function_exists( 'supercache_filename' ) ) { - require_once dirname( __DIR__, 2 ) . '/wp-cache-phase2.php'; + require_once $plugin_dir . '/wp-cache-phase2.php'; + } + + // Load the main plugin file so the admin / lifecycle procedural functions + // (cache-file stats, htaccess generation, settings-form updaters, preload, + // ...) are defined under a real WP runtime. wp-cache.php pulls in the inc/ + // files and runs wpsc_init() at top level. Guarded for the same reason as + // above (plugin active in the tests env loading via a different path). + if ( ! function_exists( 'wpsc_init' ) ) { + require_once $plugin_dir . '/wp-cache.php'; } } tests_add_filter( 'muplugins_loaded', '_wpsc_manually_load_procedural_files' ); diff --git a/tests/php/integration/CacheFileStatsTest.php b/tests/php/integration/CacheFileStatsTest.php new file mode 100644 index 00000000..b6f1688c --- /dev/null +++ b/tests/php/integration/CacheFileStatsTest.php @@ -0,0 +1,199 @@ +temp_dirs as $dir ) { + $this->rrmdir( $dir ); + } + $this->temp_dirs = array(); + parent::tear_down(); + } + + /** + * Build a cache directory populated with the given files. + * + * @param array $files Map of relative filename => mtime offset in seconds + * (0 = now/fresh, negative = older/expired). + * @return string Absolute path to the created directory (trailing slash). + */ + private function make_cache_dir( array $files ) { + $dir = trailingslashit( get_temp_dir() ) . 'wpsc-dirsize-' . uniqid(); + mkdir( $dir, 0700, true ); + $this->temp_dirs[] = $dir; + + $now = time(); + foreach ( $files as $name => $offset ) { + $path = trailingslashit( $dir ) . $name; + file_put_contents( $path, str_repeat( 'x', 100 ) ); + touch( $path, $now + $offset ); + } + return trailingslashit( $dir ); + } + + private function rrmdir( $dir ) { + if ( ! is_dir( $dir ) ) { + return; + } + foreach ( scandir( $dir ) as $entry ) { + if ( '.' === $entry || '..' === $entry ) { + continue; + } + $path = $dir . '/' . $entry; + is_dir( $path ) ? $this->rrmdir( $path ) : unlink( $path ); + } + rmdir( $dir ); + } + + /** + * Characterizes wp_cache_format_fsize(), the pure size formatter. + * + * @dataProvider provide_fsize + * + * @param int|float $input Size value (in KB) passed to the formatter. + * @param string $expected Formatted output string. + */ + public function test_wp_cache_format_fsize( $input, $expected ) { + $this->assertSame( $expected, wp_cache_format_fsize( $input ) ); + } + + public function provide_fsize() { + return array( + 'zero' => array( 0, '0KB' ), + 'float zero' => array( 0.0, '0KB' ), + 'small KB' => array( 500, '500.00KB' ), + 'boundary 1024 is KB' => array( 1024, '1,024.00KB' ), + 'just over 1024 is MB' => array( 1025, '1.00MB' ), + '2048 is MB' => array( 2048, '2.00MB' ), + 'large MB' => array( 1048576, '1,024.00MB' ), + ); + } + + /** + * Characterizes wpsc_generate_sizes_array(): the zeroed stats skeleton for + * each cache type. + */ + public function test_wpsc_generate_sizes_array_default_shape() { + $expected = array( + 'supercache' => array( + 'expired' => 0, + 'cached' => 0, + 'fsize' => 0, + 'cached_list' => array(), + 'expired_list' => array(), + ), + 'wpcache' => array( + 'expired' => 0, + 'cached' => 0, + 'fsize' => 0, + 'cached_list' => array(), + 'expired_list' => array(), + ), + ); + + $this->assertSame( $expected, wpsc_generate_sizes_array() ); + } + + /** + * Characterizes wpsc_dirsize(): it classifies files as wpcache vs supercache + * and expired vs cached, accumulates counts, and skips meta files. A path + * containing "/{$file_prefix}" is wpcache; anything else is supercache. A + * file is expired when its mtime + cache_max_time has passed. + */ + public function test_wpsc_dirsize_classifies_and_counts() { + $dir = $this->make_cache_dir( + array( + 'index.html' => 0, // supercache, fresh. + 'old.html' => -7200, // supercache, expired (>1h old). + 'wp-cache-abc.php' => 0, // wpcache, fresh. + 'meta-wp-cache-abc.php' => 0, // meta: must be skipped entirely. + ) + ); + + $sizes = wpsc_dirsize( $dir, wpsc_generate_sizes_array() ); + + $this->assertSame( 1, $sizes['supercache']['cached'], 'fresh supercache file counted' ); + $this->assertSame( 1, $sizes['supercache']['expired'], 'old supercache file expired' ); + $this->assertSame( 1, $sizes['wpcache']['cached'], 'fresh wpcache file counted' ); + $this->assertSame( 0, $sizes['wpcache']['expired'], 'no expired wpcache files' ); + } + + /** + * Characterizes wpsc_dirsize() with preload on: supercache files are kept + * fresh (never counted as expired) regardless of age. + */ + public function test_wpsc_dirsize_preload_keeps_supercache_fresh() { + $GLOBALS['wp_cache_preload_on'] = true; + + $dir = $this->make_cache_dir( + array( + 'old.html' => -7200, // would be expired, but preload keeps it fresh. + ) + ); + + $sizes = wpsc_dirsize( $dir, wpsc_generate_sizes_array() ); + + $this->assertSame( 1, $sizes['supercache']['cached'] ); + $this->assertSame( 0, $sizes['supercache']['expired'] ); + } + + /** + * Characterizes wp_cache_regenerate_cache_file_stats(): it walks + * $supercachedir, returns a stats array stamped with a generated time, and + * persists it to the supercache_stats option. + */ + public function test_wp_cache_regenerate_cache_file_stats() { + $GLOBALS['cache_compression'] = false; + $GLOBALS['supercachedir'] = $this->make_cache_dir( + array( + 'index.html' => 0, // supercache, fresh. + 'old.html' => -7200, // supercache, expired. + ) + ); + + $before = time(); + $stats = wp_cache_regenerate_cache_file_stats(); + + $this->assertIsArray( $stats ); + $this->assertArrayHasKey( 'generated', $stats ); + $this->assertGreaterThanOrEqual( $before, $stats['generated'] ); + $this->assertSame( 1, $stats['supercache']['cached'] ); + $this->assertSame( 1, $stats['supercache']['expired'] ); + $this->assertSame( 0, $stats['wpcache']['cached'] ); + + // The stats are persisted to the option store. + $this->assertSame( $stats, get_option( 'supercache_stats' ) ); + } +} diff --git a/tests/php/integration/HtaccessRulesTest.php b/tests/php/integration/HtaccessRulesTest.php new file mode 100644 index 00000000..18f56530 --- /dev/null +++ b/tests/php/integration/HtaccessRulesTest.php @@ -0,0 +1,143 @@ +assertSame( 'wordpress_logged_in', wpsc_get_logged_in_cookie() ); + } + + /** + * Characterizes the default rewrite condition list: POST and query-string + * exclusions, the trailing-slash URI conditions, the logged-in/comment/ + * postpass cookie guard, and no mobile user-agent rule when mobile is off. + */ + public function test_condition_rules_default() { + $cond = wpsc_get_htaccess_info()['condition_rules']; + + $this->assertContains( 'RewriteCond %{REQUEST_METHOD} !POST', $cond ); + $this->assertContains( 'RewriteCond %{QUERY_STRING} ^$', $cond ); + $this->assertContains( 'RewriteCond %{REQUEST_URI} !^.*[^/]$', $cond ); + $this->assertContains( 'RewriteCond %{REQUEST_URI} !^.*//.*$', $cond ); + + $joined = implode( "\n", $cond ); + $this->assertStringContainsString( 'comment_author_', $joined ); + $this->assertStringContainsString( 'wordpress_logged_in', $joined ); + $this->assertStringContainsString( 'wp-postpass_', $joined ); + + foreach ( $cond as $rule ) { + $this->assertStringNotContainsString( 'HTTP_USER_AGENT', $rule, 'no mobile rule when mobile disabled' ); + } + } + + /** + * Characterizes the rewrite rule block: charset directive present when UTF-8 + * is enabled, plus the rewrite engine and the gzip accept-encoding condition. + */ + public function test_rules_block_includes_charset_when_utf8_enabled() { + $rules = wpsc_get_htaccess_info()['rules']; + + $this->assertStringContainsString( 'AddDefaultCharset', $rules ); + $this->assertStringContainsString( 'RewriteEngine On', $rules ); + $this->assertStringContainsString( 'RewriteCond %{HTTP:Accept-Encoding} gzip', $rules ); + $this->assertStringContainsString( '', $rules ); + } + + /** + * Characterizes the charset toggle: AddDefaultCharset is omitted when UTF-8 + * handling is disabled. + */ + public function test_rules_block_omits_charset_when_utf8_disabled() { + $GLOBALS['wp_cache_disable_utf8'] = 1; + + $this->assertStringNotContainsString( 'AddDefaultCharset', wpsc_get_htaccess_info()['rules'] ); + } + + /** + * Characterizes the mobile toggle: when mobile is enabled, the browser and + * prefix user-agent conditions are added (comma-space lists become + * pipe-delimited alternations). + */ + public function test_mobile_conditions_added_when_enabled() { + $GLOBALS['wp_cache_mobile_enabled'] = 1; + $GLOBALS['wp_cache_mobile_browsers'] = 'Android, iPhone'; + $GLOBALS['wp_cache_mobile_prefixes'] = 'w3c, acs'; + + $joined = implode( "\n", wpsc_get_htaccess_info()['condition_rules'] ); + + $this->assertStringContainsString( 'RewriteCond %{HTTP_USER_AGENT} !^.*(Android|iPhone).* [NC]', $joined ); + $this->assertStringContainsString( 'RewriteCond %{HTTP_USER_AGENT} !^(w3c|acs).* [NC]', $joined ); + } + + /** + * Characterizes the permalink toggle: a non-trailing-slash permalink + * structure omits the REQUEST_URI condition rules. + */ + public function test_plain_permalink_omits_uri_conditions() { + update_option( 'permalink_structure', '' ); + + $cond = wpsc_get_htaccess_info()['condition_rules']; + + $this->assertNotContains( 'RewriteCond %{REQUEST_URI} !^.*[^/]$', $cond ); + $this->assertNotContains( 'RewriteCond %{REQUEST_URI} !^.*//.*$', $cond ); + } + + /** + * Characterizes the gzip rule block: mod_mime/mod_deflate handling, the + * default Vary and Cache-Control headers, the mod_expires rule, and the + * directory-listing lockdown. + */ + public function test_gziprules_default_headers_and_expires() { + $gzip = wpsc_get_htaccess_info()['gziprules']; + + $this->assertStringContainsString( '', $gzip ); + $this->assertStringContainsString( "Header set Vary 'Accept-Encoding, Cookie'", $gzip ); + $this->assertStringContainsString( "Header set Cache-Control 'max-age=3, must-revalidate'", $gzip ); + $this->assertStringContainsString( 'ExpiresByType text/html A3', $gzip ); + $this->assertStringContainsString( 'Options -Indexes', $gzip ); + } +} diff --git a/tests/php/integration/PreloadStatusTest.php b/tests/php/integration/PreloadStatusTest.php new file mode 100644 index 00000000..5267f3f4 --- /dev/null +++ b/tests/php/integration/PreloadStatusTest.php @@ -0,0 +1,221 @@ +cache_dir = trailingslashit( get_temp_dir() ) . 'wpsc-preload-' . uniqid(); + mkdir( $this->cache_dir, 0700, true ); + $GLOBALS['cache_path'] = trailingslashit( $this->cache_dir ); + + delete_option( 'preload_cache_counter' ); + } + + public function tear_down() { + $this->rrmdir( $this->cache_dir ); + parent::tear_down(); + } + + private function rrmdir( $dir ) { + if ( ! is_dir( $dir ) ) { + return; + } + foreach ( scandir( $dir ) as $entry ) { + if ( '.' === $entry || '..' === $entry ) { + continue; + } + $path = $dir . '/' . $entry; + is_dir( $path ) ? $this->rrmdir( $path ) : unlink( $path ); + } + rmdir( $dir ); + } + + /** + * Characterizes wpsc_get_preload_status_file_path(): the status file lives in + * the cache path. + */ + public function test_status_file_path() { + $this->assertSame( + $GLOBALS['cache_path'] . 'preload_permalink.txt', + wpsc_get_preload_status_file_path() + ); + } + + /** + * Characterizes wpsc_get_preload_status() with no status file: preload is + * idle with an empty history. + */ + public function test_get_preload_status_default_is_idle() { + $expected = array( + 'running' => false, + 'history' => array(), + 'next' => false, + 'previous' => null, + ); + + $this->assertSame( $expected, wpsc_get_preload_status() ); + } + + /** + * Characterizes wpsc_get_preload_status() reading an existing status file: + * the stored JSON is returned verbatim. + */ + public function test_get_preload_status_reads_status_file() { + $stored = array( + 'running' => true, + 'history' => array( + array( + 'group' => 'posts', + 'progress' => 3, + 'url' => '/hello/', + ), + ), + 'next' => false, + 'previous' => 1700000000, + ); + file_put_contents( wpsc_get_preload_status_file_path(), wp_json_encode( $stored ) ); + + $this->assertSame( $stored, wpsc_get_preload_status() ); + } + + /** + * Characterizes wpsc_update_active_preload(): marks preload running and + * prepends history entries newest-first, capped at five. + */ + public function test_update_active_preload_tracks_running_history() { + for ( $i = 1; $i <= 6; $i++ ) { + wpsc_update_active_preload( 'posts', $i, "/page/$i/" ); + } + + $status = wpsc_get_preload_status(); + + $this->assertTrue( $status['running'] ); + $this->assertCount( 5, $status['history'], 'history capped at 5' ); + $this->assertSame( 6, $status['history'][0]['progress'], 'newest entry first' ); + $this->assertSame( 2, $status['history'][4]['progress'], 'oldest retained entry' ); + $this->assertSame( '/page/6/', $status['history'][0]['url'] ); + } + + /** + * Characterizes wpsc_update_idle_preload(): clears running/history and records + * the finish time as the previous run. + */ + public function test_update_idle_preload_clears_and_records_finish() { + wpsc_update_active_preload( 'posts', 1, '/a/' ); + + wpsc_update_idle_preload( 1700000123 ); + + $status = wpsc_get_preload_status(); + $this->assertFalse( $status['running'] ); + $this->assertSame( array(), $status['history'] ); + $this->assertSame( 1700000123, $status['previous'] ); + } + + /** + * Characterizes wpsc_is_preload_active() with no markers and a zero counter: + * preload is not active. + */ + public function test_is_preload_active_false_by_default() { + $this->assertFalse( wpsc_is_preload_active() ); + } + + /** + * Characterizes wpsc_is_preload_active(): the stop-preload flag forces an + * inactive result even if the mutex is present. + */ + public function test_is_preload_active_false_when_stop_flag_present() { + file_put_contents( $GLOBALS['cache_path'] . 'preload_mutex.tmp', '' ); + file_put_contents( $GLOBALS['cache_path'] . 'stop_preload.txt', '' ); + + $this->assertFalse( wpsc_is_preload_active() ); + } + + /** + * Characterizes wpsc_is_preload_active(): the preload mutex marks it active. + */ + public function test_is_preload_active_true_with_mutex() { + file_put_contents( $GLOBALS['cache_path'] . 'preload_mutex.tmp', '' ); + + $this->assertTrue( wpsc_is_preload_active() ); + } + + /** + * Characterizes wpsc_is_preload_active(): a positive post counter marks it + * active. + */ + public function test_is_preload_active_true_with_positive_counter() { + update_option( + 'preload_cache_counter', + array( + 'c' => 3, + 't' => time(), + ) + ); + + $this->assertTrue( wpsc_is_preload_active() ); + } + + /** + * Characterizes wpsc_reset_preload_counter(): the counter is zeroed. + */ + public function test_reset_preload_counter_zeroes_count() { + update_option( + 'preload_cache_counter', + array( + 'c' => 9, + 't' => 123, + ) + ); + + wpsc_reset_preload_counter(); + + $counter = get_option( 'preload_cache_counter' ); + $this->assertSame( 0, $counter['c'] ); + } + + /** + * Characterizes wpsc_reset_preload_settings(): clears the mutex, stop flag, + * and taxonomy markers, and zeroes the counter. + */ + public function test_reset_preload_settings_clears_markers() { + file_put_contents( $GLOBALS['cache_path'] . 'preload_mutex.tmp', '' ); + file_put_contents( $GLOBALS['cache_path'] . 'stop_preload.txt', '' ); + file_put_contents( $GLOBALS['cache_path'] . 'taxonomy_post_tag.txt', '' ); + update_option( + 'preload_cache_counter', + array( + 'c' => 4, + 't' => time(), + ) + ); + + wpsc_reset_preload_settings(); + + $this->assertFileDoesNotExist( $GLOBALS['cache_path'] . 'preload_mutex.tmp' ); + $this->assertFileDoesNotExist( $GLOBALS['cache_path'] . 'stop_preload.txt' ); + $this->assertFileDoesNotExist( $GLOBALS['cache_path'] . 'taxonomy_post_tag.txt' ); + + $counter = get_option( 'preload_cache_counter' ); + $this->assertSame( 0, $counter['c'] ); + } +} diff --git a/tests/php/integration/SettingsFormUpdatersTest.php b/tests/php/integration/SettingsFormUpdatersTest.php new file mode 100644 index 00000000..e1abe241 --- /dev/null +++ b/tests/php/integration/SettingsFormUpdatersTest.php @@ -0,0 +1,188 @@ +temp_dirs as $dir ) { + $this->rrmdir( $dir ); + } + $this->temp_dirs = array(); + $_POST = array(); + $_REQUEST = array(); + parent::tear_down(); + } + + /** + * Create a writable temp config file seeded with the given PHP lines and + * point $wp_cache_config_file / cache_path (used for the atomic temp write) + * at it. + * + * @param string[] $lines Config lines (without the opening PHP tag). + * @return string Absolute path to the config file. + */ + private function make_config_file( array $lines ) { + $dir = trailingslashit( get_temp_dir() ) . 'wpsc-cfg-' . uniqid(); + mkdir( $dir, 0700, true ); + $this->temp_dirs[] = $dir; + + $config = trailingslashit( $dir ) . 'wp-cache-config.php'; + file_put_contents( $config, "rrmdir( $path ) : unlink( $path ); + } + rmdir( $dir ); + } + + /** + * Characterizes wp_cache_sanitize_value(): HTML-strips/escapes the input, + * splits on whitespace and commas into the by-reference array, and returns a + * whitespace-collapsed var_export of that array. + */ + public function test_wp_cache_sanitize_value_splits_and_escapes() { + $array = array(); + $text = wp_cache_sanitize_value( "foo, bar baz\nqux", $array ); + + $this->assertSame( array( 'foo', 'bar', 'baz', 'qux' ), $array ); + $this->assertSame( "array ( 0 => 'foo', 1 => 'bar', 2 => 'baz', 3 => 'qux', )", $text ); + } + + /** + * Characterizes wp_cache_sanitize_value() HTML handling: tags are stripped + * and entities escaped before splitting. + */ + public function test_wp_cache_sanitize_value_strips_tags_and_escapes_entities() { + $array = array(); + wp_cache_sanitize_value( 'keep a&b', $array ); + + $this->assertSame( array( 'keep', 'a&b' ), $array ); + } + + /** + * Characterizes wp_cache_update_rejected_strings(): posted URIs are parsed + * into $cache_rejected_uri and the parsed array is written to the config + * file. + */ + public function test_update_rejected_strings_parses_and_persists() { + $config = $this->make_config_file( array( '$cache_rejected_uri = array();' ) ); + + $_REQUEST['wp_rejected_uri'] = 'wp-admin, feed'; + + wp_cache_update_rejected_strings(); + + $this->assertSame( array( 'wp-admin', 'feed' ), $GLOBALS['cache_rejected_uri'] ); + $this->assertStringContainsString( + "\$cache_rejected_uri = array ( 0 => 'wp-admin', 1 => 'feed', );", + file_get_contents( $config ) + ); + } + + /** + * Characterizes wp_cache_update_rejected_pages(): each known page type is + * set to 1 when its checkbox is posted, otherwise 0. + */ + public function test_update_rejected_pages_sets_flags_from_checkboxes() { + $this->make_config_file( array( '// pages' ) ); + + $_POST['wp_edit_rejected_pages'] = '1'; + $_POST['wp_cache_pages'] = array( + 'single' => '1', + 'feed' => '1', + ); + + wp_cache_update_rejected_pages(); + + $this->assertSame( 1, $GLOBALS['wp_cache_pages']['single'] ); + $this->assertSame( 1, $GLOBALS['wp_cache_pages']['feed'] ); + $this->assertSame( 0, $GLOBALS['wp_cache_pages']['archives'] ); + $this->assertSame( 0, $GLOBALS['wp_cache_pages']['search'] ); + } + + /** + * Characterizes wpsc_update_tracking_parameters(): posted parameters are + * parsed into $wpsc_tracking_parameters and the ignore flag is stored. + */ + public function test_update_tracking_parameters_parses_and_sets_ignore_flag() { + $this->make_config_file( array( '$wpsc_tracking_parameters = array();' ) ); + + $_POST['tracking_parameters'] = 'utm_source, fbclid'; + $_POST['wpsc_ignore_tracking_parameters'] = 'on'; + + wpsc_update_tracking_parameters(); + + $this->assertSame( array( 'utm_source', 'fbclid' ), $GLOBALS['wpsc_tracking_parameters'] ); + $this->assertSame( 1, $GLOBALS['wpsc_ignore_tracking_parameters'] ); + } + + /** + * Characterizes wpsc_update_debug_settings() without a valid nonce: it makes + * no changes and returns a snapshot of the current debug-related settings. + */ + public function test_update_debug_settings_without_nonce_returns_snapshot() { + $GLOBALS['valid_nonce'] = false; + $GLOBALS['wp_super_cache_debug'] = 1; + $GLOBALS['wp_cache_debug_log'] = 'log.php'; + $GLOBALS['wp_cache_debug_ip'] = '203.0.113.5'; + $GLOBALS['wp_super_cache_comments'] = 1; + $GLOBALS['wp_super_cache_front_page_check'] = 0; + $GLOBALS['wp_super_cache_front_page_clear'] = 0; + $GLOBALS['wp_super_cache_front_page_text'] = ''; + $GLOBALS['wp_super_cache_front_page_notification'] = 0; + $GLOBALS['wp_super_cache_advanced_debug'] = 0; + $GLOBALS['wp_cache_debug_username'] = 'someuser'; + + $snapshot = wpsc_update_debug_settings(); + + $this->assertSame( 1, $snapshot['wp_super_cache_debug'] ); + $this->assertSame( 'log.php', $snapshot['wp_cache_debug_log'] ); + $this->assertSame( '203.0.113.5', $snapshot['wp_cache_debug_ip'] ); + $this->assertSame( 'someuser', $snapshot['wp_cache_debug_username'] ); + } +} diff --git a/wp-cache.php b/wp-cache.php index f1b6621c..2fd103dc 100644 --- a/wp-cache.php +++ b/wp-cache.php @@ -33,6 +33,23 @@ require_once( __DIR__. '/inc/delete-cache-button.php'); require_once( __DIR__. '/inc/preload-notification.php'); require_once __DIR__ . '/inc/boost.php'; +require_once __DIR__ . '/inc/plugins-cookies.php'; +require_once __DIR__ . '/inc/cache-files.php'; +require_once __DIR__ . '/inc/htaccess.php'; +require_once __DIR__ . '/inc/settings-forms.php'; +require_once __DIR__ . '/inc/preload.php'; +require_once __DIR__ . '/inc/lifecycle.php'; +require_once __DIR__ . '/inc/admin-notices.php'; +require_once __DIR__ . '/inc/admin-ui.php'; + +// Plugin activation/deactivation/uninstall hooks must be registered from the +// main plugin file so __FILE__ resolves to wp-cache.php; the handlers live in +// inc/lifecycle.php (relocated in #1061). +register_activation_hook( __FILE__, 'wpsupercache_activate' ); +register_deactivation_hook( __FILE__, 'wpsupercache_deactivate' ); +if ( is_admin() ) { + register_uninstall_hook( __FILE__, 'wpsupercache_uninstall' ); +} if ( ! function_exists( 'wp_cache_phase2' ) ) { require_once( __DIR__. '/wp-cache-phase2.php'); @@ -188,4324 +205,5 @@ function wp_cache_set_home() { } add_action( 'template_redirect', 'wp_cache_set_home' ); -function wpsc_enqueue_styles() { - wp_enqueue_style( - 'wpsc_styles', - plugins_url( 'styling/dashboard.css', __FILE__ ), - array(), - filemtime( plugin_dir_path( __FILE__ ) . 'styling/dashboard.css' ) - ); -} - -// Check for the page parameter to see if we're on a WPSC page. -// phpcs:ignore WordPress.Security.NonceVerification.Recommended -if ( isset( $_GET['page'] ) && $_GET['page'] === 'wpsupercache' ) { - add_action( 'admin_enqueue_scripts', 'wpsc_enqueue_styles' ); -} - -// OSSDL CDN plugin (https://wordpress.org/plugins/ossdl-cdn-off-linker/) include_once( WPCACHEHOME . 'ossdl-cdn.php' ); -function get_wpcachehome() { - if ( function_exists( '_deprecated_function' ) ) { - _deprecated_function( __FUNCTION__, 'WP Super Cache 1.6.5' ); - } - - if ( ! defined( 'WPCACHEHOME' ) ) { - if ( is_file( __DIR__ . '/wp-cache-config-sample.php' ) ) { - define( 'WPCACHEHOME', trailingslashit( __DIR__ ) ); - } elseif ( is_file( __DIR__ . '/wp-super-cache/wp-cache-config-sample.php' ) ) { - define( 'WPCACHEHOME', __DIR__ . '/wp-super-cache/' ); - } else { - die( sprintf( esc_html__( 'Please create %s/wp-cache-config.php from wp-super-cache/wp-cache-config-sample.php', 'wp-super-cache' ), esc_attr( WPCACHECONFIGPATH ) ) ); - } - } -} - -function wpsc_remove_advanced_cache() { - global $wpsc_advanced_cache_filename; - if ( file_exists( $wpsc_advanced_cache_filename ) ) { - $file = file_get_contents( $wpsc_advanced_cache_filename ); - if ( - strpos( $file, "WP SUPER CACHE 0.8.9.1" ) || - strpos( $file, "WP SUPER CACHE 1.2" ) - ) { - unlink( $wpsc_advanced_cache_filename ); - } - } -} - -function wpsupercache_uninstall() { - global $wp_cache_config_file, $cache_path; - - wpsc_remove_advanced_cache(); - - if ( file_exists( $wp_cache_config_file ) ) { - unlink( $wp_cache_config_file ); - } - - wp_cache_remove_index(); - - if ( ! empty( $cache_path ) ) { - @unlink( $cache_path . '.htaccess' ); - @unlink( $cache_path . 'meta' ); - @unlink( $cache_path . 'supercache' ); - } - - wp_clear_scheduled_hook( 'wp_cache_check_site_hook' ); - wp_clear_scheduled_hook( 'wp_cache_gc' ); - wp_clear_scheduled_hook( 'wp_cache_gc_watcher' ); - wp_cache_disable_plugin(); - delete_site_option( 'wp_super_cache_index_detected' ); -} -if ( is_admin() ) { - register_uninstall_hook( __FILE__, 'wpsupercache_uninstall' ); -} - -function wpsupercache_deactivate() { - global $wp_cache_config_file, $wpsc_advanced_cache_filename, $cache_path; - - wpsc_remove_advanced_cache(); - - if ( ! empty( $cache_path ) ) { - prune_super_cache( $cache_path, true ); - wp_cache_remove_index(); - @unlink( $cache_path . '.htaccess' ); - @unlink( $cache_path . 'meta' ); - @unlink( $cache_path . 'supercache' ); - } - - wp_clear_scheduled_hook( 'wp_cache_check_site_hook' ); - wp_clear_scheduled_hook( 'wp_cache_gc' ); - wp_clear_scheduled_hook( 'wp_cache_gc_watcher' ); - wp_cache_replace_line('^ *\$cache_enabled', '$cache_enabled = false;', $wp_cache_config_file); - wp_cache_disable_plugin( false ); // don't delete configuration file - delete_user_option( get_current_user_id(), 'wpsc_dismissed_boost_banner' ); -} -register_deactivation_hook( __FILE__, 'wpsupercache_deactivate' ); - -function wpsupercache_activate() { - global $cache_path; - if ( ! isset( $cache_path ) || $cache_path == '' ) - $cache_path = WP_CONTENT_DIR . '/cache/'; // from sample config file - - ob_start(); - wpsc_init(); - - if ( - ! wp_cache_verify_cache_dir() || - ! wpsc_check_advanced_cache() || - ! wp_cache_verify_config_file() - ) { - $text = ob_get_contents(); - ob_end_clean(); - return false; - } - $text = ob_get_contents(); - wp_cache_check_global_config(); - ob_end_clean(); - wp_schedule_single_event( time() + 10, 'wp_cache_add_site_cache_index' ); -} -register_activation_hook( __FILE__, 'wpsupercache_activate' ); - -function wpsupercache_site_admin() { - return current_user_can( 'setup_network' ); -} - -function wp_cache_add_pages() { - if ( wpsupercache_site_admin() ) { - // In single or MS mode add this menu item too, but only for superadmins in MS mode. - add_options_page( 'WP Super Cache', 'WP Super Cache', 'manage_options', 'wpsupercache', 'wp_cache_manager' ); - } -} -add_action( 'admin_menu', 'wp_cache_add_pages' ); - - -function wp_cache_network_pages() { - add_submenu_page( 'settings.php', 'WP Super Cache', 'WP Super Cache', 'manage_options', 'wpsupercache', 'wp_cache_manager' ); -} -add_action( 'network_admin_menu', 'wp_cache_network_pages' ); - -/** - * Load JavaScript on admin pages. - */ -function wp_super_cache_admin_enqueue_scripts( $hook ) { - if ( 'settings_page_wpsupercache' !== $hook ) { - return; - } - - wp_enqueue_script( - 'wp-super-cache-admin', - trailingslashit( plugin_dir_url( __FILE__ ) ) . 'js/admin.js', - array( 'jquery' ), - WPSC_VERSION_ID, - false - ); - - wp_localize_script( - 'wp-super-cache-admin', - 'wpscAdmin', - array( - 'boostNoticeDismissNonce' => wp_create_nonce( 'wpsc_dismiss_boost_notice' ), - 'boostDismissNonce' => wp_create_nonce( 'wpsc_dismiss_boost_banner' ), - 'boostInstallNonce' => wp_create_nonce( 'updates' ), - 'boostActivateNonce' => wp_create_nonce( 'activate-boost' ), - ) - ); -} -add_action( 'admin_enqueue_scripts', 'wp_super_cache_admin_enqueue_scripts' ); - -/** - * Use the standard WordPress plugin installation ajax handler. - */ -add_action( 'wp_ajax_wpsc_install_plugin', 'wp_ajax_install_plugin' ); - -/** - * Check if Jetpack Boost has been installed. - */ -function wpsc_is_boost_installed() { - $plugins = array_keys( get_plugins() ); - - foreach ( $plugins as $plugin ) { - if ( str_contains( $plugin, 'jetpack-boost/jetpack-boost.php' ) ) { - return true; - } - } - - return false; -} - -/** - * Check if Jetpack Boost is active. - */ -function wpsc_is_boost_active() { - return class_exists( '\Automattic\Jetpack_Boost\Jetpack_Boost' ); -} - -/** - * Admin ajax action: hide the Boost Banner. - */ -function wpsc_hide_boost_banner() { - check_ajax_referer( 'wpsc_dismiss_boost_banner', 'nonce' ); - update_user_option( get_current_user_id(), 'wpsc_dismissed_boost_banner', '1' ); - - wp_die(); -} -add_action( 'wp_ajax_wpsc-hide-boost-banner', 'wpsc_hide_boost_banner' ); - -/** - * Admin ajax action: activate Jetpack Boost. - */ -function wpsc_ajax_activate_boost() { - check_ajax_referer( 'activate-boost' ); - - if ( ! isset( $_POST['source'] ) ) { - wp_send_json_error( 'no source specified', null, JSON_UNESCAPED_SLASHES ); - } - - $source = sanitize_text_field( wp_unslash( $_POST['source'] ) ); - $result = activate_plugin( 'jetpack-boost/jetpack-boost.php' ); - if ( is_wp_error( $result ) ) { - wp_send_json_error( $result->get_error_message(), null, JSON_UNESCAPED_SLASHES ); - } - - wpsc_notify_migration_to_boost( $source ); - - wp_send_json_success( null, null, JSON_UNESCAPED_SLASHES ); -} -add_action( 'wp_ajax_wpsc_activate_boost', 'wpsc_ajax_activate_boost' ); - -/** - * Show a Jetpack Boost installation banner (unless dismissed or installed) - */ -function wpsc_jetpack_boost_install_banner() { - if ( ! wpsc_is_boost_current() ) { - return; - } - // Don't show the banner if Boost is installed, or the banner has been dismissed. - $is_dismissed = '1' === get_user_option( 'wpsc_dismissed_boost_banner' ); - if ( wpsc_is_boost_active() || $is_dismissed ) { - return; - } - - $config = wpsc_get_boost_migration_config(); - $button_url = $config['is_installed'] ? $config['activate_url'] : $config['install_url']; - $button_label = $config['is_installed'] ? __( 'Set up Jetpack Boost', 'wp-super-cache' ) : __( 'Install Jetpack Boost', 'wp-super-cache' ); - $button_class = $config['is_installed'] ? 'wpsc-activate-boost-button' : 'wpsc-install-boost-button'; - $plugin_url = plugin_dir_url( __FILE__ ); - - ?> -
    -
    -
    - - -

    - -

    - -

    - -

    - - - - -
    - -
    - <?php esc_attr_e( 'An image showing the Jetpack Boost dashboard.', 'wp-super-cache' ); ?> -
    -
    - - -
    -

    ' . esc_html__( 'Warning! PHP Safe Mode Enabled!', 'wp-super-cache' ) . '

    '; - echo '

    ' . esc_html__( 'You may experience problems running this plugin because SAFE MODE is enabled.', 'wp-super-cache' ) . '
    '; - - // phpcs:ignore PHPCompatibility.IniDirectives.RemovedIniDirectives.safe_mode_gidDeprecatedRemoved -- Version is checked before access. - if ( ! ini_get( 'safe_mode_gid' ) ) { // @codingStandardsIgnoreLine - esc_html_e( 'Your server is set up to check the owner of PHP scripts before allowing them to read and write files.', 'wp-super-cache' ); - echo '
    '; - printf( __( 'You or an administrator may be able to make it work by changing the group owner of the plugin scripts to match that of the web server user. The group owner of the %s/cache/ directory must also be changed. See the safe mode manual page for further details.', 'wp-super-cache' ), esc_attr( WP_CONTENT_DIR ) ); - } else { - _e( 'You or an administrator must disable this. See the safe mode manual page for further details. This cannot be disabled in a .htaccess file unfortunately. It must be done in the php.ini config file.', 'wp-super-cache' ); - } - echo '

    '; - } - - if ( '' == get_option( 'permalink_structure' ) ) { - echo '

    ' . __( 'Permlink Structure Error', 'wp-super-cache' ) . '

    '; - echo "

    " . __( 'A custom url or permalink structure is required for this plugin to work correctly. Please go to the Permalinks Options Page to configure your permalinks.', 'wp-super-cache' ) . "

    "; - echo '
    '; - return false; - } - - if ( $wp_cache_debug || ! $wp_cache_cron_check ) { - if ( defined( 'DISABLE_WP_CRON' ) && constant( 'DISABLE_WP_CRON' ) ) { - ?> -

    -

    -
    -

    -

    -

    Troubleshooting section of the readme.txt', 'wp-super-cache' ), 'https://wordpress.org/plugins/wp-super-cache/faq/' ); ?>

    -
    - 0.01, 'blocking' => true)); - if( is_array( $cron ) ) { - if( $cron[ 'response' ][ 'code' ] == '404' ) { - ?>

    Warning! wp-cron.php not found!

    -

    -

    Troubleshooting section of the readme.txt', 'wp-super-cache' ), 'https://wordpress.org/plugins/wp-super-cache/faq/' ); ?>

    -
    - ' . __( "Cannot continue... fix previous problems and retry.", 'wp-super-cache' ) . '

    '; - return false; - } - - if ( false == function_exists( 'wpsc_deep_replace' ) ) { - $msg = __( 'Warning! You must set WP_CACHE and WPCACHEHOME in your wp-config.php for this plugin to work correctly:' ) . '
    '; - $msg .= "define( 'WP_CACHE', true );
    "; - $msg .= "define( 'WPCACHEHOME', '" . __DIR__ . "/' );
    "; - wp_die( $msg ); - } - - if (!wp_cache_check_global_config()) { - return false; - } - - if ( 1 == ini_get( 'zlib.output_compression' ) || "on" == strtolower( ini_get( 'zlib.output_compression' ) ) ) { - ?>

    -

    this page for instructions on modifying your php.ini.', 'wp-super-cache' ); ?>

    -

    -

    %s/wp-cache-config.php and cannot be modified. That file must be writeable by the web server to make any changes.', 'wp-super-cache' ), WPCACHECONFIGPATH ); ?> -

    -

    This page explains how to change file permissions.', 'wp-super-cache' ); ?>

    - chmod 666 /wp-cache-config.php
    - chmod 644 /wp-cache-config.php

    -

    -

    this form to enable it.', 'wp-super-cache' ); ?>

    -
    - - - - ' /> -
    -
    -
    -

    -

    chmod 755 /

    -

    This page explains how to change file permissions.', 'wp-super-cache' ); ?>

    -
    - - - - ' /> -
    -
    -
    -

    ' . esc_html__( 'Mobile rewrite rules detected', 'wp-super-cache' ) . '

    '; - echo '

    ' . esc_html__( 'For best performance you should enable "Mobile device support" or delete the mobile rewrite rules in your .htaccess. Look for the 2 lines with the text "2.0\ MMP|240x320" and delete those.', 'wp-super-cache' ) . '

    ' . esc_html__( 'This will have no affect on ordinary users but mobile users will see uncached pages.', 'wp-super-cache' ) . '

    '; - } elseif ( - $wp_cache_mod_rewrite - && $cache_enabled - && $wp_cache_mobile_enabled - && $scrules != '' // phpcs:ignore Universal.Operators.StrictComparisons.LooseNotEqual - && ( - ( - '' != $wp_cache_mobile_prefixes // phpcs:ignore Universal.Operators.StrictComparisons.LooseNotEqual - && ! str_contains( $scrules, addcslashes( str_replace( ', ', '|', $wp_cache_mobile_prefixes ), ' ' ) ) - ) - || ( - '' != $wp_cache_mobile_browsers // phpcs:ignore Universal.Operators.StrictComparisons.LooseNotEqual - && ! str_contains( $scrules, addcslashes( str_replace( ', ', '|', $wp_cache_mobile_browsers ), ' ' ) ) - ) - ) - ) { - ?> -

    -

    -

    -
    1. -
    2. Update Mod_Rewrite Rules button.', 'wp-super-cache' ); ?>
    3. -
    4. - # BEGIN WPSuperCache and # END WPSuperCache and let the plugin regenerate them by reloading this page.', 'wp-super-cache' ), array( 'code' => array() ) ), esc_html( $home_path ) ); - ?> -
    5. -
    6. - # BEGIN WPSuperCache and # END WPSuperCache. There are two sections that look very similar. Just below the line %%{HTTP:Cookie} !^.*(comment_author_|%2$s|wp-postpass_).*$ add these lines: (do it twice, once for each section)', 'wp-super-cache' ), array( 'code' => array() ) ), esc_html( $home_path ), esc_html( wpsc_get_logged_in_cookie() ) ); - ?> -

      -
    -

    -

    - Update Mod_Rewrite Rules button.', 'wp-super-cache' ); ?>

    - __( 'Required to serve compressed supercache files properly.', 'wp-super-cache' ), 'mod_headers' => __( 'Required to set caching information on supercache pages. IE7 users will see old pages without this module.', 'wp-super-cache' ), 'mod_expires' => __( 'Set the expiry date on supercached pages. Visitors may not see new pages when they refresh or leave comments without this module.', 'wp-super-cache' ) ); - foreach( $required_modules as $req => $desc ) { - if( !in_array( $req, $mods ) ) { - $missing_mods[ $req ] = $desc; - } - } - if( isset( $missing_mods) && is_array( $missing_mods ) ) { - ?>

    -

    "; - foreach( $missing_mods as $req => $desc ) { - echo "
  • $req - $desc
  • "; - } - echo ""; - echo "
    "; - } - } - - if ( $valid_nonce && isset( $_POST[ 'action' ] ) && $_POST[ 'action' ] == 'dismiss_htaccess_warning' ) { - wp_cache_replace_line('^ *\$dismiss_htaccess_warning', "\$dismiss_htaccess_warning = 1;", $wp_cache_config_file); - $dismiss_htaccess_warning = 1; - } elseif ( !isset( $dismiss_htaccess_warning ) ) { - $dismiss_htaccess_warning = 0; - } - if ( ! $is_nginx && $dismiss_htaccess_warning == 0 && $wp_cache_mod_rewrite && $super_cache_enabled && get_option( 'siteurl' ) != get_option( 'home' ) ) { // phpcs:ignore Universal.Operators.StrictComparisons.LooseEqual,Universal.Operators.StrictComparisons.LooseNotEqual - ?> -

    -

    here. Unfortunately, WordPress writes to the .htaccess in the install directory, not where your site is served from.
    When you update the rewrite rules in this plugin you will have to copy the file to where your site is hosted. This will be fixed in the future.', 'wp-super-cache' ); ?>

    -
    - - - - ' /> -
    -
    -
    \'\"\r\n\t\(\)\$\[\];#]/', '', $new_cache_path ); - wp_cache_replace_line('^ *\$cache_path', "\$cache_path = " . var_export( $cache_path, true ) . ";", $wp_cache_config_file); - } - - if( isset( $_POST[ 'wp_super_cache_late_init' ] ) ) { - $wp_super_cache_late_init = 1; - } else { - $wp_super_cache_late_init = 0; - } - wp_cache_replace_line('^ *\$wp_super_cache_late_init', "\$wp_super_cache_late_init = " . $wp_super_cache_late_init . ";", $wp_cache_config_file); - - if( isset( $_POST[ 'wp_cache_disable_utf8' ] ) ) { - $wp_cache_disable_utf8 = 1; - } else { - $wp_cache_disable_utf8 = 0; - } - wp_cache_replace_line('^ *\$wp_cache_disable_utf8', "\$wp_cache_disable_utf8 = " . $wp_cache_disable_utf8 . ";", $wp_cache_config_file); - - if( isset( $_POST[ 'wp_cache_no_cache_for_get' ] ) ) { - $wp_cache_no_cache_for_get = 1; - } else { - $wp_cache_no_cache_for_get = 0; - } - wp_cache_replace_line('^ *\$wp_cache_no_cache_for_get', "\$wp_cache_no_cache_for_get = " . $wp_cache_no_cache_for_get . ";", $wp_cache_config_file); - - if( isset( $_POST[ 'wp_supercache_304' ] ) ) { - $wp_supercache_304 = 1; - } else { - $wp_supercache_304 = 0; - } - wp_cache_replace_line('^ *\$wp_supercache_304', "\$wp_supercache_304 = " . $wp_supercache_304 . ";", $wp_cache_config_file); - - if( isset( $_POST[ 'wp_cache_mfunc_enabled' ] ) ) { - $wp_cache_mfunc_enabled = 1; - } else { - $wp_cache_mfunc_enabled = 0; - } - wp_cache_replace_line('^ *\$wp_cache_mfunc_enabled', "\$wp_cache_mfunc_enabled = " . $wp_cache_mfunc_enabled . ";", $wp_cache_config_file); - - if( isset( $_POST[ 'wp_cache_mobile_enabled' ] ) ) { - $wp_cache_mobile_enabled = 1; - } else { - $wp_cache_mobile_enabled = 0; - } - wp_cache_replace_line('^ *\$wp_cache_mobile_enabled', "\$wp_cache_mobile_enabled = " . $wp_cache_mobile_enabled . ";", $wp_cache_config_file); - - if( isset( $_POST[ 'wp_cache_front_page_checks' ] ) ) { - $wp_cache_front_page_checks = 1; - } else { - $wp_cache_front_page_checks = 0; - } - wp_cache_replace_line('^ *\$wp_cache_front_page_checks', "\$wp_cache_front_page_checks = " . $wp_cache_front_page_checks . ";", $wp_cache_config_file); - - if( isset( $_POST[ 'wp_supercache_cache_list' ] ) ) { - $wp_supercache_cache_list = 1; - } else { - $wp_supercache_cache_list = 0; - } - wp_cache_replace_line('^ *\$wp_supercache_cache_list', "\$wp_supercache_cache_list = " . $wp_supercache_cache_list . ";", $wp_cache_config_file); - - if ( isset( $_POST[ 'wp_cache_enabled' ] ) ) { - wp_cache_enable(); - if ( ! defined( 'DISABLE_SUPERCACHE' ) ) { - wp_cache_debug( 'DISABLE_SUPERCACHE is not set, super_cache enabled.' ); - wp_super_cache_enable(); - $super_cache_enabled = true; - } - } else { - wp_cache_disable(); - wp_super_cache_disable(); - $super_cache_enabled = false; - } - - if ( isset( $_POST[ 'wp_cache_mod_rewrite' ] ) && $_POST[ 'wp_cache_mod_rewrite' ] == 1 ) { - $wp_cache_mod_rewrite = 1; - add_mod_rewrite_rules(); - } else { - $wp_cache_mod_rewrite = 0; // cache files served by PHP - remove_mod_rewrite_rules(); - } - wp_cache_setting( 'wp_cache_mod_rewrite', $wp_cache_mod_rewrite ); - - if( isset( $_POST[ 'wp_cache_clear_on_post_edit' ] ) ) { - $wp_cache_clear_on_post_edit = 1; - } else { - $wp_cache_clear_on_post_edit = 0; - } - wp_cache_replace_line('^ *\$wp_cache_clear_on_post_edit', "\$wp_cache_clear_on_post_edit = " . $wp_cache_clear_on_post_edit . ";", $wp_cache_config_file); - - if( isset( $_POST[ 'cache_rebuild_files' ] ) ) { - $cache_rebuild_files = 1; - } else { - $cache_rebuild_files = 0; - } - wp_cache_replace_line('^ *\$cache_rebuild_files', "\$cache_rebuild_files = " . $cache_rebuild_files . ";", $wp_cache_config_file); - - if ( isset( $_POST[ 'wpsc_save_headers' ] ) ) { - $wpsc_save_headers = 1; - } else { - $wpsc_save_headers = 0; - } - wp_cache_replace_line('^ *\$wpsc_save_headers', "\$wpsc_save_headers = " . $wpsc_save_headers . ";", $wp_cache_config_file); - - if( isset( $_POST[ 'wp_cache_mutex_disabled' ] ) ) { - $wp_cache_mutex_disabled = 0; - } else { - $wp_cache_mutex_disabled = 1; - } - if( defined( 'WPSC_DISABLE_LOCKING' ) ) { - $wp_cache_mutex_disabled = 1; - } - wp_cache_replace_line('^ *\$wp_cache_mutex_disabled', "\$wp_cache_mutex_disabled = " . $wp_cache_mutex_disabled . ";", $wp_cache_config_file); - - if ( isset( $_POST['wp_cache_not_logged_in'] ) && $_POST['wp_cache_not_logged_in'] != 0 ) { - if ( $wp_cache_not_logged_in == 0 && function_exists( 'prune_super_cache' ) ) { - prune_super_cache( $cache_path, true ); - } - $wp_cache_not_logged_in = (int)$_POST['wp_cache_not_logged_in']; - } else { - $wp_cache_not_logged_in = 0; - } - wp_cache_replace_line('^ *\$wp_cache_not_logged_in', "\$wp_cache_not_logged_in = " . $wp_cache_not_logged_in . ";", $wp_cache_config_file); - - if( isset( $_POST[ 'wp_cache_make_known_anon' ] ) ) { - if( $wp_cache_make_known_anon == 0 && function_exists( 'prune_super_cache' ) ) - prune_super_cache ($cache_path, true); - $wp_cache_make_known_anon = 1; - } else { - $wp_cache_make_known_anon = 0; - } - wp_cache_replace_line('^ *\$wp_cache_make_known_anon', "\$wp_cache_make_known_anon = " . $wp_cache_make_known_anon . ";", $wp_cache_config_file); - - if( isset( $_POST[ 'wp_cache_refresh_single_only' ] ) ) { - $wp_cache_refresh_single_only = 1; - } else { - $wp_cache_refresh_single_only = 0; - } - wp_cache_setting( 'wp_cache_refresh_single_only', $wp_cache_refresh_single_only ); - - if ( defined( 'WPSC_DISABLE_COMPRESSION' ) ) { - $cache_compression = 0; - wp_cache_replace_line('^ *\$cache_compression', "\$cache_compression = " . $cache_compression . ";", $wp_cache_config_file); - } else { - if ( isset( $_POST[ 'cache_compression' ] ) ) { - $new_cache_compression = 1; - } else { - $new_cache_compression = 0; - } - if ( 1 == ini_get( 'zlib.output_compression' ) || "on" == strtolower( ini_get( 'zlib.output_compression' ) ) ) { - echo '
    ' . __( "Warning! You attempted to enable compression but zlib.output_compression is enabled. See #21 in the Troubleshooting section of the readme file.", 'wp-super-cache' ) . '
    '; - } elseif ( $new_cache_compression !== (int) $cache_compression ) { - $cache_compression = $new_cache_compression; - wp_cache_replace_line( '^ *\$cache_compression', "\$cache_compression = $cache_compression;", $wp_cache_config_file ); - if ( function_exists( 'prune_super_cache' ) ) { - prune_super_cache( $cache_path, true ); - } - delete_option( 'super_cache_meta' ); - } - } - } -} -if ( isset( $_GET[ 'page' ] ) && $_GET[ 'page' ] == 'wpsupercache' ) - add_action( 'admin_init', 'wp_cache_manager_updates' ); - -function wp_cache_manager() { - global $wp_cache_config_file, $valid_nonce, $supercachedir, $cache_path, $cache_enabled, $cache_compression, $super_cache_enabled; - global $wp_cache_clear_on_post_edit, $cache_rebuild_files, $wp_cache_mutex_disabled, $wp_cache_mobile_enabled, $wp_cache_mobile_browsers, $wp_cache_no_cache_for_get; - global $wp_cache_not_logged_in, $wp_cache_make_known_anon, $wp_supercache_cache_list, $cache_page_secret; - global $wp_super_cache_front_page_check, $wp_cache_refresh_single_only, $wp_cache_mobile_prefixes; - global $wp_cache_mod_rewrite, $wp_supercache_304, $wp_super_cache_late_init, $wp_cache_front_page_checks, $wp_cache_disable_utf8, $wp_cache_mfunc_enabled; - global $wp_super_cache_comments, $wp_cache_home_path, $wpsc_save_headers, $is_nginx; - global $wpsc_promo_links; - - if ( !wpsupercache_site_admin() ) - return false; - - // used by mod_rewrite rules and config file - if ( function_exists( "cfmobi_default_browsers" ) ) { - $wp_cache_mobile_browsers = cfmobi_default_browsers( "mobile" ); - $wp_cache_mobile_browsers = array_merge( $wp_cache_mobile_browsers, cfmobi_default_browsers( "touch" ) ); - } elseif ( function_exists( 'lite_detection_ua_contains' ) ) { - $wp_cache_mobile_browsers = explode( '|', lite_detection_ua_contains() ); - } else { - $wp_cache_mobile_browsers = array( '2.0 MMP', '240x320', '400X240', 'AvantGo', 'BlackBerry', 'Blazer', 'Cellphone', 'Danger', 'DoCoMo', 'Elaine/3.0', 'EudoraWeb', 'Googlebot-Mobile', 'hiptop', 'IEMobile', 'KYOCERA/WX310K', 'LG/U990', 'MIDP-2.', 'MMEF20', 'MOT-V', 'NetFront', 'Newt', 'Nintendo Wii', 'Nitro', 'Nokia', 'Opera Mini', 'Palm', 'PlayStation Portable', 'portalmmm', 'Proxinet', 'ProxiNet', 'SHARP-TQ-GX10', 'SHG-i900', 'Small', 'SonyEricsson', 'Symbian OS', 'SymbianOS', 'TS21i-10', 'UP.Browser', 'UP.Link', 'webOS', 'Windows CE', 'WinWAP', 'YahooSeeker/M1A1-R2D2', 'iPhone', 'iPod', 'iPad', 'Android', 'BlackBerry9530', 'LG-TU915 Obigo', 'LGE VX', 'webOS', 'Nokia5800' ); - } - if ( function_exists( "lite_detection_ua_prefixes" ) ) { - $wp_cache_mobile_prefixes = lite_detection_ua_prefixes(); - } else { - $wp_cache_mobile_prefixes = array( 'w3c ', 'w3c-', 'acs-', 'alav', 'alca', 'amoi', 'audi', 'avan', 'benq', 'bird', 'blac', 'blaz', 'brew', 'cell', 'cldc', 'cmd-', 'dang', 'doco', 'eric', 'hipt', 'htc_', 'inno', 'ipaq', 'ipod', 'jigs', 'kddi', 'keji', 'leno', 'lg-c', 'lg-d', 'lg-g', 'lge-', 'lg/u', 'maui', 'maxo', 'midp', 'mits', 'mmef', 'mobi', 'mot-', 'moto', 'mwbp', 'nec-', 'newt', 'noki', 'palm', 'pana', 'pant', 'phil', 'play', 'port', 'prox', 'qwap', 'sage', 'sams', 'sany', 'sch-', 'sec-', 'send', 'seri', 'sgh-', 'shar', 'sie-', 'siem', 'smal', 'smar', 'sony', 'sph-', 'symb', 't-mo', 'teli', 'tim-', 'tosh', 'tsm-', 'upg1', 'upsi', 'vk-v', 'voda', 'wap-', 'wapa', 'wapi', 'wapp', 'wapr', 'webc', 'winw', 'winw', 'xda ', 'xda-' ); // from http://svn.wp-plugins.org/wordpress-mobile-pack/trunk/plugins/wpmp_switcher/lite_detection.php - } - $wp_cache_mobile_browsers = apply_filters( 'cached_mobile_browsers', $wp_cache_mobile_browsers ); // Allow mobile plugins access to modify the mobile UA list - $wp_cache_mobile_prefixes = apply_filters( 'cached_mobile_prefixes', $wp_cache_mobile_prefixes ); // Allow mobile plugins access to modify the mobile UA prefix list - if ( function_exists( 'do_cacheaction' ) ) { - $wp_cache_mobile_browsers = do_cacheaction( 'wp_super_cache_mobile_browsers', $wp_cache_mobile_browsers ); - $wp_cache_mobile_prefixes = do_cacheaction( 'wp_super_cache_mobile_prefixes', $wp_cache_mobile_prefixes ); - } - $mobile_groups = apply_filters( 'cached_mobile_groups', array() ); // Group mobile user agents by capabilities. Lump them all together by default - // mobile_groups = array( 'apple' => array( 'ipod', 'iphone' ), 'nokia' => array( 'nokia5800', 'symbianos' ) ); - - $wp_cache_mobile_browsers = implode( ', ', $wp_cache_mobile_browsers ); - $wp_cache_mobile_prefixes = implode( ', ', $wp_cache_mobile_prefixes ); - - if ( false == apply_filters( 'wp_super_cache_error_checking', true ) ) - return false; - - if ( function_exists( 'get_supercache_dir' ) ) - $supercachedir = get_supercache_dir(); - if( get_option( 'gzipcompression' ) == 1 ) - update_option( 'gzipcompression', 0 ); - if( !isset( $cache_rebuild_files ) ) - $cache_rebuild_files = 0; - - $valid_nonce = isset($_REQUEST['_wpnonce']) ? wp_verify_nonce($_REQUEST['_wpnonce'], 'wp-cache') : false; - /* http://www.netlobo.com/div_hiding.html */ - ?> - - - -
    -'; - echo ''; - - // Set a default. - if ( false === $cache_enabled && ! isset( $wp_cache_mod_rewrite ) ) { - $wp_cache_mod_rewrite = 0; - } elseif ( ! isset( $wp_cache_mod_rewrite ) && $cache_enabled && $super_cache_enabled ) { - $wp_cache_mod_rewrite = 1; - } - - $admin_url = admin_url( 'options-general.php?page=wpsupercache' ); - $curr_tab = ! empty( $_GET['tab'] ) ? sanitize_text_field( stripslashes( $_GET['tab'] ) ) : ''; // WPCS: sanitization ok. - if ( empty( $curr_tab ) ) { - $curr_tab = 'easy'; - if ( $wp_cache_mod_rewrite ) { - $curr_tab = 'settings'; - echo '

    ' . __( 'Notice: Expert mode caching enabled. Showing Advanced Settings Page by default.', 'wp-super-cache' ) . '

    '; - } - } - - if ( 'preload' === $curr_tab ) { - if ( true == $super_cache_enabled && ! defined( 'DISABLESUPERCACHEPRELOADING' ) ) { - global $wp_cache_preload_interval, $wp_cache_preload_on, $wp_cache_preload_taxonomies, $wp_cache_preload_email_me, $wp_cache_preload_email_volume, $wp_cache_preload_posts, $wpdb; - wpsc_preload_settings(); - $currently_preloading = false; - - echo '
    '; - } - } - - wpsc_admin_tabs( $curr_tab ); - echo '
    '; - - if ( isset( $wp_super_cache_front_page_check ) && $wp_super_cache_front_page_check == 1 && ! wp_next_scheduled( 'wp_cache_check_site_hook' ) ) { - wp_schedule_single_event( time() + 360, 'wp_cache_check_site_hook' ); - wp_cache_debug( 'scheduled wp_cache_check_site_hook for 360 seconds time.', 2 ); - } - - if ( isset( $_REQUEST['wp_restore_config'] ) && $valid_nonce ) { - unlink( $wp_cache_config_file ); - echo '' . esc_html__( 'Configuration file changed, some values might be wrong. Load the page again from the "Settings" menu to reset them.', 'wp-super-cache' ) . ''; - } - - if ( substr( get_option( 'permalink_structure' ), -1 ) == '/' ) { - wp_cache_replace_line( '^ *\$wp_cache_slash_check', "\$wp_cache_slash_check = 1;", $wp_cache_config_file ); - } else { - wp_cache_replace_line( '^ *\$wp_cache_slash_check', "\$wp_cache_slash_check = 0;", $wp_cache_config_file ); - } - $home_path = parse_url( site_url() ); - $home_path = trailingslashit( array_key_exists( 'path', $home_path ) ? $home_path['path'] : '' ); - if ( ! isset( $wp_cache_home_path ) ) { - $wp_cache_home_path = '/'; - wp_cache_setting( 'wp_cache_home_path', '/' ); - } - if ( "$home_path" != "$wp_cache_home_path" ) { - wp_cache_setting( 'wp_cache_home_path', $home_path ); - } - - if ( $wp_cache_mobile_enabled == 1 ) { - update_cached_mobile_ua_list( $wp_cache_mobile_browsers, $wp_cache_mobile_prefixes, $mobile_groups ); - } - - ?> - - -
    - - '; - wp_cache_files(); - break; - case 'preload': - wpsc_render_partial( - 'preload', - compact( - 'cache_enabled', - 'super_cache_enabled', - 'admin_url', - 'wp_cache_preload_interval', - 'wp_cache_preload_on', - 'wp_cache_preload_taxonomies', - 'wp_cache_preload_email_me', - 'wp_cache_preload_email_volume', - 'currently_preloading', - 'wp_cache_preload_posts' - ) - ); - - break; - case 'plugins': - wpsc_plugins_tab(); - break; - case 'debug': - global $wp_super_cache_debug, $wp_cache_debug_log, $wp_cache_debug_ip, $wp_cache_debug_ip; - global $wp_super_cache_front_page_text, $wp_super_cache_front_page_notification; - global $wp_super_cache_advanced_debug, $wp_cache_debug_username, $wp_super_cache_front_page_clear; - wpsc_render_partial( - 'debug', - compact( 'wp_super_cache_debug', 'wp_cache_debug_log', 'wp_cache_debug_ip', 'cache_path', 'valid_nonce', 'wp_cache_config_file', 'wp_super_cache_comments', 'wp_super_cache_front_page_check', 'wp_super_cache_front_page_clear', 'wp_super_cache_front_page_text', 'wp_super_cache_front_page_notification', 'wp_super_cache_advanced_debug', 'wp_cache_debug_username', 'wp_cache_home_path' ) - ); - break; - case 'settings': - global $cache_acceptable_files, $wpsc_rejected_cookies, $cache_rejected_uri, $wp_cache_pages; - global $cache_max_time, $wp_cache_config_file, $valid_nonce, $super_cache_enabled, $cache_schedule_type, $cache_scheduled_time, $cache_schedule_interval, $cache_time_interval, $cache_gc_email_me, $wp_cache_preload_on; - - wp_cache_update_rejected_pages(); - wp_cache_update_rejected_cookies(); - wp_cache_update_rejected_strings(); - wp_cache_update_accepted_strings(); - wp_cache_time_update(); - - wpsc_render_partial( - 'advanced', - compact( - 'wp_cache_front_page_checks', - 'admin_url', - 'cache_enabled', - 'super_cache_enabled', - 'wp_cache_mod_rewrite', - 'is_nginx', - 'wp_cache_not_logged_in', - 'wp_cache_no_cache_for_get', - 'cache_compression', - 'cache_rebuild_files', - 'wpsc_save_headers', - 'wp_supercache_304', - 'wp_cache_make_known_anon', - 'wp_cache_mfunc_enabled', - 'wp_cache_mobile_enabled', - 'wp_cache_mobile_browsers', - 'wp_cache_disable_utf8', - 'wp_cache_clear_on_post_edit', - 'wp_cache_front_page_checks', - 'wp_cache_refresh_single_only', - 'wp_supercache_cache_list', - 'wp_cache_mutex_disabled', - 'wp_super_cache_late_init', - 'cache_page_secret', - 'cache_path', - 'cache_acceptable_files', - 'wpsc_rejected_cookies', - 'cache_rejected_uri', - 'wp_cache_pages', - 'cache_max_time', - 'valid_nonce', - 'super_cache_enabled', - 'cache_schedule_type', - 'cache_scheduled_time', - 'cache_schedule_interval', - 'cache_time_interval', - 'cache_gc_email_me', - 'wp_cache_mobile_prefixes', - 'wp_cache_preload_on' - ) - ); - - wpsc_edit_tracking_parameters(); - wpsc_edit_rejected_ua(); - wpsc_lockdown(); - wpsc_restore_settings(); - - break; - case 'easy': - default: - wpsc_render_partial( - 'easy', - array( - 'admin_url' => $admin_url, - 'cache_enabled' => $cache_enabled, - 'is_nginx' => $is_nginx, - 'wp_cache_mod_rewrite' => $wp_cache_mod_rewrite, - 'valid_nonce' => $valid_nonce, - 'cache_path' => $cache_path, - 'wp_super_cache_comments' => $wp_super_cache_comments, - ) - ); - break; - } - ?> - - - - -
    - -

    -
      -
    • -
    • -
    • -
    • -
    - -

    -
      -
    1. Debug tab for diagnostics.', 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache&tab=debug' ) ); ?>
    2. -
    3. - plugin documentation.', 'wp-super-cache' ), - 'https://jetpack.com/support/wp-super-cache/' - ) - ); - ?> -
    4. -
    5. - support forum.', 'wp-super-cache' ), - 'https://wordpress.org/support/plugin/wp-super-cache/' - ) - ); - ?> -
    6. -
    7. development version for the latest fixes (changelog).', 'wp-super-cache' ), 'https://odd.blog/y/2o', 'https://plugins.trac.wordpress.org/log/wp-super-cache/' ); ?>
    8. -
    -

    -

    rate us and give feedback.', 'wp-super-cache' ), 'https://wordpress.org/support/plugin/wp-super-cache/reviews?rate=5#new-post' ); ?>

    - - -

    %2$s', 'wp-super-cache' ), date( 'M j, Y', $start_date ), number_format( get_option( 'wpsupercache_count' ) ) ); ?>

    - -

      - " . esc_html( substr( $url['url'] ?? '', 0, 20 ) ) . "\n"; - } - ?> -
    - -

    - -
    -
    -
    -
    - - - '; - echo '

    ' . esc_html__( 'Cache plugins are PHP scripts you\'ll find in a dedicated folder inside the WP Super Cache folder (wp-super-cache/plugins/). They load at the same time as WP Super Cache, and before regular WordPress plugins.', 'wp-super-cache' ) . '

    '; - echo '

    ' . esc_html__( 'Keep in mind that cache plugins are for advanced users only. To create and manage them, you\'ll need extensive knowledge of both PHP and WordPress actions.', 'wp-super-cache' ) . '

    '; - echo '

    ' . sprintf( __( 'Warning! Due to the way WordPress upgrades plugins, the ones you upload to the WP Super Cache folder (wp-super-cache/plugins/) will be deleted when you upgrade WP Super Cache. To avoid this loss, load your cache plugins from a different location. When you set $wp_cache_plugins_dir to the new location in wp-config.php, WP Super Cache will look there instead.
    You can find additional details in the developer documentation.', 'wp-super-cache' ), 'https://odd.blog/wp-super-cache-developers/' ) . '

    '; - echo ''; - echo '
    '; - ob_start(); - if ( defined( 'WP_CACHE' ) ) { - if ( function_exists( 'do_cacheaction' ) ) { - do_cacheaction( 'cache_admin_page' ); - } - } - $out = ob_get_contents(); - ob_end_clean(); - - if ( SUBMITDISABLED == ' ' && $out != '' ) { - echo '

    ' . esc_html__( 'Available Plugins', 'wp-super-cache' ) . '

    '; - echo '
      '; - echo $out; - echo '
    '; - } - echo '
    '; -} - -function wpsc_admin_tabs( $current = '' ) { - global $cache_enabled, $super_cache_enabled, $wp_cache_mod_rewrite; - - if ( '' === $current ) { - $current = ! empty( $_GET['tab'] ) ? stripslashes( $_GET['tab'] ) : ''; // WPCS: CSRF ok, sanitization ok. - } - - $admin_url = admin_url( 'options-general.php?page=wpsupercache' ); - $admin_tabs = array( - 'easy' => __( 'Easy', 'wp-super-cache' ), - 'settings' => __( 'Advanced', 'wp-super-cache' ), - 'cdn' => __( 'CDN', 'wp-super-cache' ), - 'contents' => __( 'Contents', 'wp-super-cache' ), - 'preload' => __( 'Preload', 'wp-super-cache' ), - 'plugins' => __( 'Plugins', 'wp-super-cache' ), - 'debug' => __( 'Debug', 'wp-super-cache' ), - ); - - echo '
      '; - - foreach ( $admin_tabs as $tab => $name ) { - printf( - '
    • %s
    • ', - esc_attr( $tab === $current ? 'wpsc-nav-tab wpsc-nav-tab-selected' : 'wpsc-nav-tab' ), - esc_url_raw( add_query_arg( 'tab', $tab, $admin_url ) ), - esc_html( $name ) - ); - } - - echo '
    '; -} - -function wpsc_restore_settings() { - $admin_url = admin_url( 'options-general.php?page=wpsupercache' ); - wpsc_render_partial( - 'restore', - compact( 'admin_url' ) - ); -} - -function comment_form_lockdown_message() { - ?>

    \'\"\r\n\t\(\)\$\[\];#]/', '', $page ) ); - if ( $page != '' ) { - $cached_direct_pages[] = $page; - $out .= "'$page', "; - } - } - } - if ( $valid_nonce && array_key_exists('new_direct_page', $_POST) && $_POST[ 'new_direct_page' ] && '' != $_POST[ 'new_direct_page' ] ) { - $page = str_replace( get_option( 'siteurl' ), '', $_POST[ 'new_direct_page' ] ); - $page = str_replace( '..', '', preg_replace( '/[ <>\'\"\r\n\t\(\)\$\[\];#]/', '', $page ) ); - if ( substr( $page, 0, 1 ) != '/' ) - $page = '/' . $page; - if ( $page != '/' || false == is_array( $cached_direct_pages ) || in_array( $page, $cached_direct_pages ) == false ) { - $cached_direct_pages[] = $page; - $out .= "'$page', "; - - @unlink( trailingslashit( ABSPATH . $page ) . "index.html" ); - wpsc_delete_files( get_supercache_dir() . $page ); - } - } - - if ( $out != '' ) { - $out = substr( $out, 0, -2 ); - } - if ( $out == "''" ) { - $out = ''; - } - $out = '$cached_direct_pages = array( ' . $out . ' );'; - wp_cache_replace_line('^ *\$cached_direct_pages', "$out", $wp_cache_config_file); - - if ( !empty( $expiredfiles ) ) { - foreach( $expiredfiles as $file ) { - if( $file != '' ) { - $firstfolder = explode( '/', $file ); - $firstfolder = ABSPATH . $firstfolder[1]; - $file = ABSPATH . $file; - $file = realpath( str_replace( '..', '', preg_replace('/[ <>\'\"\r\n\t\(\)]/', '', $file ) ) ); - if ( $file ) { - @unlink( trailingslashit( $file ) . "index.html" ); - @unlink( trailingslashit( $file ) . "index.html.gz" ); - RecursiveFolderDelete( trailingslashit( $firstfolder ) ); - } - } - } - } - - if ( $valid_nonce && array_key_exists('deletepage', $_POST) && $_POST[ 'deletepage' ] ) { - $page = str_replace( '..', '', preg_replace('/[ <>\'\"\r\n\t\(\)]/', '', $_POST['deletepage'] ) ) . '/'; - $pagefile = realpath( ABSPATH . $page . 'index.html' ); - if ( substr( $pagefile, 0, strlen( ABSPATH ) ) != ABSPATH || false == wp_cache_confirm_delete( ABSPATH . $page ) ) { - die( __( 'Cannot delete directory', 'wp-super-cache' ) ); - } - $firstfolder = explode( '/', $page ); - $firstfolder = ABSPATH . $firstfolder[1]; - $page = ABSPATH . $page; - if( is_file( $pagefile ) && is_writeable_ACLSafe( $pagefile ) && is_writeable_ACLSafe( $firstfolder ) ) { - @unlink( $pagefile ); - @unlink( $pagefile . '.gz' ); - RecursiveFolderDelete( $firstfolder ); - } - } - - return $cached_direct_pages; -} - -function wpsc_lockdown() { - global $cached_direct_pages, $cache_enabled, $super_cache_enabled; - - $admin_url = admin_url( 'options-general.php?page=wpsupercache' ); - $wp_lock_down = wp_update_lock_down(); - - wpsc_render_partial( - 'lockdown', - compact( 'cached_direct_pages', 'cache_enabled', 'super_cache_enabled', 'admin_url', 'wp_lock_down' ) - ); -} - -function RecursiveFolderDelete ( $folderPath ) { // from http://www.php.net/manual/en/function.rmdir.php - if( trailingslashit( constant( 'ABSPATH' ) ) == trailingslashit( $folderPath ) ) - return false; - if ( @is_dir ( $folderPath ) ) { - $dh = @opendir($folderPath); - while (false !== ($value = @readdir($dh))) { - if ( $value != "." && $value != ".." ) { - $value = $folderPath . "/" . $value; - if ( @is_dir ( $value ) ) { - RecursiveFolderDelete ( $value ); - } - } - } - return @rmdir ( $folderPath ); - } else { - return FALSE; - } -} - -function wp_cache_time_update() { - global $cache_max_time, $wp_cache_config_file, $valid_nonce, $cache_schedule_type, $cache_scheduled_time, $cache_schedule_interval, $cache_time_interval, $cache_gc_email_me; - if ( isset( $_POST[ 'action' ] ) && $_POST[ 'action' ] == 'expirytime' ) { - - if ( false == $valid_nonce ) - return false; - - if( !isset( $cache_schedule_type ) ) { - $cache_schedule_type = 'interval'; - wp_cache_replace_line('^ *\$cache_schedule_type', "\$cache_schedule_type = '$cache_schedule_type';", $wp_cache_config_file); - } - - if( !isset( $cache_scheduled_time ) ) { - $cache_scheduled_time = '00:00'; - wp_cache_replace_line('^ *\$cache_scheduled_time', "\$cache_scheduled_time = '$cache_scheduled_time';", $wp_cache_config_file); - } - - if( !isset( $cache_max_time ) ) { - $cache_max_time = 3600; - wp_cache_replace_line('^ *\$cache_max_time', "\$cache_max_time = $cache_max_time;", $wp_cache_config_file); - } - - if ( !isset( $cache_time_interval ) ) { - $cache_time_interval = $cache_max_time; - wp_cache_replace_line('^ *\$cache_time_interval', "\$cache_time_interval = '$cache_time_interval';", $wp_cache_config_file); - } - - if ( isset( $_POST['wp_max_time'] ) ) { - $cache_max_time = (int)$_POST['wp_max_time']; - wp_cache_replace_line('^ *\$cache_max_time', "\$cache_max_time = $cache_max_time;", $wp_cache_config_file); - // schedule gc watcher - if ( false == wp_next_scheduled( 'wp_cache_gc_watcher' ) ) - wp_schedule_event( time()+600, 'hourly', 'wp_cache_gc_watcher' ); - } - - if ( isset( $_POST[ 'cache_gc_email_me' ] ) ) { - $cache_gc_email_me = 1; - wp_cache_replace_line('^ *\$cache_gc_email_me', "\$cache_gc_email_me = $cache_gc_email_me;", $wp_cache_config_file); - } else { - $cache_gc_email_me = 0; - wp_cache_replace_line('^ *\$cache_gc_email_me', "\$cache_gc_email_me = $cache_gc_email_me;", $wp_cache_config_file); - } - if ( isset( $_POST[ 'cache_schedule_type' ] ) && $_POST[ 'cache_schedule_type' ] == 'interval' && isset( $_POST['cache_time_interval'] ) ) { - wp_clear_scheduled_hook( 'wp_cache_gc' ); - $cache_schedule_type = 'interval'; - if ( (int)$_POST[ 'cache_time_interval' ] == 0 ) - $_POST[ 'cache_time_interval' ] = 600; - $cache_time_interval = (int)$_POST[ 'cache_time_interval' ]; - wp_schedule_single_event( time() + $cache_time_interval, 'wp_cache_gc' ); - wp_cache_replace_line('^ *\$cache_schedule_type', "\$cache_schedule_type = '$cache_schedule_type';", $wp_cache_config_file); - wp_cache_replace_line('^ *\$cache_time_interval', "\$cache_time_interval = '$cache_time_interval';", $wp_cache_config_file); - } else { // clock - wp_clear_scheduled_hook( 'wp_cache_gc' ); - $cache_schedule_type = 'time'; - if ( !isset( $_POST[ 'cache_scheduled_time' ] ) || - $_POST[ 'cache_scheduled_time' ] == '' || - 5 != strlen( $_POST[ 'cache_scheduled_time' ] ) || - ":" != substr( $_POST[ 'cache_scheduled_time' ], 2, 1 ) - ) - $_POST[ 'cache_scheduled_time' ] = '00:00'; - - $cache_scheduled_time = $_POST[ 'cache_scheduled_time' ]; - - if ( ! preg_match( '/[0-9][0-9]:[0-9][0-9]/', $cache_scheduled_time ) ) { - $cache_scheduled_time = '00:00'; - } - $schedules = wp_get_schedules(); - if ( !isset( $cache_schedule_interval ) ) - $cache_schedule_interval = 'daily'; - if ( isset( $_POST[ 'cache_schedule_interval' ] ) && isset( $schedules[ $_POST[ 'cache_schedule_interval' ] ] ) ) - $cache_schedule_interval = $_POST[ 'cache_schedule_interval' ]; - wp_cache_replace_line('^ *\$cache_schedule_type', "\$cache_schedule_type = '$cache_schedule_type';", $wp_cache_config_file); - wp_cache_replace_line('^ *\$cache_schedule_interval', "\$cache_schedule_interval = '{$cache_schedule_interval}';", $wp_cache_config_file); - wp_cache_replace_line('^ *\$cache_scheduled_time', "\$cache_scheduled_time = '$cache_scheduled_time';", $wp_cache_config_file); - wp_schedule_event( strtotime( $cache_scheduled_time ), $cache_schedule_interval, 'wp_cache_gc' ); - } - } -} - -function wp_cache_sanitize_value($text, & $array) { - $text = esc_html(strip_tags($text)); - $array = preg_split( '/[\s,]+/', rtrim( $text ) ); - $text = var_export($array, true); - $text = preg_replace('/[\s]+/', ' ', $text); - return $text; -} - -function wp_cache_update_rejected_ua() { - global $cache_rejected_user_agent, $wp_cache_config_file, $valid_nonce; - - if ( isset( $_POST[ 'wp_rejected_user_agent' ] ) && $valid_nonce ) { - $_POST[ 'wp_rejected_user_agent' ] = str_replace( ' ', '___', $_POST[ 'wp_rejected_user_agent' ] ); - $text = str_replace( '___', ' ', wp_cache_sanitize_value( $_POST[ 'wp_rejected_user_agent' ], $cache_rejected_user_agent ) ); - wp_cache_replace_line( '^ *\$cache_rejected_user_agent', "\$cache_rejected_user_agent = $text;", $wp_cache_config_file ); - foreach( $cache_rejected_user_agent as $k => $ua ) { - $cache_rejected_user_agent[ $k ] = str_replace( '___', ' ', $ua ); - } - reset( $cache_rejected_user_agent ); - } -} - -function wpsc_edit_rejected_ua() { - global $cache_rejected_user_agent; - - $admin_url = admin_url( 'options-general.php?page=wpsupercache' ); - wp_cache_update_rejected_ua(); - wpsc_render_partial( - 'rejected_user_agents', - compact( 'cache_rejected_user_agent', 'admin_url' ) - ); -} - -function wp_cache_update_rejected_pages() { - global $wp_cache_config_file, $valid_nonce, $wp_cache_pages; - - if ( isset( $_POST[ 'wp_edit_rejected_pages' ] ) && $valid_nonce ) { - $pages = array( 'single', 'pages', 'archives', 'tag', 'frontpage', 'home', 'category', 'feed', 'author', 'search' ); - foreach( $pages as $page ) { - if ( isset( $_POST[ 'wp_cache_pages' ][ $page ] ) ) { - $value = 1; - } else { - $value = 0; - } - wp_cache_replace_line('^ *\$wp_cache_pages\[ "' . $page . '" \]', "\$wp_cache_pages[ \"{$page}\" ] = $value;", $wp_cache_config_file); - $wp_cache_pages[ $page ] = $value; - } - } -} - -function wpsc_update_tracking_parameters() { - global $wpsc_tracking_parameters, $valid_nonce, $wp_cache_config_file; - - if ( isset( $_POST['tracking_parameters'] ) && $valid_nonce ) { - $text = wp_cache_sanitize_value( str_replace( '\\\\', '\\', $_POST['tracking_parameters'] ), $wpsc_tracking_parameters ); - wp_cache_replace_line( '^ *\$wpsc_tracking_parameters', "\$wpsc_tracking_parameters = $text;", $wp_cache_config_file ); - wp_cache_setting( 'wpsc_ignore_tracking_parameters', isset( $_POST['wpsc_ignore_tracking_parameters'] ) ? 1 : 0 ); - } -} - -function wpsc_edit_tracking_parameters() { - global $wpsc_tracking_parameters, $wpsc_ignore_tracking_parameters; - - $admin_url = admin_url( 'options-general.php?page=wpsupercache' ); - wpsc_update_tracking_parameters(); - - if ( ! isset( $wpsc_tracking_parameters ) ) { - $wpsc_tracking_parameters = array( 'fbclid', 'ref', 'gclid', 'fb_source', 'mc_cid', 'mc_eid', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'utm_expid', 'mtm_source', 'mtm_medium', 'mtm_campaign', 'mtm_keyword', 'mtm_content', 'mtm_cid', 'mtm_group', 'mtm_placement', 'ysclid', 'srsltid', 'yclid' ); - } - - if ( ! isset( $wpsc_ignore_tracking_parameters ) ) { - $wpsc_ignore_tracking_parameters = 0; - } - wpsc_render_partial( - 'tracking_parameters', - compact( 'wpsc_ignore_tracking_parameters', 'wpsc_tracking_parameters', 'admin_url' ) - ); -} - -function wp_cache_update_rejected_cookies() { - global $wpsc_rejected_cookies, $wp_cache_config_file, $valid_nonce; - - if ( isset( $_POST['wp_rejected_cookies'] ) && $valid_nonce ) { - $text = wp_cache_sanitize_value( str_replace( '\\\\', '\\', $_POST['wp_rejected_cookies'] ), $wpsc_rejected_cookies ); - wp_cache_replace_line( '^ *\$wpsc_rejected_cookies', "\$wpsc_rejected_cookies = $text;", $wp_cache_config_file ); - } -} - -function wp_cache_update_rejected_strings() { - global $cache_rejected_uri, $wp_cache_config_file, $valid_nonce; - - if ( isset($_REQUEST['wp_rejected_uri']) && $valid_nonce ) { - $text = wp_cache_sanitize_value( str_replace( '\\\\', '\\', $_REQUEST['wp_rejected_uri'] ), $cache_rejected_uri ); - wp_cache_replace_line('^ *\$cache_rejected_uri', "\$cache_rejected_uri = $text;", $wp_cache_config_file); - } -} - -function wp_cache_update_accepted_strings() { - global $cache_acceptable_files, $wp_cache_config_file, $valid_nonce; - - if ( isset( $_REQUEST[ 'wp_accepted_files' ] ) && $valid_nonce ) { - $text = wp_cache_sanitize_value( $_REQUEST[ 'wp_accepted_files' ], $cache_acceptable_files ); - wp_cache_replace_line( '^ *\$cache_acceptable_files', "\$cache_acceptable_files = $text;", $wp_cache_config_file ); - } -} - -function wpsc_update_debug_settings() { - global $wp_super_cache_debug, $wp_cache_debug_log, $wp_cache_debug_ip, $cache_path, $valid_nonce, $wp_cache_config_file, $wp_super_cache_comments; - global $wp_super_cache_front_page_check, $wp_super_cache_front_page_clear, $wp_super_cache_front_page_text, $wp_super_cache_front_page_notification, $wp_super_cache_advanced_debug; - global $wp_cache_debug_username; - - if ( ! isset( $wp_super_cache_comments ) ) { - $wp_super_cache_comments = 1; // defaults to "enabled". - wp_cache_setting( 'wp_super_cache_comments', $wp_super_cache_comments ); - } - - if ( false == $valid_nonce ) { - return array ( - 'wp_super_cache_debug' => $wp_super_cache_debug, - 'wp_cache_debug_log' => $wp_cache_debug_log, - 'wp_cache_debug_ip' => $wp_cache_debug_ip, - 'wp_super_cache_comments' => $wp_super_cache_comments, - 'wp_super_cache_front_page_check' => $wp_super_cache_front_page_check, - 'wp_super_cache_front_page_clear' => $wp_super_cache_front_page_clear, - 'wp_super_cache_front_page_text' => $wp_super_cache_front_page_text, - 'wp_super_cache_front_page_notification' => $wp_super_cache_front_page_notification, - 'wp_super_cache_advanced_debug' => $wp_super_cache_advanced_debug, - 'wp_cache_debug_username' => $wp_cache_debug_username, - ); - } - - if ( isset( $_POST[ 'wpsc_delete_log' ] ) && $_POST[ 'wpsc_delete_log' ] == 1 && $wp_cache_debug_log != '' ) { - @unlink( $cache_path . $wp_cache_debug_log ); - extract( wpsc_create_debug_log( $wp_cache_debug_log, $wp_cache_debug_username ) ); // $wp_cache_debug_log, $wp_cache_debug_username - } - - if ( ! isset( $wp_cache_debug_log ) || $wp_cache_debug_log == '' ) { - extract( wpsc_create_debug_log() ); // $wp_cache_debug_log, $wp_cache_debug_username - } elseif ( ! file_exists( $cache_path . $wp_cache_debug_log ) ) { // make sure debug log exists before toggling debugging - extract( wpsc_create_debug_log( $wp_cache_debug_log, $wp_cache_debug_username ) ); // $wp_cache_debug_log, $wp_cache_debug_username - } - $wp_super_cache_debug = ( isset( $_POST[ 'wp_super_cache_debug' ] ) && $_POST[ 'wp_super_cache_debug' ] == 1 ) ? 1 : 0; - wp_cache_setting( 'wp_super_cache_debug', $wp_super_cache_debug ); - - if ( isset( $_POST[ 'wp_cache_debug' ] ) ) { - wp_cache_setting( 'wp_cache_debug_username', $wp_cache_debug_username ); - wp_cache_setting( 'wp_cache_debug_log', $wp_cache_debug_log ); - $wp_super_cache_comments = isset( $_POST[ 'wp_super_cache_comments' ] ) ? 1 : 0; - wp_cache_setting( 'wp_super_cache_comments', $wp_super_cache_comments ); - if ( isset( $_POST[ 'wp_cache_debug_ip' ] ) && filter_var( $_POST[ 'wp_cache_debug_ip' ], FILTER_VALIDATE_IP ) ) { - $wp_cache_debug_ip = esc_html( preg_replace( '/[ <>\'\"\r\n\t\(\)\$\[\];#]/', '', $_POST[ 'wp_cache_debug_ip' ] ) ); - } else { - $wp_cache_debug_ip = ''; - } - wp_cache_setting( 'wp_cache_debug_ip', $wp_cache_debug_ip ); - $wp_super_cache_front_page_check = isset( $_POST[ 'wp_super_cache_front_page_check' ] ) ? 1 : 0; - wp_cache_setting( 'wp_super_cache_front_page_check', $wp_super_cache_front_page_check ); - $wp_super_cache_front_page_clear = isset( $_POST[ 'wp_super_cache_front_page_clear' ] ) ? 1 : 0; - wp_cache_setting( 'wp_super_cache_front_page_clear', $wp_super_cache_front_page_clear ); - if ( isset( $_POST[ 'wp_super_cache_front_page_text' ] ) ) { - $wp_super_cache_front_page_text = esc_html( preg_replace( '/[ <>\'\"\r\n\t\(\)\$\[\];#]/', '', $_POST[ 'wp_super_cache_front_page_text' ] ) ); - } else { - $wp_super_cache_front_page_text = ''; - } - wp_cache_setting( 'wp_super_cache_front_page_text', $wp_super_cache_front_page_text ); - $wp_super_cache_front_page_notification = isset( $_POST[ 'wp_super_cache_front_page_notification' ] ) ? 1 : 0; - wp_cache_setting( 'wp_super_cache_front_page_notification', $wp_super_cache_front_page_notification ); - if ( $wp_super_cache_front_page_check == 1 && !wp_next_scheduled( 'wp_cache_check_site_hook' ) ) { - wp_schedule_single_event( time() + 360 , 'wp_cache_check_site_hook' ); - wp_cache_debug( 'scheduled wp_cache_check_site_hook for 360 seconds time.' ); - } - } - - return array ( - 'wp_super_cache_debug' => $wp_super_cache_debug, - 'wp_cache_debug_log' => $wp_cache_debug_log, - 'wp_cache_debug_ip' => $wp_cache_debug_ip, - 'wp_super_cache_comments' => $wp_super_cache_comments, - 'wp_super_cache_front_page_check' => $wp_super_cache_front_page_check, - 'wp_super_cache_front_page_clear' => $wp_super_cache_front_page_clear, - 'wp_super_cache_front_page_text' => $wp_super_cache_front_page_text, - 'wp_super_cache_front_page_notification' => $wp_super_cache_front_page_notification, - 'wp_super_cache_advanced_debug' => $wp_super_cache_advanced_debug, - 'wp_cache_debug_username' => $wp_cache_debug_username, - ); -} - -function wp_cache_enable() { - global $wp_cache_config_file, $cache_enabled; - - if ( $cache_enabled ) { - wp_cache_debug( 'wp_cache_enable: already enabled' ); - return true; - } - - wp_cache_setting( 'cache_enabled', true ); - wp_cache_debug( 'wp_cache_enable: enable cache' ); - - $cache_enabled = true; - - if ( wpsc_set_default_gc() ) { - // gc might not be scheduled, check and schedule - $timestamp = wp_next_scheduled( 'wp_cache_gc' ); - if ( false == $timestamp ) { - wp_schedule_single_event( time() + 600, 'wp_cache_gc' ); - } - } -} - -function wp_cache_disable() { - global $wp_cache_config_file, $cache_enabled; - - if ( ! $cache_enabled ) { - wp_cache_debug( 'wp_cache_disable: already disabled' ); - return true; - } - - wp_cache_setting( 'cache_enabled', false ); - wp_cache_debug( 'wp_cache_disable: disable cache' ); - - $cache_enabled = false; - - wp_clear_scheduled_hook( 'wp_cache_check_site_hook' ); - wp_clear_scheduled_hook( 'wp_cache_gc' ); - wp_clear_scheduled_hook( 'wp_cache_gc_watcher' ); -} - -function wp_super_cache_enable() { - global $supercachedir, $wp_cache_config_file, $super_cache_enabled; - - if ( $super_cache_enabled ) { - wp_cache_debug( 'wp_super_cache_enable: already enabled' ); - return true; - } - - wp_cache_setting( 'super_cache_enabled', true ); - wp_cache_debug( 'wp_super_cache_enable: enable cache' ); - - $super_cache_enabled = true; - - if ( ! $supercachedir ) { - $supercachedir = get_supercache_dir(); - } - - if ( is_dir( $supercachedir . '.disabled' ) ) { - if ( is_dir( $supercachedir ) ) { - prune_super_cache( $supercachedir . '.disabled', true ); - @unlink( $supercachedir . '.disabled' ); - } else { - @rename( $supercachedir . '.disabled', $supercachedir ); - } - } -} - -function wp_super_cache_disable() { - global $cache_path, $supercachedir, $wp_cache_config_file, $super_cache_enabled; - - if ( ! $super_cache_enabled ) { - wp_cache_debug( 'wp_super_cache_disable: already disabled' ); - return true; - } - - wp_cache_setting( 'super_cache_enabled', false ); - wp_cache_debug( 'wp_super_cache_disable: disable cache' ); - - $super_cache_enabled = false; - - if ( ! $supercachedir ) { - $supercachedir = get_supercache_dir(); - } - - if ( is_dir( $supercachedir ) ) { - @rename( $supercachedir, $supercachedir . '.disabled' ); - } - sleep( 1 ); // allow existing processes to write to the supercachedir and then delete it - if ( function_exists( 'prune_super_cache' ) && is_dir( $supercachedir ) ) { - prune_super_cache( $cache_path, true ); - } - - if ( $GLOBALS['wp_cache_mod_rewrite'] === 1 ) { - remove_mod_rewrite_rules(); - } -} - -function wp_cache_is_enabled() { - global $wp_cache_config_file; - - if ( get_option( 'gzipcompression' ) ) { - echo '' . __( 'Warning', 'wp-super-cache' ) . ': ' . __( 'GZIP compression is enabled in WordPress, wp-cache will be bypassed until you disable gzip compression.', 'wp-super-cache' ); - return false; - } - - $lines = file( $wp_cache_config_file ); - foreach ( $lines as $line ) { - if ( preg_match( '/^\s*\$cache_enabled\s*=\s*true\s*;/', $line ) ) { - return true; - } - } - - return false; -} - -function wp_cache_remove_index() { - global $cache_path; - - if ( empty( $cache_path ) ) { - return; - } - - @unlink( $cache_path . "index.html" ); - @unlink( $cache_path . "supercache/index.html" ); - @unlink( $cache_path . "blogs/index.html" ); - if ( is_dir( $cache_path . "blogs" ) ) { - $dir = new DirectoryIterator( $cache_path . "blogs" ); - foreach( $dir as $fileinfo ) { - if ( $fileinfo->isDot() ) { - continue; - } - if ( $fileinfo->isDir() ) { - $directory = $cache_path . "blogs/" . $fileinfo->getFilename(); - if ( is_file( $directory . "/index.html" ) ) { - unlink( $directory . "/index.html" ); - } - if ( is_dir( $directory . "/meta" ) ) { - if ( is_file( $directory . "/meta/index.html" ) ) { - unlink( $directory . "/meta/index.html" ); - } - } - } - } - } -} - -function wp_cache_index_notice() { - global $cache_path; - - if ( false == wpsupercache_site_admin() ) - return false; - if ( false == get_site_option( 'wp_super_cache_index_detected' ) ) - return false; - - if ( strlen( $cache_path ) < strlen( ABSPATH ) - || ABSPATH != substr( $cache_path, 0, strlen( ABSPATH ) ) ) - return false; // cache stored outside web root - - if ( get_site_option( 'wp_super_cache_index_detected' ) == 2 ) { - update_site_option( 'wp_super_cache_index_detected', 3 ); - echo "
    "; - echo "

    " . __( 'WP Super Cache Warning!', 'wp-super-cache' ) . '

    '; - echo '

    ' . __( 'All users of this site have been logged out to refresh their login cookies.', 'wp-super-cache' ) . '

    '; - echo '
    '; - return false; - } elseif ( get_site_option( 'wp_super_cache_index_detected' ) != 3 ) { - echo "
    "; - echo "

    " . __( 'WP Super Cache Warning!', 'wp-super-cache' ) . '

    '; - echo '

    ' . __( 'Your server is configured to show files and directories, which may expose sensitive data such as login cookies to attackers in the cache directories. That has been fixed by adding a file named index.html to each directory. If you use simple caching, consider moving the location of the cache directory on the Advanced Settings page.', 'wp-super-cache' ) . '

    '; - echo "

    "; - _e( 'If you just installed WP Super Cache for the first time, you can dismiss this message. Otherwise, you should probably refresh the login cookies of all logged in WordPress users here by clicking the logout link below.', 'wp-super-cache' ); - echo "

    "; - echo '

    ' . esc_html__( 'The logout link will log out all WordPress users on this site except you. Your authentication cookie will be updated, but you will not be logged out.', 'wp-super-cache' ) . '

    '; - echo '' . esc_html__( 'Dismiss', 'wp-super-cache' ) . ''; - echo ' | ' . esc_html__( 'Logout', 'wp-super-cache' ) . ''; - echo '
    '; -?> - -

    ' . $msg . '

    '; -} -add_action( 'admin_notices', 'wpsc_config_file_notices' ); -function wpsc_dismiss_indexhtml_warning() { - check_ajax_referer( 'wpsc-index-dismiss' ); - - if ( ! current_user_can( 'manage_options' ) ) { - wp_send_json_error( null, 403 ); - } - - update_site_option( 'wp_super_cache_index_detected', 3 ); - die( 0 ); -} -add_action( 'wp_ajax_wpsc-index-dismiss', 'wpsc_dismiss_indexhtml_warning' ); - -function wp_cache_logout_all() { - global $current_user; - if ( isset( $_GET[ 'action' ] ) && $_GET[ 'action' ] == 'wpsclogout' && wp_verify_nonce( $_GET[ '_wpnonce' ], 'wpsc_logout' ) ) { - $user_id = $current_user->ID; - WP_Session_Tokens::destroy_all_for_all_users(); - wp_set_auth_cookie( $user_id, false, is_ssl() ); - update_site_option( 'wp_super_cache_index_detected', 2 ); - wp_redirect( admin_url() ); - } -} -if ( isset( $_GET[ 'action' ] ) && $_GET[ 'action' ] == 'wpsclogout' ) - add_action( 'admin_init', 'wp_cache_logout_all' ); - -function wp_cache_add_index_protection() { - global $cache_path, $blog_cache_dir; - - if ( is_dir( $cache_path ) && false == is_file( "$cache_path/index.html" ) ) { - $page = wp_remote_get( home_url( "/wp-content/cache/" ) ); - if ( false == is_wp_error( $page ) ) { - if ( false == get_site_option( 'wp_super_cache_index_detected' ) - && $page[ 'response' ][ 'code' ] == 200 - && stripos( $page[ 'body' ], 'index of' ) ) { - add_site_option( 'wp_super_cache_index_detected', 1 ); // only show this once - } - } - if ( ! function_exists( 'insert_with_markers' ) ) { - include_once( ABSPATH . 'wp-admin/includes/misc.php' ); - } - insert_with_markers( $cache_path . '.htaccess', "INDEX", array( 'Options -Indexes' ) ); - } - - $directories = array( $cache_path, $cache_path . '/supercache/', $cache_path . '/blogs/', $blog_cache_dir, $blog_cache_dir . "/meta" ); - foreach( $directories as $dir ) { - if ( false == is_dir( $dir ) ) - @mkdir( $dir ); - if ( is_dir( $dir ) && false == is_file( "$dir/index.html" ) ) { - $fp = @fopen( "$dir/index.html", 'w' ); - if ( $fp ) - fclose( $fp ); - } - } -} - -function wp_cache_add_site_cache_index() { - global $cache_path; - - wp_cache_add_index_protection(); // root and supercache - - if ( is_dir( $cache_path . "blogs" ) ) { - $dir = new DirectoryIterator( $cache_path . "blogs" ); - foreach( $dir as $fileinfo ) { - if ( $fileinfo->isDot() ) { - continue; - } - if ( $fileinfo->isDir() ) { - $directory = $cache_path . "blogs/" . $fileinfo->getFilename(); - if ( false == is_file( $directory . "/index.html" ) ) { - $fp = @fopen( $directory . "/index.html", 'w' ); - if ( $fp ) - fclose( $fp ); - } - if ( is_dir( $directory . "/meta" ) ) { - if ( false == is_file( $directory . "/meta/index.html" ) ) { - $fp = @fopen( $directory . "/meta/index.html", 'w' ); - if ( $fp ) - fclose( $fp ); - } - } - } - } - } -} - -function wp_cache_verify_cache_dir() { - global $cache_path, $blog_cache_dir; - - $dir = dirname($cache_path); - if ( !file_exists($cache_path) ) { - if ( !is_writeable_ACLSafe( $dir ) || !($dir = mkdir( $cache_path ) ) ) { - echo "" . __( 'Error', 'wp-super-cache' ) . ": " . sprintf( __( 'Your cache directory (%1$s) did not exist and couldn’t be created by the web server. Check %1$s permissions.', 'wp-super-cache' ), $dir ); - return false; - } - } - if ( !is_writeable_ACLSafe($cache_path)) { - echo "" . __( 'Error', 'wp-super-cache' ) . ": " . sprintf( __( 'Your cache directory (%1$s) or %2$s need to be writable for this plugin to work. Double-check it.', 'wp-super-cache' ), $cache_path, $dir ); - return false; - } - - if ( '/' != substr($cache_path, -1)) { - $cache_path .= '/'; - } - - if( false == is_dir( $blog_cache_dir ) ) { - @mkdir( $cache_path . "blogs" ); - if( $blog_cache_dir != $cache_path . "blogs/" ) - @mkdir( $blog_cache_dir ); - } - - if( false == is_dir( $blog_cache_dir . 'meta' ) ) - @mkdir( $blog_cache_dir . 'meta' ); - - wp_cache_add_index_protection(); - return true; -} - -function wp_cache_verify_config_file() { - global $wp_cache_config_file, $wp_cache_config_file_sample, $sem_id, $cache_path; - global $WPSC_HTTP_HOST; - - $new = false; - $dir = dirname($wp_cache_config_file); - - if ( file_exists($wp_cache_config_file) ) { - $lines = implode( ' ', file( $wp_cache_config_file ) ); - if ( ! str_contains( $lines, 'WPCACHEHOME' ) ) { - if( is_writeable_ACLSafe( $wp_cache_config_file ) ) { - @unlink( $wp_cache_config_file ); - } else { - echo "" . __( 'Error', 'wp-super-cache' ) . ": " . sprintf( __( 'Your WP-Cache config file (%s) is out of date and not writable by the Web server. Please delete it and refresh this page.', 'wp-super-cache' ), $wp_cache_config_file ); - return false; - } - } - } elseif( !is_writeable_ACLSafe($dir)) { - echo "" . __( 'Error', 'wp-super-cache' ) . ": " . sprintf( __( 'Configuration file missing and %1$s directory (%2$s) is not writable by the web server. Check its permissions.', 'wp-super-cache' ), WP_CONTENT_DIR, $dir ); - return false; - } - - if ( !file_exists($wp_cache_config_file) ) { - if ( !file_exists($wp_cache_config_file_sample) ) { - echo "" . __( 'Error', 'wp-super-cache' ) . ": " . sprintf( __( 'Sample WP-Cache config file (%s) does not exist. Verify your installation.', 'wp-super-cache' ), $wp_cache_config_file_sample ); - return false; - } - copy($wp_cache_config_file_sample, $wp_cache_config_file); - $dir = str_replace( str_replace( '\\', '/', WP_CONTENT_DIR ), '', str_replace( '\\', '/', __DIR__ ) ); - if ( is_file( __DIR__ . '/wp-cache-config-sample.php' ) ) { - wp_cache_replace_line('define\(\ \'WPCACHEHOME', "\tdefine( 'WPCACHEHOME', WP_CONTENT_DIR . \"{$dir}/\" );", $wp_cache_config_file); - } elseif ( is_file( __DIR__ . '/wp-super-cache/wp-cache-config-sample.php' ) ) { - wp_cache_replace_line('define\(\ \'WPCACHEHOME', "\tdefine( 'WPCACHEHOME', WP_CONTENT_DIR . \"{$dir}/wp-super-cache/\" );", $wp_cache_config_file); - } - $new = true; - } - if ( $sem_id == 5419 && $cache_path != '' && $WPSC_HTTP_HOST != '' ) { - $sem_id = crc32( $WPSC_HTTP_HOST . $cache_path ) & 0x7fffffff; - wp_cache_replace_line('sem_id', '$sem_id = ' . $sem_id . ';', $wp_cache_config_file); - } - if ( $new ) { - require($wp_cache_config_file); - wpsc_set_default_gc( true ); - } - return true; -} - -function wp_cache_create_advanced_cache() { - global $wpsc_advanced_cache_filename, $wpsc_advanced_cache_dist_filename; - if ( file_exists( ABSPATH . 'wp-config.php') ) { - $global_config_file = ABSPATH . 'wp-config.php'; - } elseif ( file_exists( dirname( ABSPATH ) . '/wp-config.php' ) ) { - $global_config_file = dirname( ABSPATH ) . '/wp-config.php'; - } elseif ( defined( 'DEBIAN_FILE' ) && file_exists( DEBIAN_FILE ) ) { - $global_config_file = DEBIAN_FILE; - } else { - die('Cannot locate wp-config.php'); - } - - $line = 'define( \'WPCACHEHOME\', \'' . __DIR__ . '/\' );'; - - if ( ! apply_filters( 'wpsc_enable_wp_config_edit', true ) ) { - echo '

    ' . __( 'Warning', 'wp-super-cache' ) . "! " . sprintf( __( 'Not allowed to edit %s per configuration.', 'wp-super-cache' ), $global_config_file ) . "

    "; - return false; - } - - if ( - ! strpos( file_get_contents( $global_config_file ), "WPCACHEHOME" ) || - ( - defined( 'WPCACHEHOME' ) && - ( - constant( 'WPCACHEHOME' ) == '' || - ( - constant( 'WPCACHEHOME' ) != '' && - ! file_exists( constant( 'WPCACHEHOME' ) . '/wp-cache.php' ) - ) - ) - ) - ) { - if ( - ! is_writeable_ACLSafe( $global_config_file ) || - ! wp_cache_replace_line( 'define *\( *\'WPCACHEHOME\'', $line, $global_config_file ) - ) { - echo '

    ' . __( 'Warning', 'wp-super-cache' ) . "! " . sprintf( __( 'Could not update %s! WPCACHEHOME must be set in config file.', 'wp-super-cache' ), $global_config_file ) . "

    "; - return false; - } - } - $ret = true; - - if ( file_exists( $wpsc_advanced_cache_filename ) ) { - $file = file_get_contents( $wpsc_advanced_cache_filename ); - if ( - ! strpos( $file, "WP SUPER CACHE 0.8.9.1" ) && - ! strpos( $file, "WP SUPER CACHE 1.2" ) - ) { - return false; - } - } - - $file = file_get_contents( $wpsc_advanced_cache_dist_filename ); - $fp = @fopen( $wpsc_advanced_cache_filename, 'w' ); - if( $fp ) { - // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fwrite - fwrite( $fp, $file ); - fclose( $fp ); - do_action( 'wpsc_created_advanced_cache' ); - } else { - $ret = false; - } - return $ret; -} - -/** - * Identify the advanced cache plugin used - * - * @return string The name of the advanced cache plugin, BOOST, WPSC or OTHER. - */ -function wpsc_identify_advanced_cache() { - global $wpsc_advanced_cache_filename; - if ( ! file_exists( $wpsc_advanced_cache_filename ) ) { - return 'NONE'; - } - $contents = file_get_contents( $wpsc_advanced_cache_filename ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents - - if ( false !== str_contains( $contents, 'Boost Cache Plugin' ) ) { - return 'BOOST'; - } - - if ( str_contains( $contents, 'WP SUPER CACHE 0.8.9.1' ) || str_contains( $contents, 'WP SUPER CACHE 1.2' ) ) { - return 'WPSC'; - } - - return 'OTHER'; -} - -function wpsc_check_advanced_cache() { - global $wpsc_advanced_cache_filename; - - $ret = false; - $other_advanced_cache = false; - if ( file_exists( $wpsc_advanced_cache_filename ) ) { - $cache_type = wpsc_identify_advanced_cache(); - switch ( $cache_type ) { - case 'WPSC': - return true; - case 'BOOST': - $other_advanced_cache = 'BOOST'; - break; - default: - $other_advanced_cache = true; - break; - } - } else { - $ret = wp_cache_create_advanced_cache(); - } - - if ( false == $ret ) { - if ( $other_advanced_cache === 'BOOST' ) { - wpsc_deactivate_boost_cache_notice(); - } elseif ( $other_advanced_cache ) { - echo '

    ' . __( 'Warning! You may not be allowed to use this plugin on your site.', 'wp-super-cache' ) . "

    "; - echo '

    ' . - sprintf( - __( 'The file %s was created by another plugin or by your system administrator. Please examine the file carefully by FTP or SSH and consult your hosting documentation. ', 'wp-super-cache' ), - $wpsc_advanced_cache_filename - ) . - '

    '; - echo '

    ' . - __( 'If it was created by another caching plugin please uninstall that plugin first before activating WP Super Cache. If the file is not removed by that action you should delete the file manually.', 'wp-super-cache' ), - '

    '; - echo '

    ' . - __( 'If you need support for this problem contact your hosting provider.', 'wp-super-cache' ), - '

    '; - echo '
    '; - } elseif ( ! is_writeable_ACLSafe( $wpsc_advanced_cache_filename ) ) { - echo '

    ' . __( 'Warning', 'wp-super-cache' ) . "! " . sprintf( __( '%s/advanced-cache.php cannot be updated.', 'wp-super-cache' ), WP_CONTENT_DIR ) . "

    "; - echo '
      '; - echo "
    1. " . - sprintf( - __( 'Make %1$s writable using the chmod command through your ftp or server software. (chmod 777 %1$s) and refresh this page. This is only a temporary measure and you’ll have to make it read only afterwards again. (Change 777 to 755 in the previous command)', 'wp-super-cache' ), - WP_CONTENT_DIR - ) . - "
    2. "; - echo "
    3. " . sprintf( __( 'Refresh this page to update %s/advanced-cache.php', 'wp-super-cache' ), WP_CONTENT_DIR ) . "
    "; - echo sprintf( __( 'If that doesn’t work, make sure the file %s/advanced-cache.php doesn’t exist:', 'wp-super-cache' ), WP_CONTENT_DIR ) . "
      "; - echo "
    "; - echo '
    '; - } - return false; - } - return true; -} - -function wp_cache_check_global_config() { - global $wp_cache_check_wp_config; - - if ( !isset( $wp_cache_check_wp_config ) ) - return true; - - - if ( file_exists( ABSPATH . 'wp-config.php') ) { - $global_config_file = ABSPATH . 'wp-config.php'; - } else { - $global_config_file = dirname( ABSPATH ) . '/wp-config.php'; - } - - if ( preg_match( '#^\s*(define\s*\(\s*[\'"]WP_CACHE[\'"]|const\s+WP_CACHE\s*=)#m', file_get_contents( $global_config_file ) ) === 1 ) { // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents - if ( defined( 'WP_CACHE' ) && ! constant( 'WP_CACHE' ) ) { - ?> -

    -

    -

    define('WP_CACHE', true);

    - ' . __( "

    WP_CACHE constant set to false

    The WP_CACHE constant is used by WordPress to load the code that serves cached pages. Unfortunately, it is set to false. Please edit your wp-config.php and add or edit the following line above the final require_once command:

    define('WP_CACHE', true);

    ", 'wp-super-cache' ) . ""; - } else { - echo '

    ' . __( "Error: WP_CACHE is not enabled in your wp-config.php file and I couldn’t modify it.", 'wp-super-cache' ) . "

    "; - echo "

    " . sprintf( __( "Edit %s and add the following line:
    define('WP_CACHE', true);
    Otherwise, WP-Cache will not be executed by WordPress core. ", 'wp-super-cache' ), $global_config_file ) . "

    "; - } - return false; - } else { - echo "
    " . __( '

    WP_CACHE constant added to wp-config.php

    If you continue to see this warning message please see point 5 of the Troubleshooting Guide. The WP_CACHE line must be moved up.', 'wp-super-cache' ) . "

    "; - } - return true; -} - -function wpsc_generate_sizes_array() { - $sizes = array(); - $cache_types = apply_filters( 'wpsc_cache_types', array( 'supercache', 'wpcache' ) ); - $cache_states = apply_filters( 'wpsc_cache_state', array( 'expired', 'cached' ) ); - foreach( $cache_types as $type ) { - reset( $cache_states ); - foreach( $cache_states as $state ) { - $sizes[ $type ][ $state ] = 0; - } - $sizes[ $type ][ 'fsize' ] = 0; - $sizes[ $type ][ 'cached_list' ] = array(); - $sizes[ $type ][ 'expired_list' ] = array(); - } - return $sizes; -} - -function wp_cache_format_fsize( $fsize ) { - if ( $fsize > 1024 ) { - $fsize = number_format( $fsize / 1024, 2 ) . "MB"; - } elseif ( $fsize != 0 ) { - $fsize = number_format( $fsize, 2 ) . "KB"; - } else { - $fsize = "0KB"; - } - return $fsize; -} - -function wp_cache_regenerate_cache_file_stats() { - global $cache_compression, $supercachedir, $file_prefix, $wp_cache_preload_on, $cache_max_time; - - if ( $supercachedir == '' ) - $supercachedir = get_supercache_dir(); - - $sizes = wpsc_generate_sizes_array(); - $now = time(); - if (is_dir( $supercachedir ) ) { - if ( $dh = opendir( $supercachedir ) ) { - while ( ( $entry = readdir( $dh ) ) !== false ) { - if ( $entry != '.' && $entry != '..' ) { - $sizes = wpsc_dirsize( trailingslashit( $supercachedir ) . $entry, $sizes ); - } - } - closedir( $dh ); - } - } - foreach( $sizes as $cache_type => $list ) { - foreach( array( 'cached_list', 'expired_list' ) as $status ) { - $cached_list = array(); - foreach( $list[ $status ] as $dir => $details ) { - if ( $details[ 'files' ] == 2 && !isset( $details[ 'upper_age' ] ) ) { - $details[ 'files' ] = 1; - } - $cached_list[ $dir ] = $details; - } - $sizes[ $cache_type ][ $status ] = $cached_list; - } - } - if ( $cache_compression ) { - $sizes[ 'supercache' ][ 'cached' ] = intval( $sizes[ 'supercache' ][ 'cached' ] / 2 ); - $sizes[ 'supercache' ][ 'expired' ] = intval( $sizes[ 'supercache' ][ 'expired' ] / 2 ); - } - $cache_stats = array( 'generated' => time(), 'supercache' => $sizes[ 'supercache' ], 'wpcache' => $sizes[ 'wpcache' ] ); - update_option( 'supercache_stats', $cache_stats ); - return $cache_stats; -} - -function wp_cache_files() { - global $cache_path, $file_prefix, $cache_max_time, $valid_nonce, $supercachedir, $super_cache_enabled, $blog_cache_dir, $cache_compression; - global $wp_cache_preload_on; - - if ( '/' != substr($cache_path, -1)) { - $cache_path .= '/'; - } - - if ( $valid_nonce ) { - if(isset($_REQUEST['wp_delete_cache'])) { - wp_cache_clean_cache($file_prefix); - $_GET[ 'action' ] = 'regenerate_cache_stats'; - } - if ( isset( $_REQUEST[ 'wp_delete_all_cache' ] ) ) { - wp_cache_clean_cache( $file_prefix, true ); - $_GET[ 'action' ] = 'regenerate_cache_stats'; - } - if(isset($_REQUEST['wp_delete_expired'])) { - wp_cache_clean_expired($file_prefix); - $_GET[ 'action' ] = 'regenerate_cache_stats'; - } - } - echo ""; - echo '
    '; - echo '

    ' . __( 'Cache Contents', 'wp-super-cache' ) . '

    '; - - $cache_stats = get_option( 'supercache_stats' ); - if ( !is_array( $cache_stats ) || ( isset( $_GET[ 'listfiles' ] ) ) || ( $valid_nonce && array_key_exists('action', $_GET) && $_GET[ 'action' ] == 'regenerate_cache_stats' ) ) { - $count = 0; - $expired = 0; - $now = time(); - $wp_cache_fsize = 0; - if ( ( $handle = @opendir( $blog_cache_dir ) ) ) { - if ( $valid_nonce && isset( $_GET[ 'action' ] ) && $_GET[ 'action' ] == 'deletewpcache' ) { - $deleteuri = wpsc_deep_replace( array( '..', '\\', 'index.php' ), preg_replace( '/[ <>\'\"\r\n\t\(\)]/', '', base64_decode( $_GET[ 'uri' ] ) ) ); - } else { - $deleteuri = ''; - } - - if ( $valid_nonce && isset( $_GET[ 'action' ] ) && $_GET[ 'action' ] == 'deletesupercache' ) { - $supercacheuri = wpsc_deep_replace( array( '..', '\\', 'index.php' ), preg_replace( '/[ <>\'\"\r\n\t\(\)]/', '', preg_replace("/(\?.*)?$/", '', base64_decode( $_GET[ 'uri' ] ) ) ) ); - $supercacheuri = trailingslashit( realpath( $cache_path . 'supercache/' . $supercacheuri ) ); - if ( wp_cache_confirm_delete( $supercacheuri ) ) { - printf( __( "Deleting supercache file: %s
    ", 'wp-super-cache' ), $supercacheuri ); - wpsc_delete_files( $supercacheuri ); - prune_super_cache( $supercacheuri . 'page', true ); - @rmdir( $supercacheuri ); - } else { - wp_die( __( 'Warning! You are not allowed to delete that file', 'wp-super-cache' ) ); - } - } - while( false !== ( $file = readdir( $handle ) ) ) { - if ( // phpcs:ignore Generic.WhiteSpace.ScopeIndent.IncorrectExact - str_contains( $file, $file_prefix ) - && substr( $file, -4 ) == '.php' // phpcs:ignore Universal.Operators.StrictComparisons.LooseEqual - ) { // phpcs:ignore Generic.WhiteSpace.ScopeIndent.Incorrect - if ( false == file_exists( $blog_cache_dir . 'meta/' . $file ) ) { - @unlink( $blog_cache_dir . $file ); - continue; // meta does not exist - } - $mtime = filemtime( $blog_cache_dir . 'meta/' . $file ); - $fsize = @filesize( $blog_cache_dir . $file ); - if ( $fsize > 0 ) - $fsize = $fsize - 15; // die() command takes 15 bytes at the start of the file - - $age = $now - $mtime; - if ( $valid_nonce && isset( $_GET[ 'listfiles' ] ) ) { - $meta = json_decode( wp_cache_get_legacy_cache( $blog_cache_dir . 'meta/' . $file ), true ); - if ( $deleteuri != '' && $meta[ 'uri' ] == $deleteuri ) { - printf( __( "Deleting wp-cache file: %s
    ", 'wp-super-cache' ), esc_html( $deleteuri ) ); - @unlink( $blog_cache_dir . 'meta/' . $file ); - @unlink( $blog_cache_dir . $file ); - continue; - } - $meta[ 'age' ] = $age; - foreach( $meta as $key => $val ) - $meta[ $key ] = esc_html( $val ); - if ( $cache_max_time > 0 && $age > $cache_max_time ) { - $expired_list[ $age ][] = $meta; - } else { - $cached_list[ $age ][] = $meta; - } - } - - if ( $cache_max_time > 0 && $age > $cache_max_time ) { - ++$expired; - } else { - ++$count; - } - $wp_cache_fsize += $fsize; - } - } - closedir($handle); - } - if( $wp_cache_fsize != 0 ) { - $wp_cache_fsize = $wp_cache_fsize/1024; - } else { - $wp_cache_fsize = 0; - } - if( $wp_cache_fsize > 1024 ) { - $wp_cache_fsize = number_format( $wp_cache_fsize / 1024, 2 ) . "MB"; - } elseif( $wp_cache_fsize != 0 ) { - $wp_cache_fsize = number_format( $wp_cache_fsize, 2 ) . "KB"; - } else { - $wp_cache_fsize = '0KB'; - } - $cache_stats = wp_cache_regenerate_cache_file_stats(); - } else { - echo "

    " . __( 'Cache stats are not automatically generated. You must click the link below to regenerate the stats on this page.', 'wp-super-cache' ) . "

    "; - echo " 'wpsupercache', 'tab' => 'contents', 'action' => 'regenerate_cache_stats' ) ), 'wp-cache' ) . "'>" . __( 'Regenerate cache stats', 'wp-super-cache' ) . ""; - if ( ! empty( $cache_stats['generated'] ) ) { - echo "

    " . sprintf( __( 'Cache stats last generated: %s minutes ago.', 'wp-super-cache' ), number_format( ( time() - $cache_stats[ 'generated' ] ) / 60 ) ) . "

    "; - } - $cache_stats = get_option( 'supercache_stats' ); - }// regerate stats cache - - if ( is_array( $cache_stats ) ) { - $fsize = wp_cache_format_fsize( $cache_stats[ 'wpcache' ][ 'fsize' ] / 1024 ); - echo "

    " . __( 'WP-Cache', 'wp-super-cache' ) . " ({$fsize})

    "; - echo "
    • " . sprintf( __( '%s Cached Pages', 'wp-super-cache' ), $cache_stats[ 'wpcache' ][ 'cached' ] ) . "
    • "; - echo "
    • " . sprintf( __( '%s Expired Pages', 'wp-super-cache' ), $cache_stats[ 'wpcache' ][ 'expired' ] ) . "
    "; - if ( array_key_exists('fsize', (array)$cache_stats[ 'supercache' ]) ) - $fsize = $cache_stats[ 'supercache' ][ 'fsize' ] / 1024; - else - $fsize = 0; - $fsize = wp_cache_format_fsize( $fsize ); - echo "

    " . __( 'WP-Super-Cache', 'wp-super-cache' ) . " ({$fsize})

    "; - echo "
    • " . sprintf( __( '%s Cached Pages', 'wp-super-cache' ), $cache_stats[ 'supercache' ][ 'cached' ] ) . "
    • "; - if ( isset( $now ) && ! empty( $cache_stats['generated'] ) ) { - $age = intval( ( $now - $cache_stats['generated'] ) / 60 ); - } else { - $age = 0; - } - echo "
    • " . sprintf( __( '%s Expired Pages', 'wp-super-cache' ), $cache_stats[ 'supercache' ][ 'expired' ] ) . "
    "; - if ( $valid_nonce && array_key_exists('listfiles', $_GET) && isset( $_GET[ 'listfiles' ] ) ) { - echo "
    "; - $cache_description = array( 'supercache' => __( 'WP-Super-Cached', 'wp-super-cache' ), 'wpcache' => __( 'WP-Cached', 'wp-super-cache' ) ); - foreach( $cache_stats as $type => $details ) { - if ( is_array( $details ) == false ) - continue; - foreach( array( 'cached_list' => 'Fresh', 'expired_list' => 'Stale' ) as $list => $description ) { - if ( is_array( $details[ $list ] ) & !empty( $details[ $list ] ) ) { - echo "
    " . sprintf( __( '%s %s Files', 'wp-super-cache' ), $description, $cache_description[ $type ] ) . "
    "; - echo ""; - $c = 1; - $flip = 1; - - ksort( $details[ $list ] ); - foreach( $details[ $list ] as $directory => $d ) { - if ( isset( $d[ 'upper_age' ] ) ) { - $age = "{$d[ 'lower_age' ]} - {$d[ 'upper_age' ]}"; - } else { - $age = $d[ 'lower_age' ]; - } - $bg = $flip ? 'style="background: #EAEAEA;"' : ''; - echo "\n"; - $flip = !$flip; - ++$c; - } - echo "
    #" . __( 'URI', 'wp-super-cache' ) . "" . __( 'Files', 'wp-super-cache' ) . "" . __( 'Age', 'wp-super-cache' ) . "" . __( 'Delete', 'wp-super-cache' ) . "
    $c {$directory}{$d[ 'files' ]}{$age} 'wpsupercache', 'action' => 'deletesupercache', 'uri' => base64_encode( $directory ) ) ), 'wp-cache' ) . "#listfiles'>X
    "; - } - } - } - echo "
    "; - echo "

    " . __( 'Hide file list', 'wp-super-cache' ) . "

    "; - } elseif ( $cache_stats[ 'supercache' ][ 'cached' ] > 500 || $cache_stats[ 'supercache' ][ 'expired' ] > 500 || $cache_stats[ 'wpcache' ][ 'cached' ] > 500 || $cache_stats[ 'wpcache' ][ 'expired' ] > 500 ) { - echo "

    " . __( 'Too many cached files, no listing possible.', 'wp-super-cache' ) . "

    "; - } else { - echo "

    'wpsupercache', 'listfiles' => '1' ) ), 'wp-cache' ) . "#listfiles'>" . __( 'List all cached files', 'wp-super-cache' ) . "

    "; - } - if ( $cache_max_time > 0 ) - echo "

    " . sprintf( __( 'Expired files are files older than %s seconds. They are still used by the plugin and are deleted periodically.', 'wp-super-cache' ), $cache_max_time ) . "

    "; - if ( $wp_cache_preload_on ) - echo "

    " . __( 'Preload mode is enabled. Supercache files will never be expired.', 'wp-super-cache' ) . "

    "; - } // cache_stats - wp_cache_delete_buttons(); - - echo '
    '; - echo '
    '; -} - -function wp_cache_delete_buttons() { - - $admin_url = admin_url( 'options-general.php?page=wpsupercache' ); - - echo '
    '; - echo ''; - echo '
    '; - wp_nonce_field('wp-cache'); - echo "
    \n"; - - echo '
    '; - echo ''; - echo '
    '; - wp_nonce_field('wp-cache'); - echo "
    \n"; - if ( is_multisite() && wpsupercache_site_admin() ) { - echo '
    '; - echo ''; - echo '
    '; - wp_nonce_field('wp-cache'); - echo "
    \n"; - } -} - -function delete_cache_dashboard() { - if ( function_exists( '_deprecated_function' ) ) { - _deprecated_function( __FUNCTION__, 'WP Super Cache 1.6.4' ); - } - - if ( false == wpsupercache_site_admin() ) - return false; - - if ( function_exists('current_user_can') && !current_user_can('manage_options') ) - return false; - - echo "
  • " . __( 'Delete Cache', 'wp-super-cache' ) . "
  • "; -} -//add_action( 'dashmenu', 'delete_cache_dashboard' ); - -function wpsc_dirsize($directory, $sizes) { - global $cache_max_time, $cache_path, $valid_nonce, $wp_cache_preload_on, $file_prefix; - $now = time(); - - if (is_dir($directory)) { - if( $dh = opendir( $directory ) ) { - while( ( $entry = readdir( $dh ) ) !== false ) { - if ($entry != '.' && $entry != '..') { - $sizes = wpsc_dirsize( trailingslashit( $directory ) . $entry, $sizes ); - } - } - closedir($dh); - } - } elseif ( is_file( $directory ) && strpos( $directory, 'meta-' . $file_prefix ) === false ) { - if ( strpos( $directory, '/' . $file_prefix ) !== false ) { - $cache_type = 'wpcache'; - } else { - $cache_type = 'supercache'; - } - $keep_fresh = false; - if ( $cache_type === 'supercache' && $wp_cache_preload_on ) { - $keep_fresh = true; - } - $filem = filemtime( $directory ); - if ( ! $keep_fresh && $cache_max_time > 0 && $filem + $cache_max_time <= $now ) { - $cache_status = 'expired'; - } else { - $cache_status = 'cached'; - } - $sizes[ $cache_type ][ $cache_status ] += 1; - // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Presumably the caller should handle it if necessary. - if ( $valid_nonce && isset( $_GET['listfiles'] ) ) { - $dir = str_replace( $cache_path . 'supercache/', '', dirname( $directory ) ); - $age = $now - $filem; - if ( ! isset( $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ] ) ) { - $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['lower_age'] = $age; - $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['files'] = 1; - } else { - $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['files'] += 1; - if ( $age <= $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['lower_age'] ) { - - if ( $age < $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['lower_age'] && ! isset( $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['upper_age'] ) ) { - $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['upper_age'] = $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['lower_age']; - } - - $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['lower_age'] = $age; - - } elseif ( ! isset( $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['upper_age'] ) || $age > $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['upper_age'] ) { - - $sizes[ $cache_type ][ $cache_status . '_list' ][ $dir ]['upper_age'] = $age; - - } - } - } - if ( ! isset( $sizes['fsize'] ) ) { - // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged - $sizes[ $cache_type ]['fsize'] = @filesize( $directory ); - } else { - // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged - $sizes[ $cache_type ]['fsize'] += @filesize( $directory ); - } - } - return $sizes; -} - -function wp_cache_clean_cache( $file_prefix, $all = false ) { - global $cache_path, $supercachedir, $blog_cache_dir; - - do_action( 'wp_cache_cleared' ); - - if ( $all == true && wpsupercache_site_admin() && function_exists( 'prune_super_cache' ) ) { - prune_super_cache( $cache_path, true ); - return true; - } - if ( $supercachedir == '' ) - $supercachedir = get_supercache_dir(); - - if (function_exists ('prune_super_cache')) { - if( is_dir( $supercachedir ) ) { - prune_super_cache( $supercachedir, true ); - } elseif( is_dir( $supercachedir . '.disabled' ) ) { - prune_super_cache( $supercachedir . '.disabled', true ); - } - $_POST[ 'super_cache_stats' ] = 1; // regenerate super cache stats; - } else { - wp_cache_debug( 'Warning! prune_super_cache() not found in wp-cache.php', 1 ); - } - - wp_cache_clean_legacy_files( $blog_cache_dir, $file_prefix ); - wp_cache_clean_legacy_files( $cache_path, $file_prefix ); -} - -function wpsc_delete_post_cache( $id ) { - $post = get_post( $id ); - wpsc_delete_url_cache( get_author_posts_url( (int) $post->post_author ) ); - $permalink = get_permalink( $id ); - if ( $permalink != '' ) { - wpsc_delete_url_cache( $permalink ); - return true; - } else { - return false; - } -} - -function wp_cache_clean_legacy_files( $dir, $file_prefix ) { - global $wpdb; - - $dir = trailingslashit( $dir ); - if ( @is_dir( $dir . 'meta' ) == false ) - return false; - - if ( $handle = @opendir( $dir ) ) { - $curr_blog_id = is_multisite() ? get_current_blog_id() : false; - - while ( false !== ( $file = readdir( $handle ) ) ) { - if ( is_file( $dir . $file ) == false || $file == 'index.html' ) { - continue; - } - - if ( str_contains( $file, $file_prefix ) ) { - if ( strpos( $file, '.html' ) ) { - // delete old WPCache files immediately - @unlink( $dir . $file); - @unlink( $dir . 'meta/' . str_replace( '.html', '.meta', $file ) ); - } else { - $meta = json_decode( wp_cache_get_legacy_cache( $dir . 'meta/' . $file ), true ); - if ( $curr_blog_id && $curr_blog_id !== (int) $meta['blog_id'] ) { - continue; - } - @unlink( $dir . $file); - @unlink( $dir . 'meta/' . $file); - } - } - } - closedir($handle); - } -} - -function wp_cache_clean_expired($file_prefix) { - global $cache_max_time, $blog_cache_dir, $wp_cache_preload_on; - - if ( $cache_max_time == 0 ) { - return false; - } - - // If phase2 was compiled, use its function to avoid race-conditions - if(function_exists('wp_cache_phase2_clean_expired')) { - if ( $wp_cache_preload_on != 1 && function_exists ('prune_super_cache')) { - $dir = get_supercache_dir(); - if( is_dir( $dir ) ) { - prune_super_cache( $dir ); - } elseif( is_dir( $dir . '.disabled' ) ) { - prune_super_cache( $dir . '.disabled' ); - } - $_POST[ 'super_cache_stats' ] = 1; // regenerate super cache stats; - } - return wp_cache_phase2_clean_expired($file_prefix); - } - - $now = time(); - if ( $handle = @opendir( $blog_cache_dir ) ) { - while ( false !== ( $file = readdir( $handle ) ) ) { - if ( str_contains( $file, $file_prefix ) ) { - if ( strpos( $file, '.html' ) ) { - @unlink( $blog_cache_dir . $file); - @unlink( $blog_cache_dir . 'meta/' . str_replace( '.html', '.meta', $file ) ); - } elseif ( ( filemtime( $blog_cache_dir . $file ) + $cache_max_time ) <= $now ) { - @unlink( $blog_cache_dir . $file ); - @unlink( $blog_cache_dir . 'meta/' . $file ); - } - } - } - closedir($handle); - } -} - -function wpsc_remove_marker( $filename, $marker ) { - if (!file_exists( $filename ) || is_writeable_ACLSafe( $filename ) ) { - if (!file_exists( $filename ) ) { - return ''; - } else { - $markerdata = explode( "\n", implode( '', file( $filename ) ) ); - } - - $f = fopen( $filename, 'w' ); - $state = true; - foreach ( $markerdata as $n => $markerline ) { - if ( strpos( $markerline, '# BEGIN ' . $marker ) !== false ) { - $state = false; - } - if ( $state ) { - if ( $n + 1 < count( $markerdata ) ) { - fwrite( $f, "{$markerline}\n" ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fwrite - } else { - fwrite( $f, "{$markerline}" ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fwrite - } - } - if ( strpos( $markerline, '# END ' . $marker ) !== false ) { - $state = true; - } - } - return true; - } else { - return false; - } -} - -if( get_option( 'gzipcompression' ) ) - update_option( 'gzipcompression', 0 ); - -// Catch 404 requests. Themes that use query_posts() destroy $wp_query->is_404 -function wp_cache_catch_404() { - global $wp_cache_404; - if ( function_exists( '_deprecated_function' ) ) - _deprecated_function( __FUNCTION__, 'WP Super Cache 1.5.6' ); - $wp_cache_404 = false; - if( is_404() ) - $wp_cache_404 = true; -} -//More info - https://github.com/Automattic/wp-super-cache/pull/373 -//add_action( 'template_redirect', 'wp_cache_catch_404' ); - -function wp_cache_favorite_action( $actions ) { - if ( function_exists( '_deprecated_function' ) ) { - _deprecated_function( __FUNCTION__, 'WP Super Cache 1.6.4' ); - } - - if ( false == wpsupercache_site_admin() ) - return $actions; - - if ( function_exists('current_user_can') && !current_user_can('manage_options') ) - return $actions; - - $actions[ wp_nonce_url( 'options-general.php?page=wpsupercache&wp_delete_cache=1&tab=contents', 'wp-cache' ) ] = array( __( 'Delete Cache', 'wp-super-cache' ), 'manage_options' ); - - return $actions; -} -//add_filter( 'favorite_actions', 'wp_cache_favorite_action' ); - -function wp_cache_plugin_notice( $plugin ) { - global $cache_enabled; - if( $plugin == 'wp-super-cache/wp-cache.php' && !$cache_enabled && function_exists( 'admin_url' ) ) - echo '' . sprintf( __( 'WP Super Cache must be configured. Go to the admin page to enable and configure the plugin.', 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache' ) ) . ''; -} -add_action( 'after_plugin_row', 'wp_cache_plugin_notice' ); - -function wp_cache_plugin_actions( $links, $file ) { - if ( $file === 'wp-super-cache/wp-cache.php' && function_exists( 'admin_url' ) && is_array( $links ) ) { - $settings_link = '' . __( 'Settings', 'wp-super-cache' ) . ''; - array_unshift( $links, $settings_link ); // before other links - } - return $links; -} -add_filter( 'plugin_action_links', 'wp_cache_plugin_actions', 10, 2 ); - -function wp_cache_admin_notice() { - global $cache_enabled, $wp_cache_phase1_loaded; - if( substr( $_SERVER['PHP_SELF'], -11 ) == 'plugins.php' && !$cache_enabled && function_exists( 'admin_url' ) ) - echo '

    ' . sprintf( __('WP Super Cache is disabled. Please go to the plugin admin page to enable caching.', 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache' ) ) . '

    '; - - if ( defined( 'WP_CACHE' ) && WP_CACHE == true && ( defined( 'ADVANCEDCACHEPROBLEM' ) || ( $cache_enabled && false == isset( $wp_cache_phase1_loaded ) ) ) ) { - if ( wp_cache_create_advanced_cache() ) { - echo '

    ' . sprintf( __( 'Warning! WP Super Cache caching was broken but has been fixed! The script advanced-cache.php could not load wp-cache-phase1.php.

    The file %1$s/advanced-cache.php has been recreated and WPCACHEHOME fixed in your wp-config.php. Reload to hide this message.', 'wp-super-cache' ), WP_CONTENT_DIR ) . '

    '; - } - } -} -add_action( 'admin_notices', 'wp_cache_admin_notice' ); - -function wp_cache_check_site() { - global $wp_super_cache_front_page_check, $wp_super_cache_front_page_clear, $wp_super_cache_front_page_text, $wp_super_cache_front_page_notification, $wpdb; - - if ( empty( $wp_super_cache_front_page_check ) ) { - return false; - } - - if ( function_exists( "wp_remote_get" ) == false ) { - return false; - } - $front_page = wp_remote_get( site_url(), array('timeout' => 60, 'blocking' => true ) ); - if( is_array( $front_page ) ) { - // Check for gzipped front page - if ( $front_page[ 'headers' ][ 'content-type' ] == 'application/x-gzip' ) { - if ( ! isset( $wp_super_cache_front_page_clear ) || $wp_super_cache_front_page_clear === 0 ) { - wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Front page is gzipped! Please clear cache!', 'wp-super-cache' ), home_url() ), sprintf( __( "Please visit %s to clear the cache as the front page of your site is now downloading!", 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache' ) ) ); - } else { - wp_cache_clear_cache( $wpdb->blogid ); - wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Front page is gzipped! Cache Cleared!', 'wp-super-cache' ), home_url() ), sprintf( __( "The cache on your blog has been cleared because the front page of your site is now downloading. Please visit %s to verify the cache has been cleared.", 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache' ) ) ); - } - } - - // Check for broken front page - if ( - ! empty( $wp_super_cache_front_page_text ) - && ! str_contains( $front_page['body'], $wp_super_cache_front_page_text ) - ) { - if ( ! isset( $wp_super_cache_front_page_clear ) || $wp_super_cache_front_page_clear === 0 ) { - wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Front page is not correct! Please clear cache!', 'wp-super-cache' ), home_url() ), sprintf( __( 'Please visit %1$s to clear the cache as the front page of your site is not correct and missing the text, "%2$s"!', 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache' ), $wp_super_cache_front_page_text ) ); - } else { - wp_cache_clear_cache( $wpdb->blogid ); - wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Front page is not correct! Cache Cleared!', 'wp-super-cache' ), home_url() ), sprintf( __( 'The cache on your blog has been cleared because the front page of your site is missing the text "%2$s". Please visit %1$s to verify the cache has been cleared.', 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache' ), $wp_super_cache_front_page_text ) ); - } - } - } - if ( isset( $wp_super_cache_front_page_notification ) && $wp_super_cache_front_page_notification == 1 ) { - wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Front page check!', 'wp-super-cache' ), home_url() ), sprintf( __( "WP Super Cache has checked the front page of your blog. Please visit %s if you would like to disable this.", 'wp-super-cache' ) . "\n\n", admin_url( 'options-general.php?page=wpsupercache' ) ) ); - } - - if ( !wp_next_scheduled( 'wp_cache_check_site_hook' ) ) { - wp_schedule_single_event( time() + 360 , 'wp_cache_check_site_hook' ); - wp_cache_debug( 'scheduled wp_cache_check_site_hook for 360 seconds time.', 2 ); - } -} -add_action( 'wp_cache_check_site_hook', 'wp_cache_check_site' ); - -function update_cached_mobile_ua_list( $mobile_browsers, $mobile_prefixes = 0, $mobile_groups = 0 ) { - global $wp_cache_config_file, $wp_cache_mobile_browsers, $wp_cache_mobile_prefixes, $wp_cache_mobile_groups; - wp_cache_setting( 'wp_cache_mobile_browsers', $mobile_browsers ); - wp_cache_setting( 'wp_cache_mobile_prefixes', $mobile_prefixes ); - if ( is_array( $mobile_groups ) ) { - $wp_cache_mobile_groups = $mobile_groups; - wp_cache_replace_line('^ *\$wp_cache_mobile_groups', "\$wp_cache_mobile_groups = '" . implode( ', ', $mobile_groups ) . "';", $wp_cache_config_file); - } - - return true; -} - -function wpsc_update_htaccess() { - extract( wpsc_get_htaccess_info() ); // $document_root, $apache_root, $home_path, $home_root, $home_root_lc, $inst_root, $wprules, $scrules, $condition_rules, $rules, $gziprules - // @phan-suppress-next-line PhanTypeSuspiciousStringExpression -- $home_path is set via extract() - wpsc_remove_marker( $home_path.'.htaccess', 'WordPress' ); // remove original WP rules so SuperCache rules go on top - // @phan-suppress-next-line PhanTypeSuspiciousStringExpression -- $home_path is set via extract() - if( insert_with_markers( $home_path.'.htaccess', 'WPSuperCache', explode( "\n", $rules ) ) && insert_with_markers( $home_path.'.htaccess', 'WordPress', explode( "\n", $wprules ) ) ) { - return true; - } else { - return false; - } -} - -function wpsc_update_htaccess_form( $short_form = true ) { - global $wpmu_version; - - $admin_url = admin_url( 'options-general.php?page=wpsupercache' ); - extract( wpsc_get_htaccess_info() ); // $document_root, $apache_root, $home_path, $home_root, $home_root_lc, $inst_root, $wprules, $scrules, $condition_rules, $rules, $gziprules - // @phan-suppress-next-line PhanTypeSuspiciousStringExpression -- $home_path is set via extract() - if( !is_writeable_ACLSafe( $home_path . ".htaccess" ) ) { - echo "
    " . __( 'Cannot update .htaccess', 'wp-super-cache' ) . "

    " . sprintf( __( 'The file %s.htaccess cannot be modified by the web server. Please correct this using the chmod command or your ftp client.', 'wp-super-cache' ), $home_path ) . "

    " . __( 'Refresh this page when the file permissions have been modified.' ) . "

    " . sprintf( __( 'Alternatively, you can edit your %s.htaccess file manually and add the following code (before any WordPress rules):', 'wp-super-cache' ), $home_path ) . "

    "; - echo "

    # BEGIN WPSuperCache\n" . esc_html( $rules ) . "# END WPSuperCache

    "; - } else { - if ( $short_form == false ) { - echo "

    " . sprintf( __( 'To serve static html files your server must have the correct mod_rewrite rules added to a file called %s.htaccess', 'wp-super-cache' ), $home_path ) . " "; - _e( "You can edit the file yourself. Add the following rules.", 'wp-super-cache' ); - echo __( " Make sure they appear before any existing WordPress rules. ", 'wp-super-cache' ) . "

    "; - echo "
    "; - echo "
    # BEGIN WPSuperCache\n" . esc_html( $rules ) . "# END WPSuperCache

    "; - echo "
    "; - echo "
    " . sprintf( __( 'Rules must be added to %s too:', 'wp-super-cache' ), WP_CONTENT_DIR . "/cache/.htaccess" ) . "
    "; - echo "
    "; - echo "
    # BEGIN supercache\n" . esc_html( $gziprules ) . "# END supercache

    "; - echo "
    "; - } - if ( !isset( $wpmu_version ) || $wpmu_version == '' ) { - echo '
    '; - echo ''; - echo '
    '; - wp_nonce_field('wp-cache'); - echo "
    \n"; - } - } -} - -/* - * Return LOGGED_IN_COOKIE if it doesn't begin with wordpress_logged_in - * to avoid having people update their .htaccess file - */ -function wpsc_get_logged_in_cookie() { - $logged_in_cookie = 'wordpress_logged_in'; - if ( defined( 'LOGGED_IN_COOKIE' ) && substr( constant( 'LOGGED_IN_COOKIE' ), 0, 19 ) != 'wordpress_logged_in' ) - $logged_in_cookie = constant( 'LOGGED_IN_COOKIE' ); - return $logged_in_cookie; -} - -function wpsc_get_htaccess_info() { - global $wp_cache_mobile_enabled, $wp_cache_mobile_prefixes, $wp_cache_mobile_browsers, $wp_cache_disable_utf8; - global $htaccess_path; - - if ( isset( $_SERVER[ "PHP_DOCUMENT_ROOT" ] ) ) { - $document_root = $_SERVER[ "PHP_DOCUMENT_ROOT" ]; - $apache_root = $_SERVER[ "PHP_DOCUMENT_ROOT" ]; - } else { - $document_root = $_SERVER[ "DOCUMENT_ROOT" ]; - $apache_root = '%{DOCUMENT_ROOT}'; - } - $content_dir_root = $document_root; - if ( strpos( $document_root, '/kunden/homepages/' ) === 0 ) { - // https://wordpress.org/support/topic/plugin-wp-super-cache-how-to-get-mod_rewrite-working-on-1and1-shared-hosting?replies=1 - // On 1and1, PHP's directory structure starts with '/homepages'. The - // Apache directory structure has an extra '/kunden' before it. - // Also 1and1 does not support the %{DOCUMENT_ROOT} variable in - // .htaccess files. - // This prevents the $inst_root from being calculated correctly and - // means that the $apache_root is wrong. - // - // e.g. This is an example of how Apache and PHP see the directory - // structure on 1and1: - // Apache: /kunden/homepages/xx/dxxxxxxxx/htdocs/site1/index.html - // PHP: /homepages/xx/dxxxxxxxx/htdocs/site1/index.html - // Here we fix up the paths to make mode_rewrite work on 1and1 shared hosting. - $content_dir_root = substr( $content_dir_root, 7 ); - $apache_root = $document_root; - } - $home_path = get_home_path(); - $home_root = parse_url(get_bloginfo('url')); - $home_root = isset( $home_root[ 'path' ] ) ? trailingslashit( $home_root[ 'path' ] ) : '/'; - if ( isset( $htaccess_path ) ) { - $home_path = $htaccess_path; - } elseif ( - $home_root == '/' && - $home_path != $_SERVER[ 'DOCUMENT_ROOT' ] - ) { - $home_path = $_SERVER[ 'DOCUMENT_ROOT' ]; - } elseif ( - $home_root != '/' && - $home_path != str_replace( '//', '/', $_SERVER[ 'DOCUMENT_ROOT' ] . $home_root ) && - is_dir( $_SERVER[ 'DOCUMENT_ROOT' ] . $home_root ) - ) { - $home_path = str_replace( '//', '/', $_SERVER[ 'DOCUMENT_ROOT' ] . $home_root ); - } - - $home_path = trailingslashit( $home_path ); - $home_root_lc = str_replace( '//', '/', strtolower( $home_root ) ); - $inst_root = str_replace( '//', '/', '/' . trailingslashit( str_replace( $content_dir_root, '', str_replace( '\\', '/', WP_CONTENT_DIR ) ) ) ); - $wprules = implode( "\n", extract_from_markers( $home_path.'.htaccess', 'WordPress' ) ); - $wprules = str_replace( "RewriteEngine On\n", '', $wprules ); - $wprules = str_replace( "RewriteBase $home_root\n", '', $wprules ); - $scrules = implode( "\n", extract_from_markers( $home_path.'.htaccess', 'WPSuperCache' ) ); - - if( substr( get_option( 'permalink_structure' ), -1 ) == '/' ) { - $condition_rules[] = "RewriteCond %{REQUEST_URI} !^.*[^/]$"; - $condition_rules[] = "RewriteCond %{REQUEST_URI} !^.*//.*$"; - } - $condition_rules[] = "RewriteCond %{REQUEST_METHOD} !POST"; - $condition_rules[] = "RewriteCond %{QUERY_STRING} ^$"; - $condition_rules[] = "RewriteCond %{HTTP:Cookie} !^.*(comment_author_|" . wpsc_get_logged_in_cookie() . wpsc_get_extra_cookies() . "|wp-postpass_).*$"; - $condition_rules[] = "RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\\\"]+ [NC]"; - $condition_rules[] = "RewriteCond %{HTTP:Profile} !^[a-z0-9\\\"]+ [NC]"; - if ( $wp_cache_mobile_enabled ) { - if ( isset( $wp_cache_mobile_browsers ) && "" != $wp_cache_mobile_browsers ) - $condition_rules[] = "RewriteCond %{HTTP_USER_AGENT} !^.*(" . addcslashes( str_replace( ', ', '|', $wp_cache_mobile_browsers ), ' ' ) . ").* [NC]"; - if ( isset( $wp_cache_mobile_prefixes ) && "" != $wp_cache_mobile_prefixes ) - $condition_rules[] = "RewriteCond %{HTTP_USER_AGENT} !^(" . addcslashes( str_replace( ', ', '|', $wp_cache_mobile_prefixes ), ' ' ) . ").* [NC]"; - } - $condition_rules = apply_filters( 'supercacherewriteconditions', $condition_rules ); - - $rules = "\n"; - $rules .= "RewriteEngine On\n"; - $rules .= "RewriteBase $home_root\n"; // props Chris Messina - $rules .= "#If you serve pages from behind a proxy you may want to change 'RewriteCond %{HTTPS} on' to something more sensible\n"; - if ( isset( $wp_cache_disable_utf8 ) == false || $wp_cache_disable_utf8 == 0 ) { - $charset = get_option('blog_charset') == '' ? 'UTF-8' : get_option('blog_charset'); - $rules .= "AddDefaultCharset {$charset}\n"; - } - - $rules .= "CONDITION_RULES"; - $rules .= "RewriteCond %{HTTP:Accept-Encoding} gzip\n"; - $rules .= "RewriteCond %{HTTPS} on\n"; - $rules .= "RewriteCond {$apache_root}{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index-https.html.gz -f\n"; - $rules .= "RewriteRule ^(.*) \"{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index-https.html.gz\" [L]\n\n"; - - $rules .= "CONDITION_RULES"; - $rules .= "RewriteCond %{HTTP:Accept-Encoding} gzip\n"; - $rules .= "RewriteCond %{HTTPS} !on\n"; - $rules .= "RewriteCond {$apache_root}{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index.html.gz -f\n"; - $rules .= "RewriteRule ^(.*) \"{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index.html.gz\" [L]\n\n"; - - $rules .= "CONDITION_RULES"; - $rules .= "RewriteCond %{HTTPS} on\n"; - $rules .= "RewriteCond {$apache_root}{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index-https.html -f\n"; - $rules .= "RewriteRule ^(.*) \"{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index-https.html\" [L]\n\n"; - - $rules .= "CONDITION_RULES"; - $rules .= "RewriteCond %{HTTPS} !on\n"; - $rules .= "RewriteCond {$apache_root}{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index.html -f\n"; - $rules .= "RewriteRule ^(.*) \"{$inst_root}cache/supercache/%{SERVER_NAME}{$home_root_lc}$1/index.html\" [L]\n"; - $rules .= "\n"; - $rules = apply_filters( 'supercacherewriterules', $rules ); - - $rules = str_replace( "CONDITION_RULES", implode( "\n", $condition_rules ) . "\n", $rules ); - - $gziprules = "\n \n ForceType text/html\n FileETag None\n \n AddEncoding gzip .gz\n AddType text/html .gz\n\n"; - $gziprules .= "\n SetEnvIfNoCase Request_URI \.gz$ no-gzip\n\n"; - - // Default headers. - $headers = array( - 'Vary' => 'Accept-Encoding, Cookie', - 'Cache-Control' => 'max-age=3, must-revalidate', - ); - - // Allow users to override the Vary header with WPSC_VARY_HEADER. - if ( defined( 'WPSC_VARY_HEADER' ) && ! empty( WPSC_VARY_HEADER ) ) { - $headers['Vary'] = WPSC_VARY_HEADER; - } - - // Allow users to override Cache-control header with WPSC_CACHE_CONTROL_HEADER - if ( defined( 'WPSC_CACHE_CONTROL_HEADER' ) && ! empty( WPSC_CACHE_CONTROL_HEADER ) ) { - $headers['Cache-Control'] = WPSC_CACHE_CONTROL_HEADER; - } - - // Allow overriding headers with a filter. - $headers = apply_filters( 'wpsc_htaccess_mod_headers', $headers ); - - // Combine headers into a block of text. - $headers_text = implode( - "\n", - array_map( - function ( $key, $value ) { - return " Header set $key '" . addcslashes( $value, "'" ) . "'"; - }, - array_keys( $headers ), - array_values( $headers ) - ) - ); - - // Pack headers into gziprules (for historic reasons) - TODO refactor the values - // returned to better reflect the blocks being written. - if ( $headers_text != '' ) { - $gziprules .= "\n$headers_text\n\n"; - } - - // Deafult mod_expires rules. - $expires_rules = array( - 'ExpiresActive On', - 'ExpiresByType text/html A3', - ); - - // Allow overriding mod_expires rules with a filter. - $expires_rules = apply_filters( 'wpsc_htaccess_mod_expires', $expires_rules ); - - $gziprules .= "\n"; - $gziprules .= implode( - "\n", - array_map( - function ( $line ) { - return " $line"; - }, - $expires_rules - ) - ); - $gziprules .= "\n\n"; - - $gziprules .= "Options -Indexes\n"; - - return array( - 'document_root' => $document_root, - 'apache_root' => $apache_root, - 'home_path' => $home_path, - 'home_root' => $home_root, - 'home_root_lc' => $home_root_lc, - 'inst_root' => $inst_root, - 'wprules' => $wprules, - 'scrules' => $scrules, - 'condition_rules' => $condition_rules, - 'rules' => $rules, - 'gziprules' => $gziprules, - ); -} - -function clear_post_supercache( $post_id ) { - $dir = get_current_url_supercache_dir( $post_id ); - if ( false == @is_dir( $dir ) ) - return false; - - if ( get_supercache_dir() == $dir ) { - wp_cache_debug( "clear_post_supercache: not deleting post_id $post_id as it points at homepage: $dir" ); - return false; - } - - wp_cache_debug( "clear_post_supercache: post_id: $post_id. deleting files in $dir" ); - if ( get_post_type( $post_id ) != 'page') { // don't delete child pages if they exist - prune_super_cache( $dir, true ); - } else { - wpsc_delete_files( $dir ); - } -} - -/** - * Serves an AJAX endpoint to return the current state of the preload process. - */ -function wpsc_ajax_get_preload_status() { - check_ajax_referer( 'wpsc-get-preload-status' ); - - if ( ! current_user_can( 'manage_options' ) ) { - wp_send_json_error( null, 403 ); - } - - $preload_status = wpsc_get_preload_status( true ); - wp_send_json_success( $preload_status, null, JSON_UNESCAPED_SLASHES ); -} -add_action( 'wp_ajax_wpsc_get_preload_status', 'wpsc_ajax_get_preload_status' ); - -/** - * Returns the location of the preload status file. - */ -function wpsc_get_preload_status_file_path() { - global $cache_path; - return $cache_path . 'preload_permalink.txt'; -} - -/** - * Get the timestamp of the next preload. - */ -function wpsc_get_next_preload_time() { - $next = wp_next_scheduled( 'wp_cache_preload_hook' ); - if ( ! $next ) { - $next = wp_next_scheduled( 'wp_cache_full_preload_hook' ); - } - - return $next; -} - -/** - * Read the preload status. Caches the result in a static variable. - */ -function wpsc_get_preload_status( $include_next = false ) { - $status = array( - 'running' => false, - 'history' => array(), - 'next' => false, - 'previous' => null, - ); - - $filename = wpsc_get_preload_status_file_path(); - if ( file_exists( $filename ) ) { - $data = wp_json_file_decode( $filename, array( 'associative' => true ) ); - if ( is_array( $data ) ) { - $status = $data; - } - } - - if ( $include_next ) { - $status['next'] = wpsc_get_next_preload_time(); - } - - return $status; -} - -/** - * Update the preload status file during a preload. - */ -function wpsc_update_active_preload( $group = null, $progress = null, $url = null ) { - $preload_status = wpsc_get_preload_status(); - - $preload_status['running'] = true; - - // Add the new entry to the history. - array_unshift( - $preload_status['history'], - array( - 'group' => $group, - 'progress' => $progress, - 'url' => $url, - ) - ); - - // Limit to 5 in the history. - $preload_status['history'] = array_slice( $preload_status['history'], 0, 5 ); - - $filename = wpsc_get_preload_status_file_path(); - // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_file_put_contents - if ( false === file_put_contents( $filename, wp_json_encode( $preload_status, JSON_UNESCAPED_SLASHES ) ) ) { - wp_cache_debug( "wpsc_update_active_preload: failed to write to $filename" ); - } -} - -/** - * Update the preload status to indicate it is idle. If a finish time is specified, store it. - */ -function wpsc_update_idle_preload( $finish_time = null ) { - $preload_status = wpsc_get_preload_status(); - - $preload_status['running'] = false; - $preload_status['history'] = array(); - - if ( ! empty( $finish_time ) ) { - $preload_status['previous'] = $finish_time; - } - - $filename = wpsc_get_preload_status_file_path(); - // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_file_put_contents - if ( false === file_put_contents( $filename, wp_json_encode( $preload_status, JSON_UNESCAPED_SLASHES ) ) ) { - wp_cache_debug( "wpsc_update_idle_preload: failed to write to $filename" ); - } -} - -function wp_cron_preload_cache() { - global $wpdb, $wp_cache_preload_interval, $wp_cache_preload_posts, $wp_cache_preload_email_me, $wp_cache_preload_email_volume, $cache_path, $wp_cache_preload_taxonomies; - - // check if stop_preload.txt exists and preload should be stopped. - // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged - if ( @file_exists( $cache_path . 'stop_preload.txt' ) ) { - wp_cache_debug( 'wp_cron_preload_cache: preload cancelled. Aborting preload.' ); - wpsc_reset_preload_settings(); - return true; - } - - /* - * The mutex file is used to prevent multiple preload processes from running at the same time. - * If the mutex file is found, the preload process will wait 3-8 seconds and then check again. - * If the mutex file is still found, the preload process will abort. - * If the mutex file is not found, the preload process will create the mutex file and continue. - * The mutex file is deleted at the end of the preload process. - * The mutex file is deleted if it is more than 10 minutes old. - * The mutex file should only be deleted by the preload process that created it. - * If the mutex file is deleted by another process, another preload process may start. - */ - $mutex = $cache_path . "preload_mutex.tmp"; - if ( @file_exists( $mutex ) ) { // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged - sleep( 3 + wp_rand( 1, 5 ) ); - // check again just in case another preload process is still running. - if ( @file_exists( $mutex ) && @filemtime( $mutex ) > ( time() - 600 ) ) { // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged - wp_cache_debug( 'wp_cron_preload_cache: preload mutex found and less than 600 seconds old. Aborting preload.', 1 ); - return true; - } else { - wp_cache_debug( 'wp_cron_preload_cache: old preload mutex found and deleted. Preload continues.', 1 ); - @unlink( $mutex ); - } - } - $fp = @fopen( $mutex, 'w' ); - @fclose( $fp ); - - $counter = get_option( 'preload_cache_counter' ); - $c = $counter[ 'c' ]; - - if ( $wp_cache_preload_email_volume == 'none' && $wp_cache_preload_email_me == 1 ) { - $wp_cache_preload_email_me = 0; - wp_cache_setting( 'wp_cache_preload_email_me', 0 ); - } - - $just_started_preloading = false; - - /* - * Preload taxonomies first. - * - */ - if ( isset( $wp_cache_preload_taxonomies ) && $wp_cache_preload_taxonomies ) { - wp_cache_debug( 'wp_cron_preload_cache: doing taxonomy preload.', 5 ); - $taxonomies = apply_filters( - 'wp_cache_preload_taxonomies', - array( - 'post_tag' => 'tag', - 'category' => 'category', - ) - ); - - $preload_more_taxonomies = false; - - foreach ( $taxonomies as $taxonomy => $path ) { - $taxonomy_filename = $cache_path . 'taxonomy_' . $taxonomy . '.txt'; - - // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged - if ( false === @file_exists( $taxonomy_filename ) ) { - - if ( ! $just_started_preloading && $wp_cache_preload_email_me ) { - // translators: 1: site url - wp_mail( get_option( 'admin_email' ), sprintf( __( '[%1$s] Cache Preload Started', 'wp-super-cache' ), home_url(), '' ), ' ' ); - } - - $just_started_preloading = true; - $out = ''; - $records = get_terms( $taxonomy ); - foreach ( $records as $term ) { - $out .= get_term_link( $term ) . "\n"; - } - // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fopen - $fp = fopen( $taxonomy_filename, 'w' ); - if ( $fp ) { - // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fwrite - fwrite( $fp, $out ); - // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fclose - fclose( $fp ); - } - $details = explode( "\n", $out ); - } else { - // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents - $details = explode( "\n", file_get_contents( $taxonomy_filename ) ); - } - if ( count( $details ) > 0 && $details[0] !== '' ) { - $rows = array_splice( $details, 0, WPSC_PRELOAD_POST_COUNT ); - if ( $wp_cache_preload_email_me && $wp_cache_preload_email_volume === 'many' ) { - // translators: 1: Site URL, 2: Taxonomy name, 3: Number of posts done, 4: Number of posts to preload - wp_mail( get_option( 'admin_email' ), sprintf( __( '[%1$s] Refreshing %2$s taxonomy from %3$d to %4$d', 'wp-super-cache' ), home_url(), $taxonomy, $c, ( $c + WPSC_PRELOAD_POST_COUNT ) ), 'Refreshing: ' . print_r( $rows, 1 ) ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_print_r - } - - foreach ( $rows as $url ) { - set_time_limit( 60 ); - if ( $url === '' ) { - continue; - } - - $url_info = wp_parse_url( $url ); - $dir = get_supercache_dir() . $url_info['path']; - wp_cache_debug( "wp_cron_preload_cache: delete $dir" ); - wpsc_delete_files( $dir ); - prune_super_cache( trailingslashit( $dir ) . 'feed/', true ); - prune_super_cache( trailingslashit( $dir ) . 'page/', true ); - - wpsc_update_active_preload( 'taxonomies', $taxonomy, $url ); - - wp_remote_get( - $url, - array( - 'timeout' => 60, - 'blocking' => true, - ) - ); - wp_cache_debug( "wp_cron_preload_cache: fetched $url" ); - sleep( WPSC_PRELOAD_POST_INTERVAL ); - - if ( ! wpsc_is_preload_active() ) { - wp_cache_debug( 'wp_cron_preload_cache: cancelling preload process.' ); - wpsc_reset_preload_settings(); - - if ( $wp_cache_preload_email_me ) { - // translators: Home URL of website - wp_mail( get_option( 'admin_email' ), sprintf( __( '[%1$s] Cache Preload Stopped', 'wp-super-cache' ), home_url(), '' ), ' ' ); - } - wpsc_update_idle_preload( time() ); - return true; - } - } - // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fopen - $fp = fopen( $taxonomy_filename, 'w' ); - if ( $fp ) { - // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fwrite - fwrite( $fp, implode( "\n", $details ) ); - // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fclose - fclose( $fp ); - } - } - - if ( - $preload_more_taxonomies === false && - count( $details ) > 0 && - $details[0] !== '' - ) { - $preload_more_taxonomies = true; - } - } - - if ( $preload_more_taxonomies === true ) { - wpsc_schedule_next_preload(); - sleep( WPSC_PRELOAD_LOOP_INTERVAL ); - return true; - } - } elseif ( $c === 0 && $wp_cache_preload_email_me ) { - // translators: Home URL of website - wp_mail( get_option( 'admin_email' ), sprintf( __( '[%1$s] Cache Preload Started', 'wp-super-cache' ), home_url(), '' ), ' ' ); - } - - /* - * - * Preload posts now. - * - * The preload_cache_counter has two values: - * c = the number of posts we've preloaded after this loop. - * t = the time we started preloading in the current loop. - * - * $c is set to the value of preload_cache_counter['c'] at the start of the function - * before it is incremented by WPSC_PRELOAD_POST_COUNT here. - * The time is used to check if preloading has stalled in check_up_on_preloading(). - */ - - update_option( - 'preload_cache_counter', - array( - 'c' => ( $c + WPSC_PRELOAD_POST_COUNT ), - 't' => time(), - ) - ); - - if ( $wp_cache_preload_posts == 'all' || $c < $wp_cache_preload_posts ) { - $types = wpsc_get_post_types(); - $posts = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE ( post_type IN ( $types ) ) AND post_status = 'publish' ORDER BY ID DESC LIMIT %d," . WPSC_PRELOAD_POST_COUNT, $c ) ); // phpcs:ignore - wp_cache_debug( 'wp_cron_preload_cache: got ' . WPSC_PRELOAD_POST_COUNT . ' posts from position ' . $c ); - } else { - wp_cache_debug( "wp_cron_preload_cache: no more posts to get. Limit ($wp_cache_preload_posts) reached.", 5 ); - $posts = false; - } - if ( !isset( $wp_cache_preload_email_volume ) ) - $wp_cache_preload_email_volume = 'medium'; - - if ( $posts ) { - if ( get_option( 'show_on_front' ) == 'page' ) { - $page_on_front = get_option( 'page_on_front' ); - $page_for_posts = get_option( 'page_for_posts' ); - } else { - $page_on_front = $page_for_posts = 0; - } - if ( $wp_cache_preload_email_me && $wp_cache_preload_email_volume === 'many' ) { - /* translators: 1: home url, 2: start post id, 3: end post id */ - wp_mail( get_option( 'admin_email' ), sprintf( __( '[%1$s] Refreshing posts from %2$d to %3$d', 'wp-super-cache' ), home_url(), $c, ( $c + WPSC_PRELOAD_POST_COUNT ) ), ' ' ); - } - $msg = ''; - $count = $c + 1; - - foreach( $posts as $post_id ) { - set_time_limit( 60 ); - if ( $page_on_front != 0 && ( $post_id == $page_on_front || $post_id == $page_for_posts ) ) - continue; - $url = get_permalink( $post_id ); - - if ( ! is_string( $url ) ) { - wp_cache_debug( "wp_cron_preload_cache: skipped $post_id. Expected a URL, received: " . gettype( $url ) ); - continue; - } - - if ( wp_cache_is_rejected( $url ) ) { - wp_cache_debug( "wp_cron_preload_cache: skipped $url per rejected strings setting" ); - continue; - } - clear_post_supercache( $post_id ); - - wpsc_update_active_preload( 'posts', $count, $url ); - - if ( ! wpsc_is_preload_active() ) { - wp_cache_debug( 'wp_cron_preload_cache: cancelling preload process.' ); - wpsc_reset_preload_settings(); - - if ( $wp_cache_preload_email_me ) { - // translators: Home URL of website - wp_mail( get_option( 'admin_email' ), sprintf( __( '[%1$s] Cache Preload Stopped', 'wp-super-cache' ), home_url(), '' ), ' ' ); - } - - wpsc_update_idle_preload( time() ); - return true; - } - - $msg .= "$url\n"; - wp_remote_get( $url, array('timeout' => 60, 'blocking' => true ) ); - wp_cache_debug( "wp_cron_preload_cache: fetched $url", 5 ); - ++$count; - sleep( WPSC_PRELOAD_POST_INTERVAL ); - } - - if ( $wp_cache_preload_email_me && ( $wp_cache_preload_email_volume === 'medium' || $wp_cache_preload_email_volume === 'many' ) ) { - // translators: 1: home url, 2: number of posts refreshed - wp_mail( get_option( 'admin_email' ), sprintf( __( '[%1$s] %2$d posts refreshed', 'wp-super-cache' ), home_url(), ( $c + WPSC_PRELOAD_POST_COUNT ) ), __( 'Refreshed the following posts:', 'wp-super-cache' ) . "\n$msg" ); - } - - wpsc_schedule_next_preload(); - wpsc_delete_files( get_supercache_dir() ); - sleep( WPSC_PRELOAD_LOOP_INTERVAL ); - } else { - $msg = ''; - wpsc_reset_preload_counter(); - if ( (int)$wp_cache_preload_interval && defined( 'DOING_CRON' ) ) { - if ( $wp_cache_preload_email_me ) - $msg = sprintf( __( 'Scheduling next preload refresh in %d minutes.', 'wp-super-cache' ), (int)$wp_cache_preload_interval ); - wp_cache_debug( "wp_cron_preload_cache: no more posts. scheduling next preload in $wp_cache_preload_interval minutes.", 5 ); - wp_schedule_single_event( time() + ( (int)$wp_cache_preload_interval * 60 ), 'wp_cache_full_preload_hook' ); - } - global $file_prefix, $cache_max_time; - if ( $wp_cache_preload_interval > 0 ) { - $cache_max_time = (int)$wp_cache_preload_interval * 60; // fool the GC into expiring really old files - } else { - $cache_max_time = 86400; // fool the GC into expiring really old files - } - if ( $wp_cache_preload_email_me ) - wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Cache Preload Completed', 'wp-super-cache' ), home_url() ), __( "Cleaning up old supercache files.", 'wp-super-cache' ) . "\n" . $msg ); - if ( $cache_max_time > 0 ) { // GC is NOT disabled - wp_cache_debug( "wp_cron_preload_cache: clean expired cache files older than $cache_max_time seconds.", 5 ); - wp_cache_phase2_clean_expired( $file_prefix, true ); // force cleanup of old files. - } - - wpsc_reset_preload_settings(); - wpsc_update_idle_preload( time() ); - } - @unlink( $mutex ); -} -add_action( 'wp_cache_preload_hook', 'wp_cron_preload_cache' ); -add_action( 'wp_cache_full_preload_hook', 'wp_cron_preload_cache' ); - -/* - * Schedule the next preload event without resetting the preload counter. - * This happens when the next loop of an active preload is scheduled. - */ -function wpsc_schedule_next_preload() { - global $cache_path; - - /* - * Edge case: If preload is not active, don't schedule the next preload. - * This can happen if the preload is cancelled by the user right after a loop finishes. - */ - if ( ! wpsc_is_preload_active() ) { - wpsc_reset_preload_settings(); - wp_cache_debug( 'wpsc_schedule_next_preload: preload is not active. not scheduling next preload.' ); - return; - } - - if ( defined( 'DOING_CRON' ) ) { - wp_cache_debug( 'wp_cron_preload_cache: scheduling the next preload in 3 seconds.' ); - wp_schedule_single_event( time() + 3, 'wp_cache_preload_hook' ); - } - - // we always want to delete the mutex file, even if we're not using cron - $mutex = $cache_path . 'preload_mutex.tmp'; - wp_delete_file( $mutex ); -} - -function option_preload_cache_counter( $value ) { - if ( false == is_array( $value ) ) { - return array( - 'c' => 0, - 't' => time(), - ); - } else { - return $value; - } -} -add_filter( 'option_preload_cache_counter', 'option_preload_cache_counter' ); - -function check_up_on_preloading() { - $value = get_option( 'preload_cache_counter' ); - if ( is_array( $value ) && $value['c'] > 0 && ( time() - $value['t'] ) > 3600 && false === wp_next_scheduled( 'wp_cache_preload_hook' ) ) { - wp_schedule_single_event( time() + 5, 'wp_cache_preload_hook' ); - } -} -add_action( 'init', 'check_up_on_preloading' ); // sometimes preloading stops working. Kickstart it. - -function wp_cache_disable_plugin( $delete_config_file = true ) { - global $wp_rewrite; - if ( file_exists( ABSPATH . 'wp-config.php') ) { - $global_config_file = ABSPATH . 'wp-config.php'; - } else { - $global_config_file = dirname(ABSPATH) . '/wp-config.php'; - } - - if ( apply_filters( 'wpsc_enable_wp_config_edit', true ) ) { - $line = 'define(\'WP_CACHE\', true);'; - if ( - strpos( file_get_contents( $global_config_file ), $line ) && - ( - ! is_writeable_ACLSafe( $global_config_file ) || - ! wp_cache_replace_line( 'define*\(*\'WP_CACHE\'', '', $global_config_file ) - ) - ) { - wp_die( "Could not remove WP_CACHE define from $global_config_file. Please edit that file and remove the line containing the text 'WP_CACHE'. Then refresh this page." ); - } - $line = 'define( \'WPCACHEHOME\','; - if ( - strpos( file_get_contents( $global_config_file ), $line ) && - ( - ! is_writeable_ACLSafe( $global_config_file ) || - ! wp_cache_replace_line( 'define *\( *\'WPCACHEHOME\'', '', $global_config_file ) - ) - ) { - wp_die( "Could not remove WPCACHEHOME define from $global_config_file. Please edit that file and remove the line containing the text 'WPCACHEHOME'. Then refresh this page." ); - } - } elseif ( function_exists( 'wp_cache_debug' ) ) { - wp_cache_debug( 'wp_cache_disable_plugin: not allowed to edit wp-config.php per configuration.' ); - } - - uninstall_supercache( WP_CONTENT_DIR . '/cache' ); - $file_not_deleted = array(); - wpsc_remove_advanced_cache(); - if ( @file_exists( WP_CONTENT_DIR . "/advanced-cache.php" ) ) { - $file_not_deleted[] = WP_CONTENT_DIR . '/advanced-cache.php'; - } - if ( $delete_config_file && @file_exists( WPCACHECONFIGPATH . "/wp-cache-config.php" ) ) { - if ( false == unlink( WPCACHECONFIGPATH . "/wp-cache-config.php" ) ) - $file_not_deleted[] = WPCACHECONFIGPATH . '/wp-cache-config.php'; - } - if ( ! empty( $file_not_deleted ) ) { - $msg = __( "Dear User,\n\nWP Super Cache was removed from your blog or deactivated but some files could\nnot be deleted.\n\n", 'wp-super-cache' ); - foreach ( $file_not_deleted as $path ) { - $msg .= "{$path}\n"; - } - $msg .= "\n"; - $msg .= sprintf( __( "You should delete these files manually.\nYou may need to change the permissions of the files or parent directory.\nYou can read more about this in the Codex at\n%s\n\nThank you.", 'wp-super-cache' ), 'https://codex.wordpress.org/Changing_File_Permissions#About_Chmod' ); - - if ( apply_filters( 'wpsc_send_uninstall_errors', 1 ) ) { - wp_mail( get_option( 'admin_email' ), __( 'WP Super Cache: could not delete files', 'wp-super-cache' ), $msg ); - } - } - extract( wpsc_get_htaccess_info() ); // $document_root, $apache_root, $home_path, $home_root, $home_root_lc, $inst_root, $wprules, $scrules, $condition_rules, $rules, $gziprules - // @phan-suppress-next-line PhanTypeSuspiciousStringExpression -- $home_path is set via extract() - if ( $scrules != '' && insert_with_markers( $home_path.'.htaccess', 'WPSuperCache', array() ) ) { - $wp_rewrite->flush_rules(); - } elseif( $scrules != '' ) { - wp_mail( get_option( 'admin_email' ), __( 'Supercache Uninstall Problems', 'wp-super-cache' ), sprintf( __( "Dear User,\n\nWP Super Cache was removed from your blog but the mod_rewrite rules\nin your .htaccess were not.\n\nPlease edit the following file and remove the code\nbetween 'BEGIN WPSuperCache' and 'END WPSuperCache'. Please backup the file first!\n\n%s\n\nRegards,\nWP Super Cache Plugin\nhttps://wordpress.org/plugins/wp-super-cache/", 'wp-super-cache' ), ABSPATH . '/.htaccess' ) ); - } -} - -function uninstall_supercache( $folderPath ) { // from http://www.php.net/manual/en/function.rmdir.php - if ( trailingslashit( constant( 'ABSPATH' ) ) == trailingslashit( $folderPath ) ) - return false; - if ( @is_dir ( $folderPath ) ) { - $dh = @opendir($folderPath); - while( false !== ( $value = @readdir( $dh ) ) ) { - if ( $value != "." && $value != ".." ) { - $value = $folderPath . "/" . $value; - if ( @is_dir ( $value ) ) { - uninstall_supercache( $value ); - } else { - @unlink( $value ); - } - } - } - return @rmdir( $folderPath ); - } else { - return false; - } -} - -function supercache_admin_bar_render() { - global $wp_admin_bar; - - if ( function_exists( '_deprecated_function' ) ) { - _deprecated_function( __FUNCTION__, 'WP Super Cache 1.6.4' ); - } - - wpsc_admin_bar_render( $wp_admin_bar ); -} - -/* - * returns true if preload is active - */ -function wpsc_is_preload_active() { - global $cache_path; - - // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged - if ( @file_exists( $cache_path . 'stop_preload.txt' ) ) { - return false; - } - - if ( file_exists( $cache_path . 'preload_mutex.tmp' ) ) { - return true; - } - - // check taxonomy preload loop - $taxonomies = apply_filters( - 'wp_cache_preload_taxonomies', - array( - 'post_tag' => 'tag', - 'category' => 'category', - ) - ); - - foreach ( $taxonomies as $taxonomy => $path ) { - $taxonomy_filename = $cache_path . 'taxonomy_' . $taxonomy . '.txt'; - if ( file_exists( $taxonomy_filename ) ) { - return true; - } - } - - // check post preload loop - $preload_cache_counter = get_option( 'preload_cache_counter' ); - if ( - is_array( $preload_cache_counter ) - && isset( $preload_cache_counter['c'] ) - && $preload_cache_counter['c'] > 0 - ) { - return true; - } - - return false; -} - -/* - * This function will reset the preload cache counter - */ -function wpsc_reset_preload_counter() { - update_option( - 'preload_cache_counter', - array( - 'c' => 0, - 't' => time(), - ) - ); -} - -/* - * This function will reset all preload settings - */ -function wpsc_reset_preload_settings() { - global $cache_path; - - $mutex = $cache_path . 'preload_mutex.tmp'; - wp_delete_file( $mutex ); - wp_delete_file( $cache_path . 'stop_preload.txt' ); - wpsc_reset_preload_counter(); - - $taxonomies = apply_filters( - 'wp_cache_preload_taxonomies', - array( - 'post_tag' => 'tag', - 'category' => 'category', - ) - ); - - foreach ( $taxonomies as $taxonomy => $path ) { - $taxonomy_filename = $cache_path . 'taxonomy_' . $taxonomy . '.txt'; - wp_delete_file( $taxonomy_filename ); - } -} - -function wpsc_cancel_preload() { - $next_preload = wp_next_scheduled( 'wp_cache_preload_hook' ); - $next_full_preload = wp_next_scheduled( 'wp_cache_full_preload_hook' ); - - if ( $next_preload || $next_full_preload ) { - wp_cache_debug( 'wpsc_cancel_preload: reset preload settings' ); - wpsc_reset_preload_settings(); - } - - if ( $next_preload ) { - wp_cache_debug( 'wpsc_cancel_preload: unscheduling wp_cache_preload_hook' ); - wp_unschedule_event( $next_preload, 'wp_cache_preload_hook' ); - } - if ( $next_full_preload ) { - wp_cache_debug( 'wpsc_cancel_preload: unscheduling wp_cache_full_preload_hook' ); - wp_unschedule_event( $next_full_preload, 'wp_cache_full_preload_hook' ); - } - wp_cache_debug( 'wpsc_cancel_preload: creating stop_preload.txt' ); - - /* - * Reset the preload settings, but also create the stop_preload.txt file to - * prevent the preload from starting again. - * By creating the stop_preload.txt file, we can be sure the preload will cancel. - */ - wpsc_reset_preload_settings(); - wpsc_create_stop_preload_flag(); - wpsc_update_idle_preload( time() ); -} - -/* - * The preload process checks for a file called stop_preload.txt and will stop if found. - * This function creates that file. - */ -function wpsc_create_stop_preload_flag() { - global $cache_path; - // phpcs:ignore -- WordPress.WP.AlternativeFunctions.file_system_read_fopen WordPress.PHP.NoSilencedErrors.Discouraged - $fp = @fopen( $cache_path . 'stop_preload.txt', 'w' ); - // phpcs:ignore -- WordPress.WP.AlternativeFunctions.file_system_operations_fclose WordPress.PHP.NoSilencedErrors.Discouraged - @fclose( $fp ); -} - -function wpsc_enable_preload() { - - wpsc_reset_preload_settings(); - wp_schedule_single_event( time() + 10, 'wp_cache_full_preload_hook' ); -} - -function wpsc_get_post_types() { - - $preload_type_args = apply_filters( 'wpsc_preload_post_types_args', array( - 'public' => true, - 'publicly_queryable' => true - ) ); - - $post_types = (array) apply_filters( 'wpsc_preload_post_types', get_post_types( $preload_type_args, 'names', 'or' )); - - return "'" . implode( "', '", array_map( 'esc_sql', $post_types ) ) . "'"; -} -function wpsc_post_count() { - global $wpdb; - static $count; - - if ( isset( $count ) ) { - return $count; - } - - $post_type_list = wpsc_get_post_types(); - $count = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->posts} WHERE post_type IN ( $post_type_list ) AND post_status = 'publish'" ); - - return $count; -} - -/** - * Get the minimum interval in minutes between preload refreshes. - * Filter the default value of 10 minutes using the `wpsc_minimum_preload_interval` filter. - * - * @return int - */ -function wpsc_get_minimum_preload_interval() { - return apply_filters( 'wpsc_minimum_preload_interval', 10 ); -} - -function wpsc_preload_settings() { - global $wp_cache_preload_interval, $wp_cache_preload_on, $wp_cache_preload_taxonomies, $wp_cache_preload_email_volume, $wp_cache_preload_posts, $valid_nonce; - - if ( isset( $_POST[ 'action' ] ) == false || $_POST[ 'action' ] != 'preload' ) - return; - - if ( ! $valid_nonce ) { - return; - } - - if ( isset( $_POST[ 'preload_off' ] ) ) { - wpsc_cancel_preload(); - return; - } elseif ( isset( $_POST[ 'preload_now' ] ) ) { - wpsc_enable_preload(); - wpsc_update_idle_preload(); - ?> -
    -

    -
    - = $min_refresh_interval ) ) { - $_POST[ 'wp_cache_preload_interval' ] = (int)$_POST[ 'wp_cache_preload_interval' ]; - if ( $wp_cache_preload_interval != $_POST[ 'wp_cache_preload_interval' ] ) { - $force_preload_reschedule = true; - } - - // phpcs:ignore WordPress.Security.NonceVerification.Missing - $wp_cache_preload_interval = (int) $_POST['wp_cache_preload_interval']; - wp_cache_setting( 'wp_cache_preload_interval', $wp_cache_preload_interval ); - } - - if ( $_POST[ 'wp_cache_preload_posts' ] == 'all' ) { - $wp_cache_preload_posts = 'all'; - } else { - $wp_cache_preload_posts = (int)$_POST[ 'wp_cache_preload_posts' ]; - } - wp_cache_setting( 'wp_cache_preload_posts', $wp_cache_preload_posts ); - - if ( isset( $_POST[ 'wp_cache_preload_email_volume' ] ) && in_array( $_POST[ 'wp_cache_preload_email_volume' ], array( 'none', 'less', 'medium', 'many' ) ) ) { - $wp_cache_preload_email_volume = $_POST[ 'wp_cache_preload_email_volume' ]; - } else { - $wp_cache_preload_email_volume = 'none'; - } - wp_cache_setting( 'wp_cache_preload_email_volume', $wp_cache_preload_email_volume ); - - if ( $wp_cache_preload_email_volume == 'none' ) - wp_cache_setting( 'wp_cache_preload_email_me', 0 ); - else - wp_cache_setting( 'wp_cache_preload_email_me', 1 ); - - if ( isset( $_POST[ 'wp_cache_preload_taxonomies' ] ) ) { - $wp_cache_preload_taxonomies = 1; - } else { - $wp_cache_preload_taxonomies = 0; - } - wp_cache_setting( 'wp_cache_preload_taxonomies', $wp_cache_preload_taxonomies ); - - if ( isset( $_POST[ 'wp_cache_preload_on' ] ) ) { - $wp_cache_preload_on = 1; - } else { - $wp_cache_preload_on = 0; - } - wp_cache_setting( 'wp_cache_preload_on', $wp_cache_preload_on ); - - // Ensure that preload settings are applied to scheduled cron. - $next_preload = wp_next_scheduled( 'wp_cache_full_preload_hook' ); - $should_schedule = ( $wp_cache_preload_on === 1 && $wp_cache_preload_interval > 0 ); - - // If forcing a reschedule, or preload is disabled, clear the next scheduled event. - if ( $next_preload && ( ! $should_schedule || $force_preload_reschedule ) ) { - wp_cache_debug( 'Clearing old preload event' ); - wpsc_reset_preload_counter(); - wpsc_create_stop_preload_flag(); - wp_unschedule_event( $next_preload, 'wp_cache_full_preload_hook' ); - - $next_preload = 0; - } - - // Ensure a preload is scheduled if it should be. - if ( ! $next_preload && $should_schedule ) { - wp_cache_debug( 'Scheduling new preload event' ); - wp_schedule_single_event( time() + ( $wp_cache_preload_interval * 60 ), 'wp_cache_full_preload_hook' ); - } -} - -function wpsc_is_preloading() { - if ( wp_next_scheduled( 'wp_cache_preload_hook' ) || wp_next_scheduled( 'wp_cache_full_preload_hook' ) ) { - return true; - } else { - return false; - } -} - -function wpsc_set_default_gc( $force = false ) { - global $cache_path, $wp_cache_shutdown_gc, $cache_schedule_type; - - if ( isset( $wp_cache_shutdown_gc ) && $wp_cache_shutdown_gc == 1 ) { - return false; - } - - if ( $force ) { - unset( $cache_schedule_type ); - $timestamp = wp_next_scheduled( 'wp_cache_gc' ); - if ( $timestamp ) { - wp_unschedule_event( $timestamp, 'wp_cache_gc' ); - } - } - - // set up garbage collection with some default settings - if ( false == isset( $cache_schedule_type ) && false == wp_next_scheduled( 'wp_cache_gc' ) ) { - $cache_schedule_type = 'interval'; - $cache_time_interval = 600; - $cache_max_time = 1800; - $cache_schedule_interval = 'hourly'; - $cache_gc_email_me = 0; - wp_cache_setting( 'cache_schedule_type', $cache_schedule_type ); - wp_cache_setting( 'cache_time_interval', $cache_time_interval ); - wp_cache_setting( 'cache_max_time', $cache_max_time ); - wp_cache_setting( 'cache_schedule_interval', $cache_schedule_interval ); - wp_cache_setting( 'cache_gc_email_me', $cache_gc_email_me ); - - wp_schedule_single_event( time() + 600, 'wp_cache_gc' ); - } - - return true; -} - -function add_mod_rewrite_rules() { - return update_mod_rewrite_rules(); -} - -function remove_mod_rewrite_rules() { - return update_mod_rewrite_rules( false ); -} - -function update_mod_rewrite_rules( $add_rules = true ) { - global $cache_path, $update_mod_rewrite_rules_error; - - $update_mod_rewrite_rules_error = false; - - if ( defined( "DO_NOT_UPDATE_HTACCESS" ) ) { - $update_mod_rewrite_rules_error = ".htaccess update disabled by admin: DO_NOT_UPDATE_HTACCESS defined"; - return false; - } - - if ( ! function_exists( 'get_home_path' ) ) { - include_once( ABSPATH . 'wp-admin/includes/file.php' ); // get_home_path() - include_once( ABSPATH . 'wp-admin/includes/misc.php' ); // extract_from_markers() - } - $home_path = trailingslashit( get_home_path() ); - $home_root = parse_url( get_bloginfo( 'url' ) ); - $home_root = isset( $home_root[ 'path' ] ) ? trailingslashit( $home_root[ 'path' ] ) : '/'; - if ( - $home_root == '/' && - $home_path != $_SERVER[ 'DOCUMENT_ROOT' ] - ) { - $home_path = $_SERVER[ 'DOCUMENT_ROOT' ]; - } elseif ( - $home_root != '/' && - $home_path != str_replace( '//', '/', $_SERVER[ 'DOCUMENT_ROOT' ] . $home_root ) && - is_dir( $_SERVER[ 'DOCUMENT_ROOT' ] . $home_root ) - ) { - $home_path = str_replace( '//', '/', $_SERVER[ 'DOCUMENT_ROOT' ] . $home_root ); - } - $home_path = trailingslashit( $home_path ); - - if ( ! file_exists( $home_path . ".htaccess" ) ) { - $update_mod_rewrite_rules_error = ".htaccess not found: {$home_path}.htaccess"; - return false; - } - - $generated_rules = wpsc_get_htaccess_info(); - $existing_rules = implode( "\n", extract_from_markers( $home_path . '.htaccess', 'WPSuperCache' ) ); - - $rules = $add_rules ? $generated_rules[ 'rules' ] : ''; - - if ( $existing_rules == $rules ) { - $update_mod_rewrite_rules_error = "rules have not changed"; - return true; - } - - if ( $generated_rules[ 'wprules' ] == '' ) { - $update_mod_rewrite_rules_error = "WordPress rules empty"; - return false; - } - - if ( empty( $rules ) ) { - return insert_with_markers( $home_path . '.htaccess', 'WPSuperCache', array() ); - } - - $url = trailingslashit( get_bloginfo( 'url' ) ); - $original_page = wp_remote_get( $url, array( 'timeout' => 60, 'blocking' => true ) ); - if ( is_wp_error( $original_page ) ) { - $update_mod_rewrite_rules_error = "Problem loading page"; - return false; - } - - $backup_filename = $cache_path . 'htaccess.' . wp_rand() . '.php'; - $backup_file_contents = file_get_contents( $home_path . '.htaccess' ); - file_put_contents( $backup_filename, "<" . "?php die(); ?" . ">" . $backup_file_contents ); - $existing_gzip_rules = implode( "\n", extract_from_markers( $cache_path . '.htaccess', 'supercache' ) ); - if ( $existing_gzip_rules != $generated_rules[ 'gziprules' ] ) { - insert_with_markers( $cache_path . '.htaccess', 'supercache', explode( "\n", $generated_rules[ 'gziprules' ] ) ); - } - $wprules = extract_from_markers( $home_path . '.htaccess', 'WordPress' ); - wpsc_remove_marker( $home_path . '.htaccess', 'WordPress' ); // remove original WP rules so SuperCache rules go on top - if ( insert_with_markers( $home_path . '.htaccess', 'WPSuperCache', explode( "\n", $rules ) ) && insert_with_markers( $home_path . '.htaccess', 'WordPress', $wprules ) ) { - $new_page = wp_remote_get( $url, array( 'timeout' => 60, 'blocking' => true ) ); - $restore_backup = false; - if ( is_wp_error( $new_page ) ) { - $restore_backup = true; - $update_mod_rewrite_rules_error = "Error testing page with new .htaccess rules: " . $new_page->get_error_message() . "."; - wp_cache_debug( 'update_mod_rewrite_rules: failed to update rules. error fetching second page: ' . $new_page->get_error_message() ); - } elseif ( $new_page[ 'body' ] != $original_page[ 'body' ] ) { - $restore_backup = true; - $update_mod_rewrite_rules_error = "Page test failed as pages did not match with new .htaccess rules."; - wp_cache_debug( 'update_mod_rewrite_rules: failed to update rules. page test failed as pages did not match. Files dumped in ' . $cache_path . ' for inspection.' ); - wp_cache_debug( 'update_mod_rewrite_rules: original page: 1-' . md5( $original_page[ 'body' ] ) . '.txt' ); - wp_cache_debug( 'update_mod_rewrite_rules: new page: 1-' . md5( $new_page[ 'body' ] ) . '.txt' ); - file_put_contents( $cache_path . '1-' . md5( $original_page[ 'body' ] ) . '.txt', $original_page[ 'body' ] ); - file_put_contents( $cache_path . '2-' . md5( $new_page[ 'body' ] ) . '.txt', $new_page[ 'body' ] ); - } - - if ( $restore_backup ) { - global $wp_cache_debug; - file_put_contents( $home_path . '.htaccess', $backup_file_contents ); - unlink( $backup_filename ); - if ( $wp_cache_debug ) { - $update_mod_rewrite_rules_error .= "
    See debug log for further details"; - } else { - $update_mod_rewrite_rules_error .= "
    Enable debug log on Debugging page for further details and try again"; - } - - return false; - } - } else { - file_put_contents( $home_path . '.htaccess', $backup_file_contents ); - unlink( $backup_filename ); - $update_mod_rewrite_rules_error = "problem inserting rules in .htaccess and original .htaccess restored"; - return false; - } - - return true; -} - -// Delete feeds when the site is updated so that feed files are always fresh -function wpsc_feed_update( $type, $permalink ) { - $wpsc_feed_list = get_option( 'wpsc_feed_list' ); - - update_option( 'wpsc_feed_list', array() ); - if ( is_array( $wpsc_feed_list ) && ! empty( $wpsc_feed_list ) ) { - foreach( $wpsc_feed_list as $file ) { - wp_cache_debug( "wpsc_feed_update: deleting feed: $file" ); - prune_super_cache( $file, true ); - prune_super_cache( dirname( $file ) . '/meta-' . basename( $file ), true ); - } - } -} -add_action( 'gc_cache', 'wpsc_feed_update', 10, 2 ); - -function wpsc_get_plugin_list() { - $list = do_cacheaction( 'wpsc_filter_list' ); - foreach( $list as $t => $details ) { - $key = "cache_" . $details[ 'key' ]; - if ( isset( $GLOBALS[ $key ] ) && $GLOBALS[ $key ] == 1 ) { - $list[ $t ][ 'enabled' ] = true; - } else { - $list[ $t ][ 'enabled' ] = false; - } - - $list[ $t ]['desc'] = strip_tags( $list[ $t ]['desc'] ?? '' ); // phpcs:ignore WordPress.WP.AlternativeFunctions.strip_tags_strip_tags - $list[ $t ]['title'] = strip_tags( $list[ $t ]['title'] ?? '' ); // phpcs:ignore WordPress.WP.AlternativeFunctions.strip_tags_strip_tags - } - return $list; -} - -function wpsc_update_plugin_list( $update ) { - $list = do_cacheaction( 'wpsc_filter_list' ); - foreach( $update as $key => $enabled ) { - $plugin_toggle = "cache_{$key}"; - if ( isset( $GLOBALS[ $plugin_toggle ] ) || isset( $list[ $key ] ) ) { - wp_cache_setting( $plugin_toggle, (int)$enabled ); - } - } -} - -function wpsc_add_plugin( $file ) { - global $wpsc_plugins; - if ( substr( $file, 0, strlen( ABSPATH ) ) == ABSPATH ) { - $file = substr( $file, strlen( ABSPATH ) ); // remove ABSPATH - } - if ( - ! isset( $wpsc_plugins ) || - ! is_array( $wpsc_plugins ) || - ! in_array( $file, $wpsc_plugins ) - ) { - $wpsc_plugins[] = $file; - wp_cache_setting( 'wpsc_plugins', $wpsc_plugins ); - } - return $file; -} -add_action( 'wpsc_add_plugin', 'wpsc_add_plugin' ); - -function wpsc_delete_plugin( $file ) { - global $wpsc_plugins; - if ( substr( $file, 0, strlen( ABSPATH ) ) == ABSPATH ) { - $file = substr( $file, strlen( ABSPATH ) ); // remove ABSPATH - } - if ( - isset( $wpsc_plugins ) && - is_array( $wpsc_plugins ) && - in_array( $file, $wpsc_plugins ) - ) { - unset( $wpsc_plugins[ array_search( $file, $wpsc_plugins ) ] ); - wp_cache_setting( 'wpsc_plugins', $wpsc_plugins ); - } - return $file; -} -add_action( 'wpsc_delete_plugin', 'wpsc_delete_plugin' ); - -function wpsc_get_plugins() { - global $wpsc_plugins; - return $wpsc_plugins; -} - -function wpsc_add_cookie( $name ) { - global $wpsc_cookies; - if ( - ! isset( $wpsc_cookies ) || - ! is_array( $wpsc_cookies ) || - ! in_array( $name, $wpsc_cookies ) - ) { - $wpsc_cookies[] = $name; - wp_cache_setting( 'wpsc_cookies', $wpsc_cookies ); - } - return $name; -} -add_action( 'wpsc_add_cookie', 'wpsc_add_cookie' ); - -function wpsc_delete_cookie( $name ) { - global $wpsc_cookies; - if ( - isset( $wpsc_cookies ) && - is_array( $wpsc_cookies ) && - in_array( $name, $wpsc_cookies ) - ) { - unset( $wpsc_cookies[ array_search( $name, $wpsc_cookies ) ] ); - wp_cache_setting( 'wpsc_cookies', $wpsc_cookies ); - } - return $name; -} -add_action( 'wpsc_delete_cookie', 'wpsc_delete_cookie' ); - -function wpsc_get_cookies() { - global $wpsc_cookies; - return $wpsc_cookies; -} - -function wpsc_get_extra_cookies() { - global $wpsc_cookies; - if ( - is_array( $wpsc_cookies ) && - ! empty( $wpsc_cookies ) - ) { - return '|' . implode( '|', $wpsc_cookies ); - } else { - return ''; - } -} - -function wpsc_update_check() { - global $wpsc_version; - - if ( - ! isset( $wpsc_version ) || - $wpsc_version != 169 - ) { - wp_cache_setting( 'wpsc_version', 169 ); - global $wp_cache_debug_log, $cache_path; - $log_file = $cache_path . str_replace('/', '', str_replace('..', '', $wp_cache_debug_log)); - if ( ! file_exists( $log_file ) ) { - return false; - } - @unlink( $log_file ); - wp_cache_debug( 'wpsc_update_check: Deleted old log file on plugin update.' ); - } -} -add_action( 'admin_init', 'wpsc_update_check' ); - -/** - * Renders a partial/template. - * - * The global $current_user is made available for any rendered template. - * - * @param string $partial - Filename under ./partials directory, with or without .php (appended if absent). - * @param array $page_vars - Variables made available for the template. - */ -function wpsc_render_partial( $partial, array $page_vars = array() ) { - if ( ! str_ends_with( $partial, '.php' ) ) { - $partial .= '.php'; - } - - if ( strpos( $partial, 'partials/' ) !== 0 ) { - $partial = 'partials/' . $partial; - } - - $path = __DIR__ . '/' . $partial; - if ( ! file_exists( $path ) ) { - return; - } - - foreach ( $page_vars as $key => $val ) { - $$key = $val; - } - global $current_user; - include $path; -} - -/** - * Render common header - */ -function wpsc_render_header() { - ?> -
    - - -
    - - -