byronyasgur
byronyasgur

Reputation: 4747

Magento modules disabled on their own

I have a Magento system which is almost ready to deploy; but for some reason last night several of the modules went from true to false. When I go to system>config>advanced they are set to enable but when I open app/etc/modules and check the xml files several are set to false.

eg

<config>
<modules>
    <Mage_Api>
        <active>false</active>
        <codePool>core</codePool>
        <depends>
            <Mage_Core />
        </depends>
    </Mage_Api>
</modules>

Can anyone suggest likely scenario or what to do now.

Edit: also three of the files, Mage_Backup.xml Mage_Admin.xml and Mage_Adminhtml.xml were blank

Upvotes: 1

Views: 250

Answers (1)

benmarks
benmarks

Reputation: 23205

The only way that this can happen is by someone or some remote process (ftp, rsync, etc) manipulating these files by hand. Change access keys, change passwords, and review logs.

The GUI at System > Configuration > Advanced does not disable modules - it disables their output, as titled. There is NO connection between the modules/[Module_Handle]/active value and the value which is displayed in DMO.

Upvotes: 1

Related Questions