@psycle - thanks, this is just what I've seen so far. Thing is the EE script is all part of the setup wizard and related files. Maybe we can edit that ourselves to include this "SET sql_mode" line first?
I didn't find an ExpressionEngine category on EE but wonder if anybody here has experience with this issue directly.
Seems like it would pop up on just about any shared hosting environment with mySQL 5, unless global 'strict' mode is not commonly used.
Main Topics
Browse All Topics





by: psyclePosted on 2009-06-26 at 14:27:48ID: 24724856
sql mode is global - server-side.
You can change it per session like so:
SET sql_mode = '';
The downside to that is that you must do it every time you make a new connection.