对于因为使用FastCGI而找不到运行方式而访问此页面的用户wp-cron.php
FastCGI问题:
使用FastCGI时,存在阻止wp cron的问题。要从浏览器运行的php。
要修复它,请在wp-cron.php
:
请记住,不建议修改核心WordPress文件,因此只有在您知道自己在做什么的情况下才能继续。
Before:
/* Don\'t make the request block till we finish, if possible. */
if (function_exists(\'fastcgi_finish_request\') && version_compare(phpversion(), \'7.0.16\', \'>=\')) {
if (!headers_sent()) {
header(\'Expires: Wed, 11 Jan 1984 05:00:00 GMT\');
header(\'Cache-Control: no-cache, must-revalidate, max-age=0\');
}
fastcgi_finish_request();
}
After:
/* Don\'t make the request block till we finish, if possible. */
//if (function_exists(\'fastcgi_finish_request\') && version_compare(phpversion(), \'7.0.16\', \'>=\')) {
// if (!headers_sent()) {
// header(\'Expires: Wed, 11 Jan 1984 05:00:00 GMT\');
// header(\'Cache-Control: no-cache, must-revalidate, max-age=0\');
// }
//
// fastcgi_finish_request();
//}