Documentation
← Back
Debug Mode & Log Issues
If you encounter unexpected errors, enabling debug logging can help identify the issue.
1️⃣ Enable WordPress Debug Logging
In wp-config.php, add:
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
This writes errors to:
/wp-content/debug.log
2️⃣ Check Server Error Logs
Some hosting providers log errors separately.
Check:
- cPanel error logs
- Hosting dashboard logs
- PHP-FPM logs
3️⃣ Common Debug Indicators
Look for:
- Memory exhausted errors
- Fatal errors
- Undefined function calls
- Permission errors
4️⃣ Before Sending Logs to Support
Please:
- Remove sensitive information
- Include only relevant entries
- Indicate the exact time the issue occurred
