Hello All,
I am using Zend Framework, and had a left a project for a while, when I returned to it I've added a new Controller, (for arguments sakes CustomController) and created a view for the controller (/applications/views/scripts/custom/index.phtml).
When I attempt to visit the site (http://site/custom) I get an error:
Fatal error: Uncaught exception 'Zend_Session_Exception' with message 'Session must be started before any output has been sent to the browser; output started in /web/site/CustomController.php:36)
Note: Line 36 is EOF.
Can anyone give me any idea on where I should begin to look? I've tried to check IF sessions have been initialized (and start if not) under the ControllerClass' Init, preDispatch, and as well in the bootstrap (yes, I was desperate).
Can anyone recommend any places I should check? This is Zend Framework 1.7.
I have created a login/ controller which works perfectly.