Conflict issues are one of the top causes of WordPress outages. A repeatable playbook helps you restore service quickly and safely.
Conflict isolation method
- Take backup/snapshot.
- Enable debug logging.
- Deactivate all plugins.
- Switch to default theme.
- Re-enable one item at a time.
CLI commands
wp plugin deactivate --all
wp theme activate twentytwentyfour
wp plugin activate plugin-slug
What to log during test
- HTTP status changes
- PHP fatal/warning lines
- Exact action that reintroduces breakage
After fix
Pin plugin versions if necessary and test staging before production updates.
Validation
Re-test key user paths and review service logs after each change.
Further reading: WordPress Incident Recovery Guidance
Related posts: