Joomla menu not showing(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 菜单未显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Joomla 菜单未显示
基础教程推荐
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 如何替换eregi() 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
