On MYSQL 5.7 there could be an error on system installation with sql_mode=only_full_group_by
In order to fix the error permanently, you would need to edit my.cnf file using root access to the server with SSH.
Normally this file is located here in Ubuntu, Debian - /etc/mysql/my.cnf
Make sure that in the file there is following line [mysqld]
After that line add
This would remove sql_mode only_full_group_by that prevents UseResponse to work correctly.
Then in console restart mysql if you are in Ubuntu (without sudo if on Debian)
Replies have been locked on this page!
In order to fix the error permanently, you would need to edit my.cnf file using root access to the server with SSH.
Normally this file is located here in Ubuntu, Debian - /etc/mysql/my.cnf
Make sure that in the file there is following line [mysqld]
After that line add
This would remove sql_mode only_full_group_by that prevents UseResponse to work correctly.
Then in console restart mysql if you are in Ubuntu (without sudo if on Debian)
In order to fix the error permanently, you would need to edit my.cnf file using root access to the server with SSH.
Normally this file is located here in Ubuntu, Debian - /etc/mysql/my.cnf
Make sure that in the file there is following line [mysqld]
After that line add
This would remove sql_mode only_full_group_by that prevents UseResponse to work correctly.
Then in console restart mysql if you are in Ubuntu (without sudo if on Debian)
Replies have been locked on this page!