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!

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();

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.