- What’s the HTTP 503 Service Unavailable Error?
- 503 Service Unavailable
- 503 Service Temporarily Unavailable
- HTTP Server Error 503
- HTTP Error 503
- Error 503 Service Unavailable
- The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
- Service unavailable 503 wordpress
Find some fixes below:
1. Temporarily Deactivate all WordPress Plugins: Rename the plugin folder and create an empty plugin folder.
2. Deactivate the WordPress Theme: Deactivate current Theme. Switch to default theme. You can edit database.
Click into the “wp_options” table, then click on the “Search” tab. You will want to search under the “option_name” for template.
3. Temporarily Disable Content Delivery Network (CDN)
4. Limit WordPress ‘Heartbeat’ API by adding following function to functions.php of your action theme.
add_action( 'init', 'stop_heartbeat', 1 ); function stop_heartbeat() { wp_deregister_script('heartbeat'); }
5. Increase Your Server’s Resources
6. Review Your Logs and Enable WP_DEBUG