I’m getting “session has already been started by session.auto-start or session_start()” error in my Zend Framework Application when I try to instantiate Zend_Session_Namespace. I assume it’s facebook api’s problem which tries to start the session by its own, I haven’t used session_start() anywhere in my application. Is there any way to avoid this from happening?
I’m getting session has already been started by session.auto-start or session_start() error in my
Share
Maybe not the best solution but I solved it by editing in the Facebook class constructor the session_start() method and replaced it with Zend_Session::start();