Jump to content

How To Share A Logged In Session Between To Web App?


silvercover

Recommended Posts

I have two seperate web app both written in php. one is a simple online store that needs users to be logged in and place their orders and the other one is a ticketing system that needs users to be logged in too.

 

So how can I share a logged in session between these two apps to prevent users from multiple sign in process? what is the best way to do this?

 

Thanks.

Edited by silvercover
Link to comment
Share on other sites

Are they on the same server? If they are, and they are under different subdomains or domains, you'll have to set the session cookie domain to be the same in both projects.

 

If they are on different servers with different IP addresses, you'll probably have to create some sort of web service to interface the two projects.

Link to comment
Share on other sites

It's difficult to allow two different domains to share a login.

 

Agreed.

 

I did something similar at work; we merged several other programs (provided by other companies) into one and needed SSO capabilities. We did it using $_GET vars and a whole lot of validating. Seems to work ok.

Edited by TOA
Link to comment
Share on other sites

Are they on the same server? If they are, and they are under different subdomains or domains, you'll have to set the session cookie domain to be the same in both projects.

If you set the session cookie domain to be different than the domain of the site, it won't work.

 

We did it using $_GET vars and a whole lot of validating. Seems to work ok.

Dangerous for a public web app, GET vars can be intercepted, bookmarked, and accidentally emailed/IMed.
Link to comment
Share on other sites

Dangerous for a public web app, GET vars can be intercepted, bookmarked, and accidentally emailed/IMed.

 

Only way the other company would do it, so out of my control :shrug:

 

I tried to convinve them to implement Oauth but no-go. Lazy dev's I think. We're actually done with them Jan 1 so we won't have that issue anymore. It worked for a year or so though..

Edited by TOA
Link to comment
Share on other sites

If the web apps are on different URLs, John's solution won't work.

 

You can use some sort of oauth or saml code to allow your sites to share login information. It's difficult to allow two different domains to share a login.

 

yes but if he is using in a same domain it will work in a 2 different domains it will be hard though.

 

what about create a 2 different session name then store the value in those 2 session so if the user access the other site it will automatically login,

Edited by JohnTipperton
Link to comment
Share on other sites

yes but if he is using in a same domain it will work in a 2 different domains it will be hard though.

If it's two pages on the same website, then yes it will work. Two separate sites (domains) will never work

 

 

what about create a 2 different session name then store the value in those 2 session so if the user access the other site it will automatically login,
What?
Link to comment
Share on other sites

If it's two pages on the same website, then yes it will work. Two separate sites (domains) will never work

 

 

What?

 

for example

 

www.mysite1.com the session name is $_SESSION['site1']

www.mysite2.com the session name is $_SESSION['site2']

 

if you login the mysite1 save the $_SESSION['site1'] and $_SESSION['site2'] same as the mysite2.

 

i mean when you login the site you are saving the 2 different session variable.

Edited by JohnTipperton
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.