473,394 Members | 1,944 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

How to share session data across multiple domains on same server?

I heard the best method to share session across multiple domains on same server is to use custom php session handler. (ie, domain name different like abc.com, xyz.com but single application.)

But after i tried it, even custom php session handler that using SAME DATABASE ON 1 SERVER can't share session, when i tried to read cookie value from different domain.

Here's my custom session handler, Please kindly check or fix if something missing here. because i've tried it for a week now. can't get it to work



SESSION_INCLUDE.PHP
Expand|Select|Wrap|Line Numbers
  1. <?php 
  2.  
  3. // config 
  4. $m_host = "localhost"; //MySQL Host 
  5. $m_user = "db_user"; //MySQL User 
  6. $m_pass = "db_pass"; //MySQL Pass 
  7. $m_db   = "db_name"; //MySQL Database
  8. $table  = "sess_data";
  9.  
  10. $session_expire = 600; // Session expire time, in seconds (minutes * 60 = seconds) 
  11.  
  12. $gc_probability = 100; // Probability that the garbage collection function will be called. 50% chance by default 
  13.  
  14. ini_set("session.gc_probability",$gc_probability); 
  15.  
  16. /* Open function; Opens/starts session 
  17.  
  18.    Opens a connection to the database and stays open until specifically closed 
  19.    This function is called first and with each page load */ 
  20.  
  21. function open ($s,$n) // do not modify function parameters 
  22.   global $session_connection, $m_host, $m_user, $m_pass, $m_db; 
  23.   $session_connection = mysql_pconnect($m_host,$m_user,$m_pass); 
  24.   mysql_select_db($m_db,$session_connection); 
  25.   return true; 
  26.  
  27. /* Read function; downloads data from repository to current session 
  28.  
  29.    Queries the mysql database, unencrypts data, and returns it. 
  30.    This function is called after 'open' with each page load. */ 
  31. function read ($id) // do not modify function parameters 
  32.   global $session_connection,$session_read,$table; 
  33.   $query = "SELECT data FROM `$table` WHERE id=\"{$id}\""; 
  34.   $res = mysql_query($query,$session_connection); 
  35.   if(mysql_num_rows($res) != 1) return ""; // must return string, not 'false' 
  36.   else 
  37.   { 
  38.     $session_read = mysql_fetch_assoc($res); 
  39.     $session_read["data"] = base64_decode($session_read["data"]); 
  40.     return $session_read["data"]; 
  41.   } 
  42. function write ($id,$data) // do not modify function parameters 
  43.   if(!$data) { return false; } 
  44.   global $session_connection, $session_read, $session_expire, $table; 
  45.   $expire = time() + $session_expire; 
  46.   $data = mysql_real_escape_string(base64_encode($data)); 
  47.   if($session_read) $query = "UPDATE `$table` SET data=\"{$data}\", expire=\"{$expire}\" WHERE id=\"{$id}\""; 
  48.   else $query = "INSERT INTO sess_data SET id=\"{$id}\", data=\"{$data}\", expire=\"{$expire}\""; 
  49.   mysql_query($query,$session_connection); 
  50.   return true; 
  51. function close () 
  52.   global $session_connection; 
  53.   mysql_close($session_connection); 
  54.   return true; 
  55. function destroy ($id) // do not modify function parameters 
  56.   global $session_connection,$table; 
  57.   $query = "DELETE FROM `$table` WHERE id=\"{$id}\""; 
  58.   mysql_query($query,$session_connection); 
  59.   return true; 
  60. }
  61. function gc ($expire) 
  62.   global $session_connection,$table; 
  63.   $query = "DELETE FROM `$table` WHERE expire < ".time(); 
  64.   mysql_query($query,$session_connection); 
  65. }
  66. // Set custom handlers 
  67. session_set_save_handler ("open", "close", "read", "write", "destroy", "gc"); 
  68.  
  69. // Start session 
  70. session_start(); 
  71. ?>


// MySQL Database Table
Expand|Select|Wrap|Line Numbers
  1. create table sess_data (
  2. id2 int not null auto_increment,
  3. id text not null,
  4. data text,
  5. expire int not null,
  6. primary key(id2)
  7. );
Jan 21 '11 #1
2 4308
dlite922
1,584 Expert 1GB
What you've done is just change the location of where PHP stores information. I don't see any code that tells it to share this across multiple domains.

I'd go back to where you 'heard' about this and ask them what else you need to do different.

If I had to guess, I'd guess that your read would now need to look up the record with something other-than $id. It has to be a custom id that YOU makeup for your clients. That PHP id you're currently using is issued by PHP and PHP does not share that ID between domains.

Cheers,


Dan
Jan 21 '11 #2
"I don't see any code that tells it to share this across multiple domains."

because it's still on testing phase i just use firefox addon to manually change the ssid cookie value myself.. so the value of the session is same with the old domain.. no problem with that. & on real life i can just pass that old session id from old domain to new domain using $_GET
Jan 22 '11 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

7
by: George Hester | last post by:
In one Application (2) the client is redirected to a Logon ASP in a different Application (1). A Session Variable is made in Application 2 which needs to be recognized in Application 1. Can I do...
4
by: Le | last post by:
Hello I was wondering if there was a way to keep a user's session info across multple domains For example, company A owns website www.a.com and www.b.com. A user logs into www.a.co and later...
0
by: Darren Oakey | last post by:
G'day - is there anyway of sharing the Session data across two different ASP.Net projects? Basically, I'm jumping from a page in one to a page in another, and I'd like to have the data flit...
1
by: eSapient | last post by:
My objective was to implement a 'Wait' page by using a combination of an asynchronous call and a Session variable to signal the end of the wait. My first page has:...
2
by: Jim Tilson | last post by:
I'm having a problem with Session ID being duplicated across multiple IE windows. I edited the web.config for my ASP.net web application to display trace information on the page. I open an IE...
1
by: Nayana Thara | last post by:
We have a web site where we have asp and asp.net. how can we share session data b/w the two environments.
3
by: laredotornado | last post by:
Hi, I'm using PHP 4.4.4. I have two domains -- www.mydomain1.com and www.mydomain2.com. Both point to the same IP address. I have two pages on that IP -- first.php <?php session_start();...
18
by: BDE Consulting | last post by:
I am going crazy. This has been a problem now for over a year and I have yet to figure out what is causing it. I have a single server that is running multiple domains. For this example I will...
5
rajiv07
by: rajiv07 | last post by:
Hi to all I am wondering how do i share the session across multiple Domains.Suppose i have set session in example1.com and i want to access the session in example2.com which is set in...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.