Troubleshooting PHP Errors (Timeout, Memory) Print

  • 0

PHP Errors

  • Symptoms: Your site loads for a long time and then goes white or shows a Gateway Timeout.
  • Fix: Increase the max_execution_time in 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_limit in 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.


Was this answer helpful?

« Back