Hi everyone, I had the same problem.
It appears to be caused by a request to scriptburn.com. The server was returning a ‘500 Internal Error’ page with styling, and that page (along with the styling) was being embedded directly in the edit_post metabox.
They must’ve just shutdown the scriptburn server in the last few hours, cause now I’m getting long 5 second timeouts each time I load an admin page.
As a temporary solution, I’m disabling any requests to scriptburn.com with the following code in an appropriate functions.php file:
N.B.: This is a temporary solution, and it could mess up licensing for the PRO edition.
add_filter( 'pre_http_request', function($return_value, $r, $url ) {
if (stripos($url, '//scriptburn.com') !== false) {
return new WP_Error('blocked_url', 'This request was blocked');
} else {
return false;
}
}, 10, 3 );
Hope it helps!
Caleb
-
This reply was modified 6 years, 9 months ago by calebmcd.