i have mysql installed and table created. i want to remove strict_trans_tables from sql mode, how to do that? I tried the fonllowing: 1) go to phpmyadmin variable a
strict_trans_tables
3) located file /etc/mysql/my.cnf and tried to change setting there, but didn't find any sql mode info
If you do not have any sql mode set in the file, just add new line:
sql_mode="NO_BACKSLASH_ESCAPES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
Cheers