Hi,
I'm trying to configure my application on production server. On my local server everything works good. On production server (Ubuntu server 14.04, phpinfo here: https://pastebin.com/1dd8mTm8) on some actions I get a blank page.
For example: When I visit /controller/action1 I get blank page.
When I add to action1 this code: $this->view->pick('controller/action1') action1 works good.
Next I remove $this->view->pick('controller/action1') action1 works good. Edit: When I remove pick method action1 doesn't work
The question is why some actions produce a blank page without pick method?