我正在尝试扩展核心 AccountController.php -> app/code/core/Mage/Customer 将其复制到 app/code/local/Mage/ 并添加一个日志以查看哪个扩展正确。
In the file AccountController.php (app/code/local/Mage/Customer/controllers)
...
...
public function createPostAction() {
Mage::log('In app/code/local/Mage/', null, 'test.log', true);
...
...
AND CORE (only test)
In the file AccountController.php (app/code/core/Mage/Customer/controllers)
...
...
public function createPostAction() {
Mage::log('In app/code/core/Mage/', null, 'test.log', true);
...
...
并且不通过代码/本地/法师而是通过核心。我需要配置一些东西还是失败了?