Joomla 菜单未显示

2022-01-06 00:00:00 php joomla

我对 Joomla 一无所知,但我只需要完成这件事.突然我的 Joomla 站点菜单没有显示.我在菜单管理器-> 主菜单-> 菜单项下看不到任何东西.但是 jos_menu 表中有行.为什么不显示?

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?

推荐答案

貌似php升级到5.3了,各种问题都出现了.我通过更改以下内容解决了它:

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

在 yourjoomladirectory/libraries/joomla/html/html.php

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

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

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

在 yourjoomladirectory/modules/mod_mainmenu/helper.php

and in yourjoomladirectory/modules/mod_mainmenu/helper.php

function buildXML(&$params)

function buildXML($params)

希望这对某人有所帮助.

Hope this helps someone.

相关文章