In your index.php file you have ini_set('display_errors=off;);
Could you try: ini_set(‘display_errors’,0);
Also, on the line: ; error_reporting = E_ALL & ~E_STRICT
Please remove the semicolon at the left, as lines that start with ‘;’ are considered comments and won’t be picked up.
so it should just simply be: error_reporting = E_ALL & ~E_STRICT
with no semicolons on either end.
You probably shouldn’t delete every semicolon in the php.ini, this would most likely cause some issues.
I’d recommend, at the moment, the only semicolon you should delete would be on the line:
error_reporting = E_ALL & ~E_STRICT