KMP requires the STRICT_TRANS_TABLES option to be disabled in MySQL settings in order to be successfully installed:
This option must be removed from the sql-mode setting. You can find it in the my.ini configuration file.
Here are several examples for where you can find the my.ini:
Separate installation of MySQL:
WAMP:
XAMMP:
Sql-mode setting may have this look:
In this case remove the STRICT_TRANS_TABLES option, like this:
If STRICT_TRANS_TABLES is the only option in the sql-mode setting:
Then you can simply remove it and make sql-mode empty:
After that save the file, and restart the MySQL server to apply the change.