Joomla menu not showing [closed]

2019-04-16 16:44发布

问题:

I know nothing about Joomla, but I just need to get this done. Suddenly my Joomla site menu is not showing up. I cant see anything under the Menu Manager->Main Menu->Menu Items. But there are rows in the jos_menu table. Why isnt it showing up?

回答1:

Looks like the php was upgraded to 5.3 and all sorts of problems are cropping up. I resolved it by changing the following:

in yourjoomladirectory/libraries/joomla/html/html.php

return call_user_func_array( array( $className, $func ), $args );

to

return call_user_func_array( array( $className, $func ), &$args );

and in yourjoomladirectory/modules/mod_mainmenu/helper.php

function buildXML(&$params)

to

function buildXML($params)

Hope this helps someone.



标签: php joomla