Problem is solved with the latest Nightly Build of Joomla v1.5 RC4!
Another Solution is explained here
1. Open file template index.php, search:
Code:
<jdoc:include type=”debug” name=”footer” />
and replace with
Code:
<jdoc:include type=”modules” name=”debug” />
2. Open file ja_menus/Base.class.php, search (in function loadMenu):
Code:
$menu = @JMenu :: getInstance();
if(strtolower(get_class($menu)) == ‘jexception’) {
$menu = @JMenu :: getInstance(‘site’);
}
$user =& JFactory::getUser();
$children = array ();
//get menu items
$rows = $menu->getItems(‘menutype’, $this->getParam(‘menutype’));
Replace with
Code:
$user =& JFactory::getUser();
$children = array ();
// Get Menu Items
$items = &JSite::getMenu();
$rows = $items->getItems(‘menutype’, $this->getParam(‘menutype’));
Regards Matthew