PHP Errors
- Symptoms: Your site loads for a long time and then goes white or shows a Gateway Timeout.
- Fix: Increase the
max_execution_timein your PHP Settings.
Memory Exhausted Errors
- Symptoms: You see an error saying "Allowed memory size of X bytes exhausted."
- Fix: Your application needs more RAM to run a specific task. Increase the
memory_limitin your PHP Settings.
Displaying Errors By default, errors are hidden for security. If you need to see what is breaking your site, you can temporarily enable display_errors in your PHP Settings. Remember to turn this off when you are done.