Jump to content

$_SESSION reset on every refresh, cause i find is ini_set('session.name','test');


iarp

Recommended Posts

I'm working with this script: https://github.com/m...r/Resession.php i haven't modified it or anything yet. I'm trying to use it to get a bit better session security, today i was messing around with cookies and just copied the id from one browser to another and was magically logged in as the other browser... too insecure.

 

and i have a test page:

 

<?php
require_once('../libs/class.Resession.php');

function debug($var) {
   echo '<pre>' . print_r($var, true) . '</pre>';
}

$session = new Resession(array(
   'security' => Resession::SECURITY_HIGH,
   'cookies' => true,
   'name' => 'mysite321'
));

#$session->set('hi', 'testing');

debug($session->get());

debug($session);

 

I'm having an issue where, i $session->set a value (as commented out in code above) and then print the session information. That works all fine and dandy until i refresh the page. I'm continuously getting a new session id on every refresh, and i'm losing the session information.

 

I have commented out just about every line in that __construct function attempting to find the culprit and the ONLY thing that stops the loss of session data is commenting out

 

ini_set('session.name', $this->_config['name']);

 

I am not sure why it getting a new session id on every reload just because of that single line. I'm wondering if anyone could have a quick glance and let me know if i'm missing some type of detail here.

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.