Debugging
- Replace this line of the code or file which you've received from FraudFilter:
error_reporting(0);
with
ini_set('display_startup_errors', 1); ini_set('display_errors', 1); error_reporting(-1);
- Save your file
- Send the URL the support.
This turns on the PHP errors. When you visit the URL, you'll be able to see some useful errors. You might be able to solve the errors yourself if you Google the error text and save your time but if you do not understand then simply send the URL to support.
Caution: Once it starts working, switch it back to the previous state.