온라인 자습서에 따라 첫 번째 사용자 정의 모듈을 만들고 있습니다. 시스템에서 모듈을 "발견"하기 위해 특정 XML 파일을 작성해야하지만, XML을 깨뜨려도 차이점이 없거나 때로는 오류 보고서가 있음을 알려주는 페이지가 표시됩니다. 숨겨져 있습니다. 이러한 오류 보고서를 어떻게 찾을 수 있습니까? 개발 중에 시스템에서 피드백을받을 수있는 방법이 있습니까?
내 파일 app / etc / modules / BlueAcorn_Test.xml은 다음과 같습니다.
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<BlueAcorn_ExampleModule>
<active>true</active>
<codepool>local</codepool>
</BlueAcorn_ExampleModule>
</modules>
</config>
그리고 여기 app / code / local / Blueacorn / Example / etc / config.xml 의 구성 파일이 있습니다 .
<?xml version="1.0" encoding="UTF-8"?>
<config>
<global>
<blocks>
<test>
<class>BlueAcorn_ExampleModule_Block</class>
</test>
</blocks>
<layout>
<updates>
<test>
<file>example.xml</file>
</test>
</updates>
</layout>
</global>
</config>