
Joomla 1.5 non mostra più i menù dopo l’aggiornamento di php 5.3
Come ripristinare i menù se aggiornate la versione di php > 5.3 sul vostro server / hosting.
SOLUZIONE 1
—————————
Cambiate lo stile del menù nel suo modulo, ovvero:
MODULO (mod_mainmenù) —> Stile: “Legacy – lista flat”
SOLUZIONE 2
—————————
Se ancora non funziona, modificate questi files:
in
/libraries/joomla/html/html.php
CAMBIARE:
return call_user_func_array( array( $className, $func ), $args );
CON:
return call_user_func_array( array( $className, $func ), &$args );
in
modules/mod_mainmenu/helper.php
CAMBIARE:
function buildXML(&$params)
CON:
function buildXML($params)
