Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 03-10-2005, 06:10 AM   #1 (permalink)
d*d
Addict
 
d*d's Avatar
 
php session

just a quick one,
If i start a session using php files running on my server, then move the user to my secure server does the session end or carry on through?
d*d is offline  
Old 03-10-2005, 09:11 AM   #2 (permalink)
Insane
 
Location: Vermont
I believe as long as you carry over the session number, ti should stay as the same session.
But it's been a while since i've done php.
Man I should practice.
RAGEAngel9 is offline  
Old 03-11-2005, 11:31 PM   #3 (permalink)
Insane
 
Location: Austin, TX
no, if you redirect to a different server, the session will be lost. Session data is cached on the web server's hard drive, so unless you've got a shared directory set up for the session data, you can't guarantee the session will move.

One caveat to this is if you use cookies. You can tell PHP to force the user's browser to keep a cookie containing the session data. This will also be mirrored on the web server's hard drive "just in case". If you are careful, you can probably convince the browser to save the session data during the redirect and then retrieve it again on the new server.
skaven is offline  
Old 03-11-2005, 11:46 PM   #4 (permalink)
Junkie
 
Location: Florida
I'd suggest storing the session data in an SQL table. Then you can pass the ID on to the other server and it can continue to use the data. There are several PHP classes available to do this with MySQL, for instance: http://www.code.dearneighbor.com/db_esession.html
irseg is offline  
 

Tags
php, session


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 04:05 AM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62