Session not saving when moving from ssl to non-ssl - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T20:06:27Zhttp://stackoverflow.com/feeds/question/308659http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/308659/session-not-saving-when-moving-from-ssl-to-non-ssl2Session not saving when moving from ssl to non-sslJustin2008-11-21T12:53:19Z2009-11-09T12:56:50Z
<p>I have a login screen that I force to be ssl, so like this:
<a href="https://www.foobar.com/login" rel="nofollow">https://www.foobar.com/login</a>
then after they login, they get moved to the homepage:
<a href="https://www.foobar.com/dashbaord" rel="nofollow">https://www.foobar.com/dashbaord</a></p>
<p>However, I want to move people off of SSL once logged in (to save CPU), so just after checking that they are in fact logged in on <a href="https://www.foobar.com/dashbaord" rel="nofollow">https://www.foobar.com/dashbaord</a> I move them to
<a href="http://www.foobar.com/dashbaord" rel="nofollow">http://www.foobar.com/dashbaord</a></p>
<p>Well this always seems to wipe out the session variables, because when the page runs again, it confirms they are logged in (as all pages do) and session appears not to exist, so it moves them to the login screen.</p>
<p>Oddness/findings:</p>
<ol>
<li>List item</li>
<li>The second login always works, and happily gets me to <a href="http://www.foobar.com/dashbaord" rel="nofollow">http://www.foobar.com/dashbaord</a></li>
<li>It successfully creates a cookie the first login</li>
<li>If I login twice, then logout, and login again, I don't need two logins (I seem to have traced this to the fact that the cookie exists). If I delete the cookie, I'm back to two logins.</li>
<li>After the second login, I can move from non-ssl from ssl and the session persists.</li>
<li>On the first login, the move to the non-ssl site wipes out the session entirely, manually moving back to the ssl site still forces me to login again.</li>
<li>The second login using the exact same mechanism as the first, over ssl</li>
</ol>
<p>What I tried:</p>
<ol>
<li>Playing with Cake's settings for security.level and session.checkagent - nothing</li>
<li>Having cake store the sessions in db (as opposed to file system) - nothing</li>
<li>Testing in FF, IE, Chrome on an XP machine.</li>
</ol>
<p>So I feel like this is something related to the cookie being created but not being read. </p>
<p>Environment:
1. Debian
2. Apache 2
3. Mysql 4
4. PHP 5
5. CakePHP
6. Sessions are being saved PHP default, as files</p>
http://stackoverflow.com/questions/308659/session-not-saving-when-moving-from-ssl-to-non-ssl/308671#3086713Answer by Piskvor for Session not saving when moving from ssl to non-sslPiskvor2008-11-21T12:58:20Z2008-11-21T12:58:20Z<p>First of all, do I understand correctly that the second login is using the exact same mechanism as the first (via HTTPS)?</p>
<p>Does the first hit on a unsecured page create a new session, in addition to the one created during login?</p>
<p>Check if, on first login, the cookie is not set with the <code>Secure</code> flag (that means that the cookie should only be sent over a secured (HTTPS) connection).</p>
http://stackoverflow.com/questions/308659/session-not-saving-when-moving-from-ssl-to-non-ssl/308891#3088910Answer by neilcrookes for Session not saving when moving from ssl to non-sslneilcrookes2008-11-21T14:10:55Z2008-11-21T14:10:55Z<p>Has your homepage got any flash on it that makes a subsequent request to your server? Or any Ajax loading of content?</p>
<p>Have you checked headers being sent from the server? In IE you can use Fiddler or in Firefox use the Live Headers addon. Check for any new cookies being set or the CAKEPHP cookie having a different value.</p>
http://stackoverflow.com/questions/308659/session-not-saving-when-moving-from-ssl-to-non-ssl/350223#3502231Answer by Justin for Session not saving when moving from ssl to non-sslJustin2008-12-08T17:21:21Z2008-12-15T18:47:01Z<p>I figured this out. Cake was switching the session.cookie_secure ini value on-the-fly while under SSL connections automatically, So the cookie being created was a secure cookie, which the second page wouldn't recognize.</p>
<p>Solution, comment out /cake/lib/session.php line 420 ish:</p>
<blockquote>
<p>ini_set('session.cookie_secure', 1);</p>
</blockquote>
<p>(Just search for that to find it, as I'm sure the line # will change as releases come out.)</p>