The dreaded “Internal Server Error”. It tells you nothing and if you don’t know where to start, then you might feel lost. This tip should always be kept in mind any time your having an Internal Server Error. Follow the steps below:

  1. In the root of your WordPress folders, find wp-config.php
  2. Open it and find ‘define( ‘WP_DEBUG’, false );’
  3. Change ‘false’ to ‘true’.
  4. This enables errors to be seen on your web page and will explain the errors in more detail.
  5. In many cases the memory limit is too low.
  6. Simply increase the memory with the code below
  7. Add it just before ‘/* That’s all, stop editing! Happy publishing. */
  8. Save, and re-upload.
  9. If that works, then don’t forget to change your DEBUG back to false. Re-upload.
define( 'WP_DEBUG', false );
define( 'WP_MEMORY_LIMIT', '256M' );
/* That's all, stop editing! Happy publishing. */