Something I came across recently when installing WordPress gave me headaches. Everything seemed to work properly except when selecting posts by category no results were returned.
I debugged the problem by looking at the SQL-queries performed by WordPress. One query returned an error :
Because the MySQL server was configured to honor ONLY_FULL_GROUP_BY it gave the error “‘test.wpposts.post_author’ isn’t in GROUP BY”.
I could not disable ONLY_FULL_GROUP_BY serverwide so I had to insert it in … Read more.