that's the path-line in my config.php: $config['site']['path'] = '';
then, being no expert, but playing around I found that: 1. with this line completely commented out in the config.php // session_set_cookie_params(0, '/'. $config['site']['path'] .'/'); I do have no session token problems. 2. with its original version commented in: session_set_cookie_params(0, '/'. $config['site']['path'] .'/'); I have the session token problem. 3. with the trailing "/" taken away, and the line commented in, the problem was gone: session_set_cookie_params(0, '/'. $config['site']['path']); (always cleaning out all cookies and stoppping and restarting apache in between) does this make sense? 2009/7/7 <[email protected]>: > Hi there, > > > > i've installed laconica (version 0.74) on my webserver yesterday. The > installation was no problem and i've created some accounts. But today I > could not login or register a user. It was always the same error message: > "There was a problem with your session token. Try again, please." > I've tried out on three different PCs and i've deleted my cookies without > improvement. What's happened? Please, can you help me? > > > > Thanks, > > Michael > > -- > > _______________________________________________ > Laconica-dev mailing list > [email protected] > http://mail.laconi.ca/mailman/listinfo/laconica-dev > > _______________________________________________ Laconica-dev mailing list [email protected] http://mail.laconi.ca/mailman/listinfo/laconica-dev
