Jump to content

PHP Sessions.


AjBaz100

Recommended Posts

I have the strangest problem with sessions.  On Friday when I left work, everything was working fine, but this morning when I came in I noticed that none of my sessions are working.

 

I'm using Ajax to call a php script and return a value that is based on a session state.  I've broken down the script to a very simple session and still no luck.

 

Here is an example.

 

Javascript

            var myRequest = new ajaxObject( '/displays/eb/overlayContent.php' );

            myRequest.update( params, 'GET' );

            myRequest.callback = function(responseText)

            {               

                if( responseText.length )

                {

                    alert( responseText );

                }

            }

 

 

PHP

<?php

session_start();

echo " --".$_SESSION['Test']."-- ";

$_SESSION['Test'] = "Hello";

?>

 

On the first call, ---- is returned, which is correct, but I would have thought that on the second call to this page --Hello-- should be returned.

 

I've checked the /var/lib/php5 directory and session files are being written, but it seams to write a file for every page request.  So it's like it's creating a new session for every request.

 

I've also skipped the ajax call and gone directly to the URL, still a new session file is being created for each page request, and the session isn't holding the value.

 

What is strange though is that this was working fine on Friday.

 

I've never had this kind of problem with PHP before, and I'm a little stumped on a solution.

 

 

 

Link to comment
Share on other sites

Yes, I've tried using firefox 3 and IE 7, and I've also tried it from a couple of different computers.

 

I've put the exact same code on a different server and it worked fine. So this lead me to think that something had gone wrong with the php.ini file,

 

So i copied the php.ini file from the server that worked on the the one that doesn't, restarted apache and still same problem.

 

 

 

 

 

Link to comment
Share on other sites

you are also spot on in that the session id isn't being retained.

 

This is the output from session_id();

 

937a57f8dcd4935a29fe54f534fa6307 - request 1

5843c3c6bb8d36fb8ebbd2ddf23a0329 - request 2.

 

I've checked the disk usage on the box, file system looks ok, no I/O errors and php.ini file settings look ok.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.