Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way that I can initiate a persistent session in PHP without the placement of a session cookie? Are there other ways of maintaining a session across pages, such as an IP address-based solution?

My reason for asking is, is that although most users have cookies on, I want to see if there's a way for a login system to work for those with it disabled (even though I think disabling cookies is just unnecessary paranoia, personally).

share|improve this question

5 Answers

up vote 16 down vote accepted

I don't think it's too much to ask your users to enable cookies. I find it silly when people turn them off entirely.

Otherwise, you can set your session.use_only_cookies to "0" to force the appendage of a session ID to URLs within your php. This approach, however, has several draw backs. Mainly that of keeping the state within the URL, as opposed to the Cookie header. If a user were to copy and paste the URL of the page they were on, and someone else were to click on it, they would both be using the same session.

<?php
     ini_set("session.use_cookies",0);
     ini_set("session.use_only_cookies",0);
     ini_set("session.use_trans_sid",1); # Forgot this one!
     session_start();
?>
share|improve this answer
I believe the OP wanted session.use_cookies set to 1 – Your Common Sense Sep 18 '10 at 8:27
3  
And it should be noted that these settings do not alter JS hyperlinks and Location headers in PHP code. – Your Common Sense Sep 18 '10 at 8:33
4  
"(Even the spiders can have cookies now)" Aww. :) I say let them, even if it gives them love handles. – Henrik Erlandsson Dec 8 '10 at 20:26
1  
Facebook apps run in an IFrame which, on IE, are not allowed to store cookies (default security settings) – w43L Jun 28 '11 at 8:03
2  
@w43L marco.org/2007/04/27/… – KKobayashi Mar 3 at 2:14
show 5 more comments

You can set the ini-Value of session.use_trans_sid to true in order to activate appending the session id to every URL. Have a look at this.

For security purposes you should then limit the session to the IP that created the session. This is not perfectly secure though, as someone with the same IP (behind a proxy e.g.) could reuse that very same session.

share|improve this answer

You can work with session ID's in URLs, and disabling cookies with:

ini_set('session.use_cookies', 0);
ini_set('session.use_only_cookies', 0);
ini_set('session.use_trans_sid', 1);
session_start();
// IP check
if($_SESSION['ip_check'] != $_SERVER['REMOTE_ADDR']){
   session_regenerate_id();
   session_destroy();
   session_start();
}
$_SESSION['ip_check'] = $_SERVER['REMOTE_ADDR'];
// session stuff

Note: it's highly discougared to use session ID's in URL's. IP addresses can change when travelling around with a wireless card and proxy servers have the same IP address. It's easily broken when clicking 'an old URL' (with the old session ID).

You may also be interested in creating your own session handling function (in conjuction with a database). You would ignore the session ID, and bind it to the IP address. (see examples in http://nl2.php.net/manual/en/function.session-set-save-handler.php)

References:

share|improve this answer

Technically you can attach the session ID to every URL, but that introduces a really high security problem. Threre is an option in the php.ini for that.

Using a IP address based solution is really risky aswell, because most of the people using the internet get a new IP every 24 hours. If someone happens to get the ip that the admin had the day before, he will be admin for that day.

share|improve this answer
Dude... I know this was 2010, but you should know that what you said here, about including the variable in the cookie being somehow more secure, is false, as it only prevents a copy/paste; for, no matter what you do, be it storing a session variable in a cookie, or having it in the URL, you have the same security risks. Examples: EG1 On the client a user/malware installs a plugin that allows him or her or it to grab the session key, before the GET/POST is sent. EG2 A Man In The Middle sets up a proxie, analyzes the packet and grabs the data, whether or not it was sent as a GET/POST. – Anthony Pace yesterday
The only thing you can do is prevent a MITM from grabbing the session key if you use SSL, and only with a cert from a valid CA (you also have to beware rogue CA's and OpenSSL). (A little OT: No OpenSSL unfortunately as anyone can create a proxie that implements it, and thus, since it does not use a known key/authenticated CA system, anyone can easily pretend to be your destination). – Anthony Pace yesterday

Here's a nice article that gives you some alternative ideas. In the end it's what Darin Dimitrov suggested put into practice.

share|improve this answer
2  
man this article was "nice" in the last century but it's 2010 today, if you didn't notice – Your Common Sense Sep 18 '10 at 8:30
In response to this see stackoverflow.com/questions/3740845/php-session-without-cookies/… (in this same question), that is disabling cookies is as much "old-fashioned" as "reading that article" – Federico Culloca Sep 18 '10 at 8:53
@Col. Shrapnel: Well, the article does say "cool new features of PHP 4" :D – Piskvor Sep 24 '10 at 11:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.