If you are using postgresql, the acces to the desktop player will produce a SQL
error ("field blabla must appear in the GROUP BY clause or be ...").
You can fix it with MAX aggregate fonction. So yo have to modify the
lib/model/doctrine/SongGenresTable.class.php and replace at line 19 :
->select( 'sg.genre_id, g.name' )
by
->select( 'MAX(sg.genre_id), MAX(g.name)' )
Original issue reported on code.google.com by marminth...@gmail.com on 5 Mar 2012 at 6:24
Original issue reported on code.google.com by
marminth...@gmail.com
on 5 Mar 2012 at 6:24