2011-05-02 66 views
0

我無法按照本教程進行操作。以下是我的配置文件。我有正確的地方前端部分?我似乎無法得到這個工作。我到了我的網站/helloworld/index/index,沒有任何反應。應該發生什麼?Alan Storm「helloworld」config.xml文件

應用程序/代碼/本地/ Alanstormdotcom/Hellowowrld的/ etc/config.xml中:

<config>  
    <modules> 
     <Alanstormdotcom_Helloworld> 
      <version>0.1.0</version> 
     </Alanstormdotcom_Helloworld> 
    </modules> 
<frontend> 
     <routers> 
      <helloworld> 
       <use>standard</use> 
       <args> 
        <module>Alanstormdotcom_Helloworld</module> 
        <frontName>helloworld</frontName> 
       </args> 
      </helloworld> 
     </routers> 
    </frontend> 

</config> 

應用程序/代碼/本地/ Alanstormdotcom /的Helloworld /控制器/ IndexController.php:

class Alanstormdotcom_Helloworld_IndexController extends Mage_Core_Controller_Front_Action {   
    public function indexAction() { 
     echo 'Hello Index!'; 
    } 
} 

應用程序的/ etc /模塊/ Alanstormdotcom_Helloworld.xml

<config> 
    <modules> 
     <Alanstormdotcom_Helloworld> 
      <active>true</active> 
      <codePool>local</codePool> 
     </Alanstormdotcom_Helloworld> 
    </modules> 
</config>  
+0

在Stack Overflow上縮進代碼示例將確保它們的格式正確。該模塊允許您在訪問URL http://magento.example.com/helloworld時加載打印hello world的URL。總會發生一些事情,但不是你所期望的。描述你的期望與實際發生的事情,人們將能夠幫助你。 – 2011-05-02 19:21:38

+3

我從這個問題中刪除了「storm」標記,但是對於Alan的記錄,它必須很高興擁有自己的標記:) – 2011-05-02 19:22:34

+1

@joseph mastey如果我必須與一段廢話電話分享它,http:// stackoverflow.com/tags/storm – 2011-05-02 20:29:34

回答

0

您可以嘗試兩種解決方案:

1)刷新的Magento的緩存,並嘗試重新加載頁面

2)改變正下方與標籤標籤(並刷新緩存)

+0

問題,在標記下面更改標記以????用什麼請好?我已經多次刷新緩存。謝謝 – Jacq 2011-05-03 13:34:51

2

您運行的是什麼版本的Magento的?除了緩存問題,我不確定最新的錯誤。我採取了你的文件,它們在1.4.0.1(其他然後錯字的路徑到你的config.xml文件,除非那不是一個錯字)工作的偉大

這裏是我有工作:

應用程序/代碼/本地/ Alanstormdotcom /的Helloworld的/ etc/config.xml中:

<?xml version="1.0"?> 
<config> 
    <modules> 
     <Alanstormdotcom_Helloworld> 
      <version>0.1.0</version> 
     </Alanstormdotcom_Helloworld> 
    </modules> 
    <frontend> 
     <routers> 
      <helloworld> 
       <use>standard</use> 
       <args> 
        <module>Alanstormdotcom_Helloworld</module> 
        <frontName>helloworld</frontName> 
       </args> 
      </helloworld> 
     </routers> 
    </frontend> 
</config> 

應用程序/代碼/本地/ Alanstormdotcom /的Helloworld /控制器/ IndexController.php

<?php 

class Alanstormdotcom_Helloworld_IndexController extends Mage_Core_Controller_Front_Action { 
    public function indexAction() { 
     echo 'Hello Index!'; 
    } 
} 

應用的/ etc /模塊/ Alanstormdotcom_Hellow orld.xml

<?xml version="1.0"?> 
<config> 
    <modules> 
     <Alanstormdotcom_Helloworld> 
      <active>true</active> 
      <codePool>local</codePool> 
     </Alanstormdotcom_Helloworld> 
    </modules> 
</config> 

Soo yeah基本上是一樣的東西......你試過把緩存完全關閉嗎?