Blank page on Zend Framework 2 app deploy

119 views Asked by At

I have a Fedora 22 Server all configured, even tested the skeleton app and it works, but if I Copy any app onto it, it just displays a Blank page, no errors, and when I inspect the page it just displays

<html>
    <head></head>
    <body></body>
</html>

Note* I do have

error_reporting(E_ALL);
1

There are 1 answers

0
Julio Villalba On

I had a wrong configuration for PHP 5.5 I had set

error_reporting = E_ALL | E_STRICT

and it should be just

error_reporting = E_ALL