I installed magento 1.9 version on localhost, code downloaded from live server.
In the admin panel I can only see the 3 menu’s sales , catalog and reports.
Rest of the menu is not visible like system menu and other configuration menu.
I am new to magneto so please suggest me where can I change to see all the menu in the admin panel.
Thanks in Advance.
3
Answers
make sure your admin user has permissions for all modules. Check your user group
You can create new user and login from that particular user which have full permission. Run below given code in magento root for creating new user:
Newuser.php
Sound like you need to go to your FTP server and find the folder modules under:
/public_html/app/etc/modules
Here you have to enable the disabled modules again ->
Open the specific xml-module-file, in your favorite notepad editor e.g:
Amasty_Base.xml
-> Find the line false
Change false > true and SAVE and upload file back to server.
Repeat this on all the disabled files and empty cache and try login/logout.
Let me know how is works.