[All]
I have deployed and app, but when I run, I get a blank screen and no errors
Resumo: I have deployed and app, but when I run, I get a blank screen and no errors
Q:I have deployed and app, but when I run, I get a blank screen and no errors
A:Probably errors are turned off in your PHP setup, add these lines at the top of your script:
ini_set("display_errors",1);
error_reporting(E_ALL);
And try again.