Bug #18821
closedEpic #68397: Make TYPO3 work with MySQL strict mode
Installer will not create any be_users if unsupported sql_mode is used
100%
Description
Insert statement fails due to 'NOT NULL' DEFUALT NULL column descriptions.
Field 'TSconfig' doesn't have a default value
i presume its the same for column uc. turning on SQL debug i got the SQL statement and ran in in mysql command line as follows:
mysql> INSERT INTO be_users
-> (
-> username,
-> password,
-> admin,
-> uc,
-> fileoper_perms,
-> tstamp,
-> crdate
-> ) VALUES (
-> 'admin',
-> '5f4dcc3b5aa765d61d8327deb882cf99',
-> '1',
-> '',
-> '7',
-> '1211301857',
-> '1211301857'
-> );
ERROR 1364 (HY000): Field 'TSconfig' doesn't have a default value
windows vista
mysql: 5.1.24-rc-community
php 5.2.4
Apache/2.2.4
(issue imported from #M8474)