解决WP“正在执行例行维护,请一分钟后回来。”的方法

方法一:最简单的方法就是等几分钟,wordpress会自动恢复。

方法二:删除根目录下的.maintenance文件,wp也会恢复正常。

方法三:修改 /wp_admin/includes/class-wp-filesystem-direct.php 文件中的function_mkdir函数。

function mkdir($path, $chmod = false, $chown = false, $chgrp = false) {
// safe mode fails with a trailing slash under certain PHP versions.
$path = untrailingslashit($path);
if ( empty($path) )
$path = '/';
//此处开始修改
if ( ! $chmod )
$chmod = $this->permission;
if (ini_get('safe_mode')&& substr($path,-1) == '/')
{
$path = substr($path,0,-1);
}
//结束
if ( ! @mkdir($path) )
return false;
$this->chmod($path, $chmod);
if ( $chown )
$this->chown($path, $chown);
if ( $chgrp )
$this->chgrp($path, $chgrp);
return true;
}

《 “解决WP“正在执行例行维护,请一分钟后回来。”的方法” 》 有 2 条评论

  1. Mr WordPress 的头像

    Hi, this is a comment.
    To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.

发表回复