Skip to content
Advertisement

How to disable ONLY_FULL_GROUP_BY in codeigniter?

I have worked may time with Group BY in mysql but recently i have received a problem of Group By. I searched from many sites and I got the problem that its due to upgrading the mysql version in which it is enabled and in old versions it was disabled.

I won’t remove it using the query but from the code. I also don’t want to remove from my.cnf because when the site will live it will occure again.

so please suggest me a solution that works in codeigniter atleast. I will be thankful to you 🙂

I have tried below query :

JavaScript

it worked but when the server restarts the problem occurs again.

Advertisement

Answer

Codeigniter has stricton option in application/config/database.php:

JavaScript

Or you can disable sql_mode params like this:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement