Cannot assign 'roles' for the MegaMenu – magneto permissions

Maybe this problem is related to my rearlier post regarding the MegaMenu.

I need to give a new user admin permissions. To do this Magento allows me to assign ‘resources’ to ‘roles’. for any new admin user.

magneto admin/ system/permissions/roles

When I assign the resources by checking the check-boxes they ALL get saved , except the MegaMenuModule. This never gets saved. So when the new admin goes to the magneto admin control panel, the Mega Menu is always missing.

Why will the MegaMenu role not save? Could it be related to the earlier problem I mentioned in this post: http://www.joomlart.com/forums/showt…rror-Mega-Menu

I have cleared the cache scores of times, no effect. The Permission for MegaMenu just does not save.

1 answer

Profile photo of Sherlock 0.00 $tone March 11, 2013
Public

Hi maz001,

You open the config file of app\code\local\Wavethemes\Jmmegamenu\etc\config.xm l look for this tag

HTML Code:

  <acl>
				<resources>
					<all>
					   <title>Allow Everything</title>
					</all>
					<admin>
					<children>
						<Wavethemes_Jmmegamenu>
							<title>JmMegamenu Module</title>
							<sort_order>10</sort_order>
						</Wavethemes_Jmmegamenu>
					</children>
					</admin>
				</resources>
			</acl>

Change it to

HTML Code:

<acl>
				<resources>
					<all>
					   <title>Allow Everything</title>
					</all>
					<admin>
					<children>
						<jmmegamenu translate="title" module="jmmegamenu">
							  <title>Jmmegamenu</title>
							  <sort_order>1000</sort_order>
							  <children>
									<items module="jmmegamenu">
										<title>Manage Menu Items</title>
										<sort_order>0</sort_order>
										<action>jmmegamenu/adminhtml_jmmegamenu</action>
									</items>
									<setting module="admin">
										<title>Settings</title>
										<sort_order>1</sort_order>
										<action>adminhtml/system_config/edit/section/wavethemes_jmmegamenu</action>
									</setting>
							  </children>	
						</jmmegamenu>
					</children>
					</admin>
				</resources>
			</acl>

Let me know if it helps !

#1

Please login or Register to Submit Answer

Written By

Comments