I'm having the same problem. Login screen keeps coming back. This occurred after I transferred from Berkely-DB to MySQL in MT 3.2. Everything is fine, except it keeps asking me to login. I checked all the config-issues, but that is OK. There is a link in the previous post that seems to lead to the answer, but the link is dead/goes to the main forum page. So I know there is an answer tot this problem, but what is it?!?
(very frustrating)
But I found it: it seems that the script forgets to create a
mt_session table in the MySQL database.
I used the code below in Myphpadmin to create the table
CODE
create table mt_session (
session_id varchar(80) not null primary key,
session_data mediumblob,
session_email varchar(255),
session_name varchar(255),
session_start int not null,
session_kind varchar(2),
index (session_start)
);
thanx everyone
Ab