In my previous entry I wrote how to fix Wordpress so it can
avoid a possible too restrictive default SQL_MODE. I guess I should have
realized that the following two lines from my my.cnf
option file would probably not be liked by
Wordpress either:
default-storage-engine=InnoDB #Set the default storage engine (table type) for tables.
init-connect="set autocommit=0" #set autocommit off on connect
So, I went back and hacked wp-includes/wp-db.php
again. Now the fix read:
[Read more]
// …