Troubleshooting a Blank Page/Oops Error Message
Via The Admin Area
To troubleshoot a blank page or Oops error message, navigate to Configuration > System Settings > General Settings.
Select the Other tab and then scroll to the bottom of the page.
Check Display Errors.
Click Save Changes.
Now perform the steps that previously were creating a blank page or Oops message. This time, instead of a blank page you should see an error message indicating what is causing the issue.
Once you are done, be sure to disable Display Errors again.
Via The Configuration File
If you're unable to access the administration area, there is a manual configuration file flag option that you can add to the configuration.php file in the WHMCS root directory to enable error reporting.
Edit the configuration.php
file and add the following line at the very end of the file:
<p>$display_errors = true;</p>
Upload the configuration.php
file.
Now perform the steps that previously were creating a blank page or Oops message. This time, instead of a blank page you should see an error message indicating what is causing the issue.
Once you are done, be sure to remove the display_errors
flag option.