By hans753 on
Hi,
I' m trying Drupal the first time, just started with Drupal 5.x beta1 (also tried 5 CVS).
I' ve searched the forum and found a lot's of login problems, but they should be fixed in version 5?
I'm using Firefox 2.0, IE6 and Konqueror, but all have the same problem
I can login with my generated password.
The following mysql commands looks fine, too;
use drupal;
show tables;
select * from users;
=> I can login, see the menu and use a menu link, now I' ve to login again, using the next menu link => login again...
In the access log I can see, that I always get connected as user Anonymous
What to do?
Comments
Sounds like cookies are not
Sounds like cookies are not being stored in your browser to maintain the session across pages? What web server are you running Drupal5 on?
One recent suggestion about login issues was the domain name being used www.drupal.org vs drupal.org - bit of a weird one that.
--
Ixis (UK): Drupal support, Drupal hosting.
I' am using Apache2-prefork
I' am using Apache2-prefork from openSuse 10.2 beta1
Yes, I know a lot of beta programs.
Cookies are accpeted from all brwosers, I' ve tested. I can see the cookies, which are stored.
I' ll play around with the domain name.
Where can I see debuging informations?
php 5.2.0
Which php version do you use?
Perhaps you got hit by this: http://drupal.org/node/92802
session_write_close(); at the end of index.php fixes the problem
Hi,
thanks for the link. As mentioned in your link the problem gets fixed when you insert a session_write_close(); at the end of index.php (tested with drupal 5 cvs).
Yes, I'm using php 5.2
I' ll begin testing of drupal
session_write_close(); at the end of index.php fixes the problem
Thanks a lot fago... It worked for me...