コア 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);
...
...
コード/ローカル/メイジではなく、CORE を使用します。何かを設定する必要がありますか、それとも失敗しますか?