Magento无法识别自定义sql设置

时间:2013-06-03 14:51:12

标签: php magento zend-framework

我不能让magento在我的生命中执行我的sql设置。我以前做过这个没问题,但是这个应用程序有自己的想法,它现在不想这样做。这就是我到目前为止所做的。

的应用程序/代码/本地/命名空间/模块的/ etc / config.xml的

<config>
    <modules>
        <namespace_module>
            <version>0.0.1</version>
        </namespace_module>
    </modules>
    <global>
        <resources>
            <module_setup>
                <setup>
                    <module>Namespace_Module</module>
                    <class>Namespace_Module_Model_Resource_Setup</class>
                </setup>
            </module_setup>
        </resources>
    </global>
</config>

的应用程序/代码/本地/命名空间/模块/型号/资源/ Setup.php

<?php
class Namespace_Module_Model_Resource_Setup extends Mage_Core_Model_Resource_Setup {


}

的应用程序/代码/本地/命名空间/模块/ SQL / module_setup / mysql4安装-0.0.1.php

<?php
/**
 * Magento Enterprise Edition
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Magento Enterprise Edition License
 * that is bundled with this package in the file LICENSE_EE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.magentocommerce.com/license/enterprise-edition
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    Mage
 * @package     Mage_Catalog
 * @copyright   Copyright (c) 2009 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
 * @license     http://www.magentocommerce.com/license/enterprise-edition
 */

$installer = $this;
/* @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */

$installer->startSetup();

if (!$installer->tableExists($installer->getTable('namespace_module_table'))) {
    $installer->run("
    create table namespace_module_table (
        postal_code char(5) primary key,
        north_east_bound_lat varchar(64),
        north_east_bound_lng,
        namespace_module_address varchar(64),
        time_zone_id varchar(30)
    );
    ");
}

$ installer-&GT; endSetup();

因此,我能够获得magento来识别我的Setup.php文件,因为它在某一点上引发了错误,但我修复了这个问题。但是当我检查core_resources时,我看不到我的模块设置..

我已禁用所有缓存并刷新magentos缓存和存储缓存。和已禁用并启用了我的app/etc/modules/Namespace_Module.xml

请记住,此模块功能齐全,它没有安装程序,这正是我想要做的。我刚刚给你安装这个东西的最低限度。

1 个答案:

答案 0 :(得分:0)

想出来......

<config>
    <modules>
        <namespace_module>
            <version>0.0.1</version>
        </namespace_module>
    </modules>
</config>

需要......

<config>
    <modules>
        <Namespace_Module>
            <version>0.0.1</version>
        </Namespace_Module>
    </modules>
</config>

您的模块名称空间和模块名称需要与模块名称空间和模块名称目录结构相匹配。