Warning! WP Super Cache caching broken! The script advanced-cache.php could not load wp-cache-phase1.php.
13 年 ago jony Warning! WP Super Cache caching broken! The script advanced-cache.php could not load wp-cache-phase1.php.已关闭评论
wordpress换空间后,登陆后台出现Warning! WP Super Cache caching broken! The script advanced-cache.php could not load wp-cache-phase1.php
对于此错误信息,解决方法是找到文件wp-content/advanced-cache.php ,文件内容:
if ( !include_once( ‘/xxxxx/www/html/wp-content/plugins/wp-super-cache/’ . ‘wp-cache-phase1.php’ ) ) {
if ( !@is_file( ‘/xxxxx/www/html/wp-content/plugins/wp-super-cache/’ . ‘wp-cache-phase1.php’ ) ) {
define( ‘ADVANCEDCACHEPROBLEM’, 1 );
register_shutdown_function( ‘wpcache_broken_message’ );
}
文件内容红色部分,就是wp-cache-phase1.php文件的路径,错的,是之前老服务器上的路径,自然是无法引用到文件的。修改为相对新服务器正确的路径的,保存完成。