Joomla 菜单未显示

Joomla menu not showing(Joomla 菜单未显示)
本文介绍了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.

这篇关于Joomla 菜单未显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)