Hello I have been using Zendframe work lately and I am facing strange session issue.

I have a page that uses sessions. The session is not being set properly in local where as the same code works fine in the server. In local most of the time the session is not being set and works sometimes its not consistent. Is there any fix for this?

its simple session namespace

here is the code

$abc= new Zend_Session_Namespace('List');

if (!$abc->__isset('List')) {
                $abc->__set('abc1', $lowabc);
                $abc->__set('abc2', $availableabc);
            } else {
              $abc->__set('abc1', $lowabc);
              $abc->__set('abc2', $availableabc);
            }

Instead if __set i have also tried this

$abc->abc1= $lowabc;
$abc->abc2= $availableabc;
link|improve this question

38% accept rate
Can you post the most relevant code? – Aurelio De Rosa Nov 23 '11 at 15:33
What is your local setup? This sounds like a session configuration issue, check all session related php.ini settings and compare them to the setting on your server. – ChrisR Nov 23 '11 at 15:33
@Aurelio De Rosa i have posted the code – Kishore Nov 23 '11 at 15:41
@ChrisR I build server from my local code i will check the php.ini settings – Kishore Nov 23 '11 at 15:41
What do you get if you put a echo 'hello' in the if? Tried it in local and server. – Aurelio De Rosa Nov 23 '11 at 15:52
show 3 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.