Hello,
there is still missing a "
SET NAMES UTF8" in class.database.php.
This is missing since the very first version of website baker, and for compatibility reasons (and some other issues) nobody fixed that.
open the file /framework/class.database.php,
locate
// Connect to the database
function connect() {
and add
mysql_query("SET NAMES utf8"); into the last else-branch
} else {
if(!mysql_select_db(DB_NAME)) {
$this->connected = false;
$this->error = mysql_error();
} else {
$this->connected = true;
mysql_query("SET NAMES utf8"); // add this line
}
Edit: purge the database before.
And you have to make sure that the database's default-charset is utf8 as well.
thorn.