Welcome Guest, Not a member yet? Register   Sign In
SESSION problem
#1

[eluser]n3ck[/eluser]
Hi guys!

I've made a web app for some corp. and i have huge headache with one thing: everywhere this app works good except HQ of this corp. In the HQ, the auth things gets about 3 minutes and ends with timeout. I deducted, that problem may be with sessions. I've made a couple of test (auth with db, without db, only with sessions, and without sessions), and let HQ's employees to get through it. Only test without sessions seems to be passed successful. So i decided to wrote some simple test code to check what happens with sessions. This is my test code and results:

Code:
<?php session_start();
$_SESSION['blabla'] = 'aaaaa';
?>
<a href="sessiontest.php">Next</a>

sessiontest.php
Code:
&lt;?php
    session_start();
    $session = var_export($_SESSION, true);
    $file = fopen('/debug/session.log','a+');
    fwrite($file, date('H:m:s').$session."\n");
    fclose($file);
?&gt;

And results (only my own attempt):
Code:
09:11:27array (
  'blabla' => 'aaaaa',
)

Tere is no entry of HQ's employees attempts. People from HQ says, that it has been loading for few minutes with no success. Any ideas why?


Messages In This Thread
SESSION problem - by El Forum - 11-10-2009, 01:18 PM
SESSION problem - by El Forum - 11-11-2009, 03:23 AM
SESSION problem - by El Forum - 11-13-2009, 06:16 AM
SESSION problem - by El Forum - 11-13-2009, 06:51 AM
SESSION problem - by El Forum - 11-13-2009, 07:24 AM
SESSION problem - by El Forum - 11-15-2009, 08:18 AM



Theme © iAndrew 2016 - Forum software by © MyBB