I get this error when trying to load a Zend Framework application:
Fatal error: Uncaught exception \'Zend_Session_Exception\' with message \'sessi
I had the same error. On local machine, everything worked fine. On server not. My solution was to put Zend_Session::start(); in the index.php before running bootstrap. So that it looks like this:
Zend_Session::start();
bootstrap()->run();