Jump to content

PHP Locks Session when page load interrupted before complete load.


itsureboy

Recommended Posts

I'm having a problem and need an answer to why its happening and how to prevent it.

 

Scenario:

 

I begin load my home page which starts with a session_start(); .... Before it FULLY completes loading I try to navigate to another page and BOOM, that page will not load and any other page that begins with session_start(); will not load unless I close and restart the entire browser or wait about 10 minutes....

 

I will note my website makes ajax calls every 5 seconds or so, but I use setTimeout for them.

 

:confused:

 

Any help??? Thanks ahead!

Link to comment
Share on other sites

To make a call every 5 seconds, it would make more sense to use setInterval().  Anyways, if that happens, just clear the session from your browser.  If you must, just clear your cookies and sessions go along with it.

 

You can try this.

$session_id = session_id();

if (empty($session_id))
    session_start();

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.