Changeset 3031195
- Timestamp:
- 02/04/2024 06:48:03 PM (2 years ago)
- Location:
- rapid-cache/trunk
- Files:
-
- 4 edited
-
includes/src/Traits/Plugin/AutoCacheUtils.php (modified) (2 diffs)
-
includes/stub.php (modified) (1 diff)
-
rapid-cache.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rapid-cache/trunk/includes/src/Traits/Plugin/AutoCacheUtils.php
r3027335 r3031195 76 76 $this->dismissMainNotice( 'auto_cache_engine_minimum_requirements' ); // Clear any previous notice. 77 77 $this->enqueueMainNotice( 78 sprintf( __( '<strong>%1$s says...</strong> The Auto-Cache Engine requires <a href="https://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen" target="_blank">PHP URL-aware fopen wrappers</a> (<code>allow_url_fopen=1</code>) or the <a href="https://cometcache.com/r/php-net-curl/" target="_blank">PHP cURL functions</a> to be installed and available, however your PHP configuration does not meet these minimum requirements. Please contact your web hosting company to resolve this issue or disable the Auto-Cache Engine in the <a href="' . esc_attr( add_query_arg( urlencode_deep( [ 'page' => MEGAOPTIM_RAPID_CACHE_GLOBAL_NS ] ), self_admin_url( '/admin.php' ) ) ) . '">settings</a>.', 'rapid-cache' ), esc_html( NAME ) ),78 sprintf( __( '<strong>%1$s says...</strong> The Auto-Cache Engine requires <a href="https://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen" target="_blank">PHP URL-aware fopen wrappers</a> (<code>allow_url_fopen=1</code>) or the <a href="https://cometcache.com/r/php-net-curl/" target="_blank">PHP cURL functions</a> to be installed and available, however your PHP configuration does not meet these minimum requirements. Please contact your web hosting company to resolve this issue or disable the Auto-Cache Engine in the <a href="' . esc_attr( add_query_arg( urlencode_deep( [ 'page' => MEGAOPTIM_RAPID_CACHE_GLOBAL_NS ] ), self_admin_url( '/admin.php' ) ) ) . '">settings</a>.', 'rapid-cache' ), esc_html( MEGAOPTIM_RAPID_CACHE_NAME ) ), 79 79 [ 'class' => 'error', 'persistent_key' => 'auto_cache_engine_minimum_requirements', 'dismissable' => false ] 80 80 ); … … 158 158 $this->dismissMainNotice( 'xml_sitemap_missing' ); // Clear any previous XML Sitemap notice, which may reference an old URL; see http://wsharks.com/1SAofhP 159 159 $this->enqueueMainNotice( 160 sprintf( __( '<strong>%1$s says...</strong> The Auto-Cache Engine is currently configured with an XML Sitemap location that could not be found. We suggest that you install the <a href="http://cometcache.com/r/google-xml-sitemaps-plugin/" target="_blank">Google XML Sitemaps</a> plugin. Or, empty the XML Sitemap field and only use the list of URLs instead. See: <strong>Dashboard → %1$s → Auto-Cache Engine → XML Sitemap URL</strong>', 'rapid-cache' ), esc_html( NAME ) ) . '</p><hr />' .160 sprintf( __( '<strong>%1$s says...</strong> The Auto-Cache Engine is currently configured with an XML Sitemap location that could not be found. We suggest that you install the <a href="http://cometcache.com/r/google-xml-sitemaps-plugin/" target="_blank">Google XML Sitemaps</a> plugin. Or, empty the XML Sitemap field and only use the list of URLs instead. See: <strong>Dashboard → %1$s → Auto-Cache Engine → XML Sitemap URL</strong>', 'rapid-cache' ), esc_html( MEGAOPTIM_RAPID_CACHE_NAME ) ) . '</p><hr />' . 161 161 sprintf( __( '<p><strong>Problematic Sitemap URL:</strong> <a href="%1$s" target="_blank">%1$s</a> / <strong>Diagnostic Report:</strong> %2$s', 'rapid-cache' ), esc_html( $sitemap ), $failure ), 162 162 [ 'class' => 'error', 'persistent_key' => 'xml_sitemap_missing', 'dismissable' => false ] -
rapid-cache/trunk/includes/stub.php
r3027335 r3031195 22 22 define('MEGAOPTIM_RAPID_CACHE_SLUG', 'rapid-cache'); 23 23 define('MEGAOPTIM_RAPID_CACHE_OLD_SLUG', 'rapid-cache'); 24 define('MEGAOPTIM_RAPID_CACHE_VERSION', '1.2. 0');24 define('MEGAOPTIM_RAPID_CACHE_VERSION', '1.2.1'); 25 25 define('MEGAOPTIM_RAPID_CACHE_PATH', dirname(__DIR__).DIRECTORY_SEPARATOR); 26 26 define('MEGAOPTIM_RAPID_CACHE_PLUGIN_FILE', MEGAOPTIM_RAPID_CACHE_PATH.MEGAOPTIM_RAPID_CACHE_SLUG.'.php'); -
rapid-cache/trunk/rapid-cache.php
r3027335 r3031195 6 6 Author: MegaOptim 7 7 Author URI: https://megaoptim.com 8 Version: 1.2. 08 Version: 1.2.1 9 9 Text Domain: rapid-cache 10 10 Domain Path: /languages -
rapid-cache/trunk/readme.txt
r3027335 r3031195 1 1 === Rapid Cache === 2 2 3 Stable tag: 1.2. 03 Stable tag: 1.2.1 4 4 Requires at least: 4.2 5 5 Tested up to: 6.4 … … 237 237 238 238 == Changelog == 239 240 = 1.2.1 = 241 Release date: February 4th, 2024 242 243 * Fix: Fatal error in the settings screen in some cases 239 244 240 245 = 1.2.0 =
Note: See TracChangeset
for help on using the changeset viewer.