Quote:
Originally Posted by dangarion
Any reason why changing ANY settings and hitting save would produce a blank page? Is there a debug or verbose mode that will report errors to me?
|
Most likely culprit is a PHP error. Debugging is disabled by default for the release versions, but if you go to the
index.php file in the root folder, on line 44 change
Code:
error_reporting(0);
to
Code:
error_reporting(E_ALL);
That should display any errors and help debug the issue. Be sure to turn that back to the original again once your done.