cancel
Showing results for 
Search instead for 
Did you mean: 

404 Error Page not found error on extension admin route update Installing SUPEE - 6788

404 Error Page not found error on extension admin route update Installing SUPEE - 6788

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.

Problem solved? Click Kudos and "Accept as Solution".
200+ Magento 2 Extensions for Enhanced Shopping Experience.
2 REPLIES 2

Re: 404 Error Page not found error on extension admin route update Installing SUPEE - 6788

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.

Re: 404 Error Page not found error on extension admin route update Installing SUPEE - 6788

Thanks