MyBB Community Forums

Full Version: Install MySQL Error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I get almost installed when I get SQL Error: 1055 - 'mybb.u.uid' isn't in GROUP BY
What should I try?

[Image: 8.png]
Can you provide the version of MySQL on the server?

See if it helps to change this line in the inc/class_datacache.php file: https://github.com/mybb/mybb/blob/mybb_1...e.php#L675
to:
$group_by = 'u.uid, u.username';
BTW. during installation, did you choose the table prefix "mybb."?
It's not recommended to use dots in database objects - so better choose an underscore instead: "mybb_".

[ETS]
(2021-10-25, 11:40 AM)[ExiTuS] Wrote: [ -> ]BTW. during installation, did you choose the table prefix "mybb."?
It's not recommended to use dots in database objects - so better choose an underscore instead: "mybb_".

[ETS]

I think no prefix has been choosed. mybb.u.user means database mybb, table (or alias) u, field user. The query is done on users, I think that if the prefix was mybb., the query showed will be on mybb.users