Magento事件观察员没有在centos中射击

时间:2013-09-18 06:36:44

标签: magento centos

它可以在我的本地Windows机器上运行,但不能在centos服务器上运行。

我的配置是我的文件夹结构

Caitlinhavener \ Dynamicprice \模型\ Observer.php Caitlinhavener \ Dynamicprice \等\ config.xml中

我的配置文件是:

<?xml version="1.0"?>
<config>    
   <modules>
       <Caitlinhavener_Dynamicprice>
           <version>0.1.0</version>
        </Caitlinhavener_Dynamicprice>
   </modules>
   <global>
      <models>
           <chdispatcher>
               <class>Caitlinhavener_Dynamicprice_Model</class>
           </chdispatcher>
       </models>
   </global>
   <frontend>
       <events>
            <checkout_cart_product_add_after>
                <observers>
                    <modify_to_custom_price>
                        <type>singleton</type>
                        <class>chdispatcher/observer</class>
                        <method>modifyPrice</method>
                    </modify_to_custom_price>
                </observers>
            </checkout_cart_product_add_after>
       </events>
    </frontend>
</config>

Observer.php

<?php
Mage::log('Im here')
or exit("unable to log");
class Caitlinhavener_Dynamicprice_Model_Observer
{
    public function modifyPrice(Varien_Event_Observer $obs)
    {
      echo "inside";exit;
    }



}
?>

1 个答案:

答案 0 :(得分:1)

此配置中的问题不一定。如果你的模块在windows下运行我假设模块中的某个地方有大写字符(小/大字符)。这可能是模块名称,命名空间,类名,Caitlinhavener_Dynamicprice.xml或其他文件路径等的错误字符。对于Windows,小字母和大字母之间没有区别,但对于Unix来说这很重要。您可以在另一个模块中尝试观察者进行检查。抱歉我的英文。