0

I have a module Some_Costum with path app/code/local/Some :

enter image description here

The config is : https://gist.github.com/teosz/741a27242b547c277845

And in app/code/etc/modules/Some_Custom.xml :

<?xml version="1.0"?> <config> <modules> <Adve_Custom> <active>true</active> <codePool>local</codePool> </Adve_Custom> </modules> </config>

But is not loading for checkout context, Any help ?

2
  • what do you mean not loading ? please share some details. Commented Mar 3, 2015 at 13:27
  • loading - not showing in Mage::getConfig()->getNode('default'); Commented Mar 3, 2015 at 19:18

1 Answer 1

1

The top part of your configuration needs to be placed in app/etc/modules/Some_Custom.xml leaving only the version node in your existing config.xml:

Some_Custom.xml

<?xml version="1.0"?>
<config>
    <modules>
        <Some_Custom>
            <active>true</active>
            <codePool>local</codePool>
        </Some_Custom>
    </modules>
</config>

config.xml

<config>
    <modules>
        <Some_Custom>
            <version>1.0.0</version>
        </Some_Custom>
    </modules>
2
  • i've tried that, still not working Commented Mar 3, 2015 at 19:16
  • clear cache?? and add the rest of config.xml global/resources/some_custom_setup/setup magentocommerce.com/wiki/5_-modules_and_development/0-_module_development_in_magento/custom_module_with_custom_database_table Commented Mar 3, 2015 at 22:32

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.