I have a solution for this problem - at least it works for me!
- It's a modification to a MyMenu fix (
www.jasonmurphy.net)
For some reason mambo doesn't want to let you use URLs as menu items for assigning modules.
--------------------------------------------------------------
In administrator/modules.php change line 225 where it says:
--------------------------------------------------------------
. "\nWHERE menutype = 'mainmenu' AND type != 'url' AND type != 'separator'"
change to
. "\nWHERE menutype != 'usermenu' AND type != 'separator'"
---------------------------------------------------------------
Basically Jason stopped it insisting on mainmenu, and i have simply removed the != URL restriction.
now all your static page/URL menu items can have modules assigned to them!!
For me this fixed the problem.
hope this helps someone else
take care
zloh