-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why does my configure run well on the version updated at 9/05/2012, can not run on the others versions updated after 9/05/2012 #92
Comments
The Block menu you are reference doesn´t exist !? |
The Block menu exists in Mage_Backend. But the configure ablout Block menu in layout.xm are dfferent in the version updated at 9/05/2012 and the version updated after 9/05/2012. The configure ablout Block menu in layout.xm in the version updated at 9/05/2012: [default] The configure ablout Block menu in layout.xm in the version updated after 9/05/2012: [default] |
Navigation classes were recently refactored. Can you let us know if you solved your issue with your findings from the last comment? |
I can not solve the issue until now! |
[Github] Merge public Github commits
MAGETWO-64999: [GitHub][PR] Fixed crosssells count always null #8602
MAGETWO-89081: CE edition - Update composer dependencies
…task-73 #73 :- Page title is empty when admin login as customer
In my magento application, there is a configure in layout.xml:
[default]
[reference name="head"]
[action method="setTemplate"][template]SunshineBiz_Permission::page/head.phtml[/template][/action]
[action method="setTitle" translate="title"][title]Backend Admin[/title][/action]
[/reference]
[reference name="menu"]
[action method="setTemplate"][template]SunshineBiz_Permission::menu.phtml[/template][/action]
[/reference]
[reference name="footer"]
[action method="setTemplate"][template]SunshineBiz_Permission::page/footer.phtml[/template][/action]
[/reference]
[/default]
On the version updated at 9/05/2012, it runs well. But it can not run on the version updated at 9/13/2012 and 9/27/2012. It run a long time, and display a blank page. Forthermore, there aren't logs in system.log, no warn, no error, nothing. I have to change the configure by removing the "menu" reference as following:
[default]
[reference name="head"]
[action method="setTemplate"][template]SunshineBiz_Permission::page/head.phtml[/template][/action]
[action method="setTitle" translate="title"][title]Backend Admin[/title][/action]
[/reference]
[reference name="footer"]
[action method="setTemplate"][template]SunshineBiz_Permission::page/footer.phtml[/template][/action]
[/reference]
[/default]
Then it can run. Why is it so? How can I change the menu's template?
Any suggest is welcome!
The text was updated successfully, but these errors were encountered: