I just installed moodle on my server and got into a big mysql error complaining about binlog and other stuffs…
Cannot execute statement: impossible to write to binary log since
BINLOG_FORMAT = STATEMENT and at least one table uses a storage engine
limited to row-based logging. InnoDB is limited to row-logging when
transaction isolation level is READ COMMITTED or READ UNCOMMITTED
After a bit of googling and understand what this was about I figured I should add the following in my my.cnf file and then restart mysql.
binlog_format=row
I did that and it’s working very well.