In our Magento store we do not use any downloadable products and don't plan to. Is it okay to completely disable the Mage_Downloadable module without causing any issues in the store? I see no reason to spend processing time calling the observers and running code that will never get used...

link|improve this question

53% accept rate
Copy the files to a secondary location and test it out, see what happens. – Mick Hansen Feb 20 at 17:22
I have disabled it in my dev site and it "seems" to be working properly, but you never know if doing something that seems ok may in fact cause an issue down the line. I figured someone might have already disabled this extension with no problems or had experienced problems doing so and could help me avoid future problems... – BrianVPS Feb 20 at 17:26
feedback

1 Answer

up vote 0 down vote accepted

Run find in path in any ide in \app\etc\modules for Mage_Downloadable. If no one your installed extension depends on it - you can disable it. If some module depends - you will find xml file with

<depends>
...
    <Mage_Downloadable />
...
</depends>

inside.

link|improve this answer
OK, great, thanks! – BrianVPS Feb 20 at 18:54
1  
I"m not sure I'd rely on depends to correctly catch every dependency code in one module might have for another. – Alan Storm Feb 20 at 19:31
1  
In case of core/enterprise modules I'd rely on it (for CE 1.5+ at least), but you are right, it is not the case for community ones. – Zyava Feb 20 at 19:36
1  
@Zyava - what Alan is saying is that there is nothing imperative regarding <depends> usage. It simply causes configuration files to have precedence, which has some knock-on effects. Your answer is a good starting point, but a thorough answer would have someone do a case-insensitive search through all code for 'downloadable'. – benmarks Feb 20 at 20:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.