wp-cron.php is returning a 200 OK -> BUG
-
BackUpWordPress has detected a problem. wp-cron.php is returning a 200 OK response which could mean cron jobs aren’t getting fired properly. BackUpWordPress relies on wp-cron to run scheduled backups.
in /admin/actions.php
~LINE 708
} elseif ( wp_remote_retrieve_response_code( $response ) !== 200 ) {
shoud be
} elseif ( wp_remote_retrieve_response_code( $response ) != 200 ) {
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘wp-cron.php is returning a 200 OK -> BUG’ is closed to new replies.