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.