(you can't expect to let all your board visitors change their IE settings.)
Let me guess, the cookie problem comes up with IE6.
That was exactly my problem. (I need cookies because I use Frames)
IE6 doesn't accept any "3rd party" cookie provider.
It's typical for MS to plug in any new standards (security) and don't think about the user who gets problems with this. This new secuity standard is P3P.
(http://www.w3.org/P3P/)
This is a small tip I can give you. It works fine for me. It makes it possible to use "3rd party" cookies with IE
1. go into the directory "includes".
2. search for the file "sessions.php" and edit it
3. search for the text
setcookie($cookiename . '_data',
(it schould be 3 times within this file.)
4. now, set this text in front of No. 3:
header('P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"');
5. you schould have done No. 4 exactly 3 times.
==================
This is a small sample:
header('P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"');
setcookie($cookiename . '_data', serialize($sessiondata), $current_time + 31536000, $cookiepath, $cookiedomain, $cookiesecure);
setcookie($cookiename . '_sid', $session_id, 0, $cookiepath, $cookiedomain, $cookiesecure);
I hope I've not written this too confusing. (I'm a german guy)
PS: now I'm using phpBB 2.0.3 (BUT it schould also work for 2.0.4)
I already got some positiv feedback (also for 2.0.4) How does it work for you?
promil
(my 1st post
