0

モジュールに次のクラスを作成しました

class Mage_Chargeagent_PaymentupdateController extends Mage_Core_Controller_Front_Action
{
    public function indexAction()
    {

        echo "im here";
        die();
    }
}

local\Company\Chargeagent\controllers\PaymentupdateController.php の下にあります。

http://www.xxx.com/index.php/chargeagent/paymentupdateに移動しようとすると、正しいアクションが得られません。何が間違っていますか?

4

1 に答える 1

1

クラス名は次のようになりますCompany_Chargeagent_PaymentupdateController

class Company_Chargeagent_PaymentupdateController extends Mage_Core_Controller_Front_Action
{
    public function indexAction()
    {

        echo "im here";
        die();
    }
}
于 2013-03-19T16:57:54.123 に答える