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;