Do you have sessions enabled in PHP? what version of PHP are you running? Do you have session cookies enabled? Is register_globals on or off. What OS are you using?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I was having this problem on windows with PHP 4.2.2 untill I noticed this in the php.ini
; Argument passed to save_handler. In the case of files, this is the path
; where data files are stored. Note: Windows users have to change this
; variable in order to use PHP's session functions.
session.save_path = c:/temp <<--- was originally \tmp
After setting this to a valid path it works.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
i must sign on for all page ( the page appear without colors) and the admin page validation has no effect (i must sign on after validation)
Do you have sessions enabled in PHP? what version of PHP are you running? Do you have session cookies enabled? Is register_globals on or off. What OS are you using?
i use session variables for other projects, i don't understand why it does't work.
i use php 4.06 whith pear from 4.1.2
I have just installed phpbt and have the same problem - just discovered it must be the browser cuz if I try a different client machine it works fine.
Sorry, I was too quick.
I do have the same problem.
I am experiencing this problem as well, running win2k, using php 4.1.2, with register_globals on, session cookies enabled.
Solved (at least on my Linux box)!
Edit /etc/php.ini and change register_globals to be off. (In a previous chain it suggests this should be 'on' which is were I went wrong).
Did anyone get it to work after setting register_globals to on or off? I get the same behaviour either way...
Try upgrading to the latest version of phpBT
The version I installed was the one from phpbt-0.8.2_smarty.tar.gz so that shoul be the latest I guess.
Okedokey, seems like an install of PHP 4.2.1 did the trick. go figure... :)
I was having this problem on windows with PHP 4.2.2 untill I noticed this in the php.ini
; Argument passed to save_handler. In the case of files, this is the path
; where data files are stored. Note: Windows users have to change this
; variable in order to use PHP's session functions.
session.save_path = c:/temp <<--- was originally \tmp
After setting this to a valid path it works.