Hello Friends,
I have installed supee 6788 patch in my store. I have several extensions in my store.
I am just updating admin route as per magento APPSEC-1034, addressing bypassing custom admin URL but it gives me 404 page not found error in my third party extensions.
I am changing config.xml from
<admin> <routers> <orderseraser> <use>admin</use> <args> <module>Wyomind_Orderseraser</module> <frontName>orderseraser</frontName> </args> </orderseraser> </routers> </admin>
to
<admin> <routers> <adminhtml> <args> <modules> <orderseraser after="Mage_Adminhtml">Wyomind_Orderseraser_Adminhtml</orderseraser> </modules> </args> </adminhtml> </routers> </admin>
but it gives admin url 404.
I have tried in several extensions but its giving me same error in all other extensions.
Please let me know
Thanks in advance.
https://github.com/angeloh/magento-study-news/issues/2
natewlew commented on 19 Sep 2015
I had the same issue. You need to logout and log back into the admin.
Thanks