php - Magento 扩展 404 错误

标签 php xml linux macos magento

我很难过!

我有一个自定义扩展,它在 Mac Leopard 上本地运行得很好,但是在推送到主机 (Centos Linux) 之后,我在尝试调用前端路由器时遇到了 Magento 404 错误。

例如这个网址: [domain]/shop/index.php/bbyd_sync/index/在现场导致 404,但在本地返回“完成”。

这是我的 config.xml:

<config>
<modules>
    <Bbyd_Sync>
        <version>0.1.0</version>
    </Bbyd_Sync>
</modules>
<crontab>
    <jobs>
        <bbyd_sync>
            <schedule>
                <cron_expr>*/5 * * * *</cron_expr>
            </schedule>
            <run>
                <model>sync/run::runAll</model>
            </run>
        </bbyd_sync>
    </jobs>
</crontab>
<frontend>
    <routers>
        <sync>
            <use>standard</use>
            <args>
                <module>Bbyd_Sync</module>
                <frontName>bbyd_sync</frontName>
            </args>
        </sync>
    </routers>
</frontend>
<admin>
    <routers>
        <wrapper>
            <use>admin</use>
            <args>
                <module>Bbyd_Sync</module>
                <frontName>syncadmin</frontName>
            </args>
        </wrapper>
    </routers>
</admin>
<adminhtml>
    <acl>
        <resources>
            <all>
                <title>Allow Everything</title>
            </all>
            <admin>
                <children>
                    <system>
                        <children>
                            <config>
                                <children>
                                    <bbyd translate="title" module="run">
                                        <title>BBYD Sync</title>
                                        <sort_order>808</sort_order>
                                    </bbyd>
                                </children>
                            </config>
                        </children>
                    </system>
                </children>
            </admin>
        </resources>
    </acl>
    <translate>
        <modules>
            <Bbyd_Sync>
                <files>
                    <default>BBYD_Sync.csv</default>
                </files>
            </Bbyd_Sync>
        </modules>
    </translate>
</adminhtml>
<global>
    <models>
        <sync>
            <class>Bbyd_Sync_Model</class>
            <resourceModel>sync_mysql4</resourceModel>
        </sync>
        <sync_mysql4>
            <class>Bbyd_Sync_Model_Mysql4</class>
            <entities>
                <run>
                    <table>bbyd_sync</table>
                </run>
            </entities> 
        </sync_mysql4>
    </models>
    <helpers>
        <sync>
            <class>bbyd_sync_helper</class>
        </sync>
    </helpers>
    <resources>
        <sync_setup>
            <setup>
                <module>Bbyd_Sync</module>
            </setup>
            <connection>
                <use>core_setup</use>
            </connection>
        </sync_setup>
        <sync_write>
            <connection>
                <use>core_write</use>
            </connection>
        </sync_write>
        <sync_read>
            <connection>
                <use>core_read</use>
            </connection>
        </sync_read>      
    </resources>  
</global>
<default>
    <bbyd>
        <setup>
            <send_new_customer_account_email>0</send_new_customer_account_email>
        </setup>
        <cron>
            <log_file_name>bbyd_sync.log</log_file_name>
        </cron>
    </bbyd>
</default>

我的 IndexController.php

class Bbyd_Sync_IndexController extends Mage_Core_Controller_Front_Action
{
    public function indexAction() {
        echo "done";
    }
}

我的应用程序/代码/本地结构(我在这里使用字母大小写):

Bbyd
    Sync
        controllers
            IndexController.php
        etc
            config.xml
            system.xml
        Helper
            Data.php
        Model
            Run.php
            Mysql4
                Run.php
        sql
            sync_setup
                mysql4-install-0.1.0.php

当然我也有/app/code/etc/modules/Bbyd_Sync.xml。

有人对 Magento 的 Mac 和 Linux 平台之间发生的问题有一些好主意吗?也许文件/目录的大小写?

顺便说一句,这是 Magento 1.5。

感谢任何帮助...(我的第一个请求所以请温柔点!)

最佳答案

第 0 步:清除实时服务器上的缓存和 session 。

第 1 步:检查您的模块是否使用免费/开源 Module List Module 安装

第 2 步:在以下方法中删除一些调试代码。 var_dumps 会告诉您 Magento 的路由器正在为您的模块寻找哪些文件/类,但找不到。

File: app/code/core/Mage/Core/Controller/Varien/Router/Standard.php

protected function _validateControllerClassName($realModule, $controller)
{
    $controllerFileName = $this->getControllerFileName($realModule, $controller);
    if (!$this->validateControllerFileName($controllerFileName)) {
        var_dump($controllerFileName);
        return false;
    }

    $controllerClassName = $this->getControllerClassName($realModule, $controller);
    if (!$controllerClassName) {
        var_dump($controllerFileName);
        return false;
    }

    // include controller file if needed
    if (!$this->_includeControllerClass($controllerFileName, $controllerClassName)) {
        var_dump($controllerFileName);
        return false;
    }

    return $controllerClassName;
}   

第 3 步:调试 which 404 page it is .

关于php - Magento 扩展 404 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6189935/

相关文章:

c# - 使用 C# 控制台应用程序将一个大的 XML 文件一分为二

linux - 边缘触发的 epoll 和 UDP 的 recvfrom()

linux - bash,如何将标准输出到文件

php - 如何使用 PHP 在 flutterwave 中获取 token

php - HTML - 包含特殊字符时不发送表单字段

Eclipse PDT 的 PHP 重构插件

java - 自定义字体不适用于 Android 5.0,但适用于其他地方

php - URL 中的特殊字符和数组

java - 是否有正则表达式可以防止输入 Javascript?

linux - 使用 Cocotron CDT 与 SDL 链接