Scusate, io sto cercando di risolvere lo stesso problema che rilevo sul mio sito realizzato con Joomla 3.4.1. Mi sono accorto che il codice da sostituire nel mio file modules/mod_articles_archive/helper.php è diverso da quello segnalato nella soluzione.
Li riporto entrambi
Codice da sostituire indicato nella soluzione :
$query->select($query->month($db->quoteName('created')) . ' AS created_month')
->select('created, id, title')
->select($query->year($db->quoteName('created')) . ' AS created_year')
->from('#__content')
->where('state = 2 AND checked_out = 0')
->group('created_year DESC, created_month DESC');
Codice da sostituire presente nel mio file :
$query->select($query->month($db->quoteName('created')) . ' AS created_month')
->select('created, id, title')
->select($query->year($db->quoteName('created')) . ' AS created_year')
->from('#__content')
->where('state = 2 AND checked_out = 0')
->group($query->year($db->quoteName('created')) . ', ' . $query->month($db->quoteName('created')) . ', created, id, title');