Custom extensions throwing 404 after installing patch for magento -


i have installed following security patches in magento site: 4291,6237,7616,5344,5994,6285,6482,6788,7405.

before of custom modules worked fine, aren't. here config.xml:

<?xml version="1.0"?> <config>     <modules>         <custom_moduleadmin>             <version>3.4.0</version>             <depends>custom_module</depends>         </custom_moduleadmin>     </modules>     <adminhtml>         <layout>             <updates>                 <custommoduleadmin>                     <file>custommoduleadmin.xml</file>                 </custommoduleadmin>             </updates>         </layout>     </adminhtml>      <admin>     <routers>         <custommoduleadmin>             <use>admin</use>             <args>                 <module>custom_moduleadmin</module>                 <frontname>custommoduleadmin</frontname>             </args>         </custommoduleadmin>     </routers>     </admin>     <global>         <rewrite>           <custom_moduleadmin_adminhtml_custommoduleadmincontroller>             <from><![cdata[#^/custommodule/adminhtml_custommodule/#]]></from>             <to>/custommoduleadmin/adminhtml_custommoduleadmin/</to>           </custom_moduleadmin_adminhtml_custommoduleadmincontroller>         </rewrite>      </global> </config> 

i toke this link.

please help, in advance.

anyhow found solution changing this:

<routers>     <custommoduleadmin>         <use>admin</use>         <args>             <module>custom_moduleadmin</module>             <frontname>custommoduleadmin</frontname>         </args>     </custommoduleadmin> </routers> 

to:

<routers>     <adminhtml>         <args>             <modules after="mage_adminhtml">custom_moduleadmin</modules>             <frontname>custommoduleadmin</frontname>         </args>     </adminhtml> </routers> 

this.


Comments

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -

Python Pig Latin Translator -