View Single Post
  #2  
Old 04-24-2017, 03:25 PM
p810 p810 is offline
Member
 
Join Date: Apr 2017
Posts: 6
Gender: Unknown/Other
Credits: 1,134
p810 is on a distinguished road
Default

Quote:
Originally Posted by KatFennec View Post
I uninstalled the elements theme packaged with the script, and have decided I would like to reinstall it. However, when I try to do so I am presented with a blank page upon loading my site.
Depending on your installation's settings PHP may be writing errors to a file on your server (typically this file is called php_error.log). If not, or if you can't find where that file is located, try turning on error reporting:

PHP Code:
ini_set('display_errors'true);
error_reporting(E_ALL); 
This is not something I'd advise you to do on a live site, but if that's only enabled in the admin panel there shouldn't be any risk.
Reply With Quote