That's exactly what I asked 🙂
That means "Display all errors (E_ALL), except for notice-level errors (&~ E_NOTICE)"
I think it's a script issue - I think the script is succeeding, but it isn't printing anything.
Try forcing an error in your script, eg deliberately leave off a semicolon somewhere. If you get an error, you know at least errors are working.
Then, at the top of your script, use this:
error_reporting(E_ALL); // will display ALL errors (overrides php.ini setting)
If you still get nothing, it's most definitely a script issue. Then you need to start stepping through your code, following where it SHOULD be going, and trying to pinpoint exactly where it goes awry.