Mysql mode is set to strict, how can I change this?

This issue was caused by us using the latest wordpress build. When the version changed, the database behaviour was more strict.
We solved this issue by changing in our Circle.yml file.
From

    - tar xfz latest.tar.gz```
To
```- wget https://wordpress.org/wordpress-4.3.1.tar.gz
    - tar xfz wordpress-4.3.1.tar.gz```
1 Like