Magento custom admin module 404 not found
I have tried to create a new module for the magento admin section. I have seen many topics on this problem but none of them solved my issue. I have created a file in app/etc/modules/ named Company_CustomList.xml <?xml version="1.0"?> <config> <modules> <Company_CustomList> <active>true</active> <codePool>local</codePool> </Company_CustomList> </modules> </config> Then in app/code/local/Company/CustomList I have created the following files: app/code/local/Company/CustomList/Block/List.php <?php class Company_CustomList_Block_List extends Mage_Core_Block_Template { // necessary methods } ?> app