I\'ve run into this issue before, but I can\'t remember how to solve it. I have created a bare bones (can\'t get any simpler) controller, and am just trying to echo somethin
For some reason, I was trying to set some session variable in my index.php
file after the application had finished bootstrapping. Not sure why this didn't cause a problem before, but when I removed this from my index.php
, it worked.
$userSession = new Zend_Session_Namespace('Auth');
$userSession->forcePasswordChange = false;