Message Text |
I never did get this fully working, but now I have a better idea of how phpBB2 does its tracking, maybe I can pass this by everyone.
Let's examine phpBB2. I have
Cookie Domain: british-expats.com
Cookie Name: britnetcookie
Cookie Path: /
nWhen logged in two cookies are created:
britnetcookie_sid
Contest: = my session id
Path: /
The 2nd is
britnetcookie_data
Content: a%3A2%3A%7Bs%3A11%3A%22autologinid%22%3Bs%3A0%3A%22%22%3Bs%3A6%3A%22userid%22%3Bs%3A1%3A%222%22%3B%7D
(this decodes to be:
a:2:{s:11:"autologinid";s:0:"";s:6:"userid";s:1:"2";}
Domain: .british-expats.com
Can someone tell me how I'd translate that into an integration file? It doesn't use passwords at all, just a session id.
The query to get the sid is
SELECT session_user_id FROM phpbb_sessions WHERE session_id={SESSIONID}
TIA,
Nigel |