Questions tagged [zend-session-namespace]

16 questions
4
votes
4 answers

Session with Google Chrome and PHP 5.3

I have an Auth component (based on Zend_Auth) which I am using in many projects on different servers and different environments. It has always worked... until now: When I try to log in to a new project (using the same Auth component) with Google…
markus
  • 40,136
  • 23
  • 97
  • 142
3
votes
1 answer

UNSET not working for Zend Session

I'm working with Zend Session but I have a problem. If I instanciate a Zend_Session_Namespace('a') and unset it, I continue getting the storage: $storage = new Zend_Session_Namespace('a'); unset($storage); $storage = new…
2
votes
2 answers

Recover data in Zend_Session_Namespace from other host

I have data stored in a session with Zend_Session_Namespace, Is it possible to recover this session data from another host using an id or something like that. If not, is it possible to recover the data in a $_SESSION from another host?
José Carlos
  • 1,005
  • 16
  • 29
2
votes
2 answers

How can I access zend session in some other application that is integrated with it

I am running a Zend Framework application and I have to integrate a third party chat application and for that I need to have access of signed in user's ID, How can I access this id that is stored in Zend session. Because this is not working if…
1
vote
0 answers

zend session namespace not working

I am unable to access zend session in included file via layout. what i have done so far - //bootstrap public function _initSession() { Zend_Session::start(); $test = new Zend_Session_Namespace('test'); …
1
vote
1 answer

Zend Session Namespace, get key of defined array

I'm using some Zend_Session_Namespace objects to save some data, most of these data or multidimensional arrays. I have the feeling that I miss a part of the Zend_Session_Namespace logic or I don't use them for what they are supposed to do. For…
Tim
  • 662
  • 1
  • 7
  • 16
0
votes
1 answer

Session won't be created in Mozilla Firefox

I am working on a purchase system in my assignment and trying to solve the problem by using a session to store data in the process. Although I'm experiencing a problem in Mozilla Firefox, which cannot for some reason work with the session I have…
JavaCake
  • 4,075
  • 14
  • 62
  • 125
0
votes
1 answer

Can I know how to pass the zend session in /docs folder?

I have wordpress blog in /docs folder, I would like display zend session data on blogs header page. so I would like identify the zend session in wordpress header file, can any one tell me how do it?
0
votes
1 answer

Cannot use Zend_Session_Namespace in SocialEngine

I am trying to use Zend_Session_Namespace to help me with the task of changing a user's password. To this purpose, I need to store some values of their GET request when they first visit the reset page. I'd like to do that with…
Mehdi Haghgoo
  • 3,144
  • 7
  • 46
  • 91
0
votes
2 answers

my zend session name spacing does not work

I am new to Zend and very keen to learn, so I would really appreciate some help and guidance. I am trying to create a 'method in a class' that will save the session variables of product pages visited by members to a site i.e i,e examplesite…
andreea115
  • 289
  • 1
  • 3
  • 14
0
votes
1 answer

zend session getting reset when user toggles between pages

I am learning Zend Framework and having issues with Zend_Session_Namespace. Here is the scenario: Homepage(user clicks on login-Index Controller) login page(user auth is done->Login Controller) On Successful login: Create a new…
0
votes
0 answers

Dealing with Zend Auth Data when using zend modules

I am working on zend module based structure for my project. As Zend_Auth class' default session storage is Zend_Auth. I changed according to module being called. Say for admin I use auth namespace Admin_Auth and for default module i use namespace…
0
votes
1 answer

zend_session goes wrong after get the second product

Im a beginer zend. and when i mess around with zend_session i got problem like this. With one item every things work fine. but more than one item it stop adding more item or increase matched item. here is my code // get value from form …
Duc Phan
  • 175
  • 1
  • 3
  • 14
0
votes
1 answer

How to unset session when leaving website but not when refresh?

I need to have my web app destroy/unset the Zend_Auth session when a user leaves the site: for example when a user navigates away from myapp.com to say google.com, when they come back the session is no longer set? Preferable to allow refresh without…
Kal
  • 2,239
  • 6
  • 36
  • 74
0
votes
1 answer

Zend Sessions not stored for step3

I have used zend session as bellow.. $test = new Zend_Session_Namespace('test'); $test->test = "test text"; But when i move from one step to another step its working fine and echoes value Not on step3. even i tried using $_SESSION direct (because…
1
2