Could anybody help me to understand this issue?
The problem is:

I have a two versions of my application that work in parallel. This means that I have sessions already started in one application that I should use in another app. First version uses PHP sessions ($_SESSION with custom handlers) and second version of application built on Zend Framework and it should use Zend_Session.

So when I try to create new Zend_Session_Namespace("default") instance I get an error that session was already started and it's true.

So the question is — can I initialize Zend_Session object with the data already stored in PHP $_SESSION?

link|improve this question

1  
Wouldn't it be easier to restore the session via an ID or something passed to your app? – JohnP Nov 28 '11 at 10:59
Thanks, I'm trying to do this. And seems that this is the best solution in my case. The only thing should be is custom session handler (which implements Zend_Session_SaveHandler_Interface) and configure Zend_Session to use your own session_name – balkon_smoke Nov 28 '11 at 13:01
feedback

2 Answers

I had similar problem, and figured it out form zend site, This worked for me: in .htaccess file do:

php_value session.auto_start 0

For ref check: http://framework.zend.com/manual/en/zend.session.advanced_usage.html

Hope it helps

link|improve this answer
thanks a lot, but it doesn't help me :( – balkon_smoke Nov 28 '11 at 13:00
feedback
up vote 0 down vote accepted

Ok, I solved this issue, and in case of me the solution is:

  1. In old version I push member's ID into cookie
  2. In new version I fetch that ID and use different sessions system with own handler.

The one thing that may up security and may help avoid collisions it's check member's email using pubcookie.

Hope my solution helps someone.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.