Joomla blank screen – how to show errors

If you ever have a blank screen in Joomla, it is quite likely due to some errors, perhaps PHP errors. Errors are turned off by default so in order to display your errors, add the following to your configuration.php file at the bottom, before the closing PHP tag, and after the closing curly bracket:

ini_set(‘display_errors’, 1);
error_reporting(E_ALL);