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 菜单未显示


- 从 PHP 中的输入表单获取日期 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Laravel 仓库 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01