在尝试将菜单项添加到 Joomla 3.0 后端的菜单中后,由于访问后端菜单部分的重复别名而失败,该菜单项不再起作用。菜单项从前端消失。尝试添加更多菜单项会导致致命错误
PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 36324 bytes) in \libraries\joomla\table\nested.php on line 1251
删除数据库中错误的菜单项会返回前端菜单项,但后端仍然无法正常工作。
这是上面错误中突出显示的方法:带* * 突出显示行
/**
* Method to recursively rebuild the whole nested set tree.
*
* @param integer $parentId The root of the tree to rebuild.
* @param integer $leftId The left id to start with in building the tree.
* @param integer $level The level to assign to the current nodes.
* @param string $path The path to the current nodes.
*
* @return integer 1 + value of root rgt on success, false on failure
*
* @link http://docs.joomla.org/JTableNested/rebuild
* @since 11.1
* @throws RuntimeException on database error.
*/
public function rebuild($parentId = null, $leftId = 0, $level = 0, $path = '')
{
// If no parent is provided, try to find it.
if ($parentId === null)
{
// Get the root item.
$parentId = $this->getRootId();
if ($parentId === false)
{
return false;
}
}
// Build the structure of the recursive query.
if (!isset($this->_cache['rebuild.sql']))
{
$query = $this->_db->getQuery(true);
$query->select($this->_tbl_key . ', alias')
->from($this->_tbl)
->where('parent_id = %d');
// If the table has an ordering field, use that for ordering.
if (property_exists($this, 'ordering'))
{
$query->order('parent_id, ordering, lft');
}
else
{
$query->order('parent_id, lft');
}
$this->_cache['rebuild.sql'] = (string) $query;
}
// Make a shortcut to database object.
// Assemble the query to find all children of this node.
$this->_db->setQuery(sprintf($this->_cache['rebuild.sql'], (int) $parentId));
$children = $this->_db->loadObjectList();
// The right value of this node is the left value + 1
$rightId = $leftId + 1;
// Execute this function recursively over all children
foreach ($children as $node)
{
/*
* $rightId is the current right value, which is incremented on recursion return.
* Increment the level for the children.
* Add this item's alias to the path (but avoid a leading /)
*/
****
$rightId = $this->rebuild($node->{$this->_tbl_key}, $rightId, $level + 1, $path . (empty($path) ? '' : '/') . $node->alias);
****
// If there is an update failure, return false to break out of the recursion.
if ($rightId === false)
{
return false;
}
}
// We've got the left value, and now that we've processed
// the children of this node we also know the right value.
$query = $this->_db->getQuery(true);
$query->update($this->_tbl)
->set('lft = ' . (int) $leftId)
->set('rgt = ' . (int) $rightId)
->set('level = ' . (int) $level)
->set('path = ' . $this->_db->quote($path))
->where($this->_tbl_key . ' = ' . (int) $parentId);
$this->_db->setQuery($query)->execute();
// Return the right value of this node + 1.
return $rightId + 1;
}
有人有解决办法吗?
方法详细信息中链接的文档文章实际上不存在。
编辑1:注释:
- 这是在本地主机上的 IIS 上用于开发目的
- 将内存限制设置为 256m 和 512m 但没有变化。
- 更改了 PHP.ini 中的其他几个时间/大小限制设置,但仍然没有乐趣
- 重新启动服务器。
- 没有饼干
- 重建菜单和模块 - 修复前端显示 - 后端仍然损坏。
编辑2:当前设置:
max_execution_time: 3000 3000
max_file_uploads: 200 200
max_input_nesting_level 64 64
max_input_time 600 600
max_input_vars 1000 1000
memory_limit -1 512M
edit3:#_menu 表中的 db 行内容:
'0', 'menutype', 'title', 'alias', '', '', '', 'separator', '1', '1', '1', '0', '0', '0000-00-00 00:00:00', '0', '1', '', '0', '{\"menu_image\":\"\",\"menu_text\":1}', '223', '224', '0', '*', '0'
编辑4:进一步发现:
例如,如果别名为“abc123”,则 #_menu 表中的每个其他记录的路径字段都更新为 abc123/existing-alias,而通过尝试添加别名为 abc123 的菜单项添加的新行上的路径保持为空,则该行具有id 为 0。