Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8647763
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T13:09:02+00:00 2026-06-12T13:09:02+00:00

Could someone help me to get custom session handlers working? This seems to half

  • 0

Could someone help me to get custom session handlers working?

This seems to half work, on some pages it writes session to DB but on other pages writes session with no data. Also print_r($_SESSION) does not display any session vars anymore.

Database table:

id - varchar(32 - NULL No - Default None - Primary Key
access - int(10) - unsigned - NULL Yes - Default NULL
data - text - NULL Yes - Default NULL

In front controller (bespoke framework)

require_once('../application/models/sessionfn.php');

session_set_save_handler('_open','_close','_read','_write','_destroy','_clean');
session_start(); 

In sessionfn.php

function _open()
{
    $config = Configuration::getInstance();
    $host=$config->get("dbhost");
    $dbname=$config->get("db");

    $user=$config->get("dbuser");
    $pass=$config->get("dbpass");

    $dbh = new PDO("mysql:host=$host;dbname=$dbname",$user,$pass); 
}   

function _close()
{
    $dbh = null;
}

function _read($id)
{
    $config = Configuration::getInstance();
    $host=$config->get("dbhost");
    $dbname=$config->get("db");
    $user=$config->get("dbuser");
    $pass=$config->get("dbpass");

    $dbh = new PDO("mysql:host=$host;dbname=$dbname",$user,$pass);
    $sth = $dbh->prepare("SELECT data FROM sessions WHERE id = '$id'");
    $sth->execute();
}

function _write($id, $data)
{
    $config = Configuration::getInstance();
    $host=$config->get("dbhost");
    $dbname=$config->get("db");
    $user=$config->get("dbuser");
    $pass=$config->get("dbpass");

    $dbh = new PDO("mysql:host=$host;dbname=$dbname",$user,$pass);
    $access = time();
    $sth = $dbh->prepare("REPLACE INTO sessions VALUES ('$id', '$access', '$data')");
    $sth->execute();
}

function _destroy($id)
{   
    $config = Configuration::getInstance();
    $host=$config->get("dbhost");
    $dbname=$config->get("db");
    $user=$config->get("dbuser");
    $pass=$config->get("dbpass");

    $dbh = new PDO("mysql:host=$host;dbname=$dbname",$user,$pass);
    $sth = $dbh->prepare("DELETE FROM sessions WHERE id = '$id'");
    $sth->execute();
}

function _clean($max)
{
$config = Configuration::getInstance();
$host=$config->get("dbhost");
    $dbname=$config->get("db");
    $user=$config->get("dbuser");
    $pass=$config->get("dbpass");

    $dbh = new PDO("mysql:host=$host;dbname=$dbname",$user,$pass);
    $old = time() - $max;
    $sth = $dbh->prepare("DELETE FROM sessions WHERE  access < '$old'");
    $sth->execute();
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T13:09:03+00:00Added an answer on June 12, 2026 at 1:09 pm

    It is very hard to debug your code when I am not hands-on. 🙂

    But this might help: How to debug your own sessionhandler?

    Set up a system that can write away your output to a file. When using your own sessionhandlers, no errors are displayed.

    So add a function to sessionfn.php called: writeToLog($someStr) that write to some customlogfile of your own. Add timestamps to it. Append to the existing file.

    Now you can check all the returnvalues of your functioncalls.

    Simply empty your logfile, and start with your testing. On each step check the logfile.

    It is not much work to set up, and you can see all your problems.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Could someone please help explain why I can't get this to work? I properly
I was wondering if someone could help me to get this method converted to
I was wondering if someone could help me get pointers to solve this problem.
could someone help me on this problem, i want to access facebook API through
Could someone help me on this, I have created simple web services using axis2
Could someone help me understand the primitive accessors with this example : i don't
Could someone help me figure out how to get the hslide value in Flash
Could someone help me translate this code to PHP 4? try { $picture =
Could someone please help me out with this. I need to find the gml:pos
Could someone help me understand why I'm getting this error: javax.xml.bind.UnmarshalException: unexpected element (uri:,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.