I get this error when trying to load a Zend Framework application:
Fatal error: Uncaught exception \'Zend_Session_Exception\' with message \'sessi
If you are developing applications with the RPCL library (RADPHP) and you are getting this error:
Application raised an exception class Zend_Session_Exception with message 'session has already been started by session.auto-start or session_start()',
then here is my solution.
You will be surprised how simple it is. Simple include the line
require_once("zcommon.inc.php");
just after the opening PHP tag in the file containing ZAuth component – usually this is the file with a DataModule form. Of course make sure the file zcommon.inc.php is in your path. This will ensure that the Zend session will start first instead of the RPCL session.
Also make sure the name of the php files in your application correspond to the name of the containing classes.