Recent Topics

1 Dec 18, 2005 05:36    

Well, I updated my blog to Phoenix, and that went smoothly enough. And then I updated MySQL to version 5.0.something, and everything seemed to work well, until I tried to make another post.

Now I can't log in.

I can create a new user and then I can't log in with that one either.

Any ideas?

2 Dec 18, 2005 22:08

So you can access the backoffice? (because you've said that you can create a user)

Do you get any MySQL error perhaps?

There are issues with MySQL 5 strict/traditional mode. If you have access to your DB try doing the following query:

select @@sql_mode;


What does it say?

If it says "TRADITIONAL" or soemthing else non-empty, you might be able to fix it by hacking /evocore/_db.class.php and putting

$this->query( 'SET sql_mode = ""' );

at the end of "function DB" (the constructor).


Form is loading...