我在让magento模块在linux上工作时遇到问题。
它在OSX上运行没有任何问题。
这是我模块的结构

app
├── code
│   └── local
│       └── Vuuh
│           └── ProductFeed
│               ├── Block
│               │   ├── Adminhtml
│               │   │   └── ProductFeed.php
│               │   └── Index.php
│               ├── controllers
│               │   ├── Adminhtml
│               │   │   └── AdminController.php
│               │   └── ProductController.php
│               ├── etc
│               │   ├── adminhtml.xml
│               │   └── config.xml
│               ├── Helper
│               │   └── Data.php
│               ├── Model
│               │   ├── Resource
│               │   │   ├── ProductFeed
│               │   │   │   └── Collection.php
│               │   │   └── ProductFeed.php
│               │   └── ProductFeed.php
│               │
│               └── sql
│                   └── vuuh_productfeed_setup
│                       └── install-0.0.1.php
├── design
│    └── adminhtml
│        └── default
│            └── default
│                ├── layout
│                │   └── productfeed.xml
│                └── template
│                    └── productfeed
│                        └── productfeed.phtml
└── etc
    └── modules
        └── Vuuh_ProductFeed.xml

这是我的config.xml
<?xml version="1.0" encoding="UTF-8"?>
<config>

<!-- Module -->
<modules>
    <Vuuh_ProductFeed>
        <version>0.0.1</version>
    </Vuuh_ProductFeed>
</modules>

<!-- Frontend -->
<frontend>
    <routers>
        <vuuh_productfeed>
            <use>standard</use>
            <args>
                <module>Vuuh_ProductFeed</module>
                <frontName>vuuhproductfeed</frontName>
            </args>
        </vuuh_productfeed>
    </routers>
</frontend>

<!-- Admin-->
<admin>
    <routers>
        <Vuuh_ProductFeed>
            <use>admin</use>
            <args>
                <module>Vuuh_ProductFeed</module>
                <frontName>productfeed</frontName>
            </args>
        </Vuuh_ProductFeed>
    </routers>
</admin>

<!-- Adminhtml -->
<adminhtml>
    <layout>
        <updates>
            <productfeed>
                <file>productfeed.xml</file>
            </productfeed>
        </updates>
    </layout>
</adminhtml>

<!-- Global -->
<global>
    <models>
        <vuuh_productfeed>
            <class>Vuuh_ProductFeed_Model</class>
            <resourceModel>vuuh_productfeed_resource</resourceModel>
        </vuuh_productfeed>

        <vuuh_productfeed_resource>
            <class>Vuuh_ProductFeed_Model_Resource</class>
            <entities>
                <productfeed>
                    <table>vuuh_productfeed_productfeed</table>
                </productfeed>
            </entities>
        </vuuh_productfeed_resource>
    </models>
    <resources>
        <vuuh_productfeed_setup>
            <setup>
                <module>Vuuh_ProductFeed</module>
                <class>Mage_Core_Model_Resource_Setup</class>
            </setup>
            <connection>
                <use>core_setup</use>
            </connection>
        </vuuh_productfeed_setup>
    </resources>
    <helpers>
        <productfeed>
            <class>Vuuh_ProductFeed_Helper</class>
        </productfeed>
    </helpers>
    <blocks>
        <productfeed>
            <class>Vuuh_ProductFeed_Block</class>
        </productfeed>
    </blocks>
</global>

我做了一些研究,发现这个问题可能是因为Linux上的案例敏感性。但我在配置中找不到任何错误?
mage::getmodel(“vuh_productfeed/productfeed”)找不到类。
$productfeed = Mage::getModel("vuuh_productfeed/productfeed")->getCollection();

Fatal error: Call to a member function getCollection() on a non-object in /var/www/magento18/app/design/adminhtml/default/default/template/productfeed/productfeed.phtml

我已经盯着那个配置好几个小时了。我找不到错误。
模块负载良好。只有一个类不会加载。

最佳答案

问题是区分大小写。
Windows上的文件名不区分大小写。在unix上是这样的。
所以当调用Mage::getModel("vuuh_productfeed/productfeed")magento时,会查找文件
Vuuh/ProductFeed/Model/Productfeed.php但您的文件名是
Vuuh/ProductFeed/Model/ProductFeed.php
你有两个选择。
例如,将对getModel的所有调用(以及createblock和其他工厂)更改为

Mage::getModel("vuuh_productfeed/productFeed")

但这种方法有点费时。
第二个选项是将文件从ProductFeed.php重命名为Productfeed.php。您还可以更改这些文件中的类名,但这不是必需的,因为类名在php中是区分大小写的。但为了“政治正确”,你应该改变他们。

关于linux - Magento模块可在OS X而非Linux上运行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23762520/

10-11 18:51