Question

I added a custom module to a fresh install of magento on my local (mac). Since setting this up I needed to add the site to another computer (kubuntu).

On the kubuntu I cloned the git repository and the site works as expected but if I view pages belonging to the module it returns a 404.

Both the mac and kubuntu have identical database and code.

Unless someone thinks it's necessary i'm not going to post the code for the module because I can't see that being an issue given that it works on the mac. I assume this has to be a config issue somewhere but where?

config.xml

   <?xml version="1.0" encoding="UTF-8"?>


 <config> 

<modules>

    <Graphicalliance_Dynamicblocks>
        <version>0.0.1</version>
    </Graphicalliance_Dynamicblocks>

</modules>
<frontend>
    <routers>
        <Dynamicblocks>
            <use>standard</use>
            <args>
                <module>Graphicalliance_Dynamicblocks</module>
                <frontName>Dynamicblocks</frontName>
            </args>
        </Dynamicblocks>
    </routers>

    <layout>
        <updates>
            <graphicalliance_dynamicblocks>
                <file>dynamicblocks.xml</file>
            </graphicalliance_dynamicblocks>
        </updates>
    </layout>
</frontend>
<global>

</global>
</config>

Url to index action is http://edwardgreen.localhost/shop/Dynamicblocks/index

root to this is release-head/shop/app/code/local/GraphicAlliance/Dyanmicblocks/controllers/IndexController.php

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top