views:

170

answers:

1

Hi, I'm using Joomla 1.5 and installed Joomap to create site map.

I found that if the item in the Joomap tree is a menulink (menu alias), then it cannot work as deserved. It will cause a 404 error which said the component cannot be found when the menulink is clicked.

thanks

+1  A: 

Ok, This is the solution.

All you need to do is to modify the component code, just by commenting one line your problem will be solved. There is no other way.

Edit : /components/joomap/joomap.html.php

and comment the line of code, around line number 58, 59

$link .= '&Itemid='.$node->id;

to

//$link .= '&Itemid='.$node->id;

Just comment the line and it will work as it deserve.

Hope this will solve your answer. SIA

SIA