我使用以下代码创建了一个Test控制器:Create Custom page in Prestashop 1.5.3.1
class MyPageController extends FrontController
{
public $php_self = 'mypage';
public function init() {
parent::init();
}
public function initContent() {
parent::initContent();
die('test!');
}
}
我把它放在/controllers/front/MyPageController.php中,它不起作用。我得到一个干净的HTML页面。
我错过了什么?
指向自定义页面的链接:http://www.funtoy.co.il/index.php?controller=MyPage
编辑1: 修复分号为$ php_self ='mypage';
感谢。 yaniv abo
答案 0 :(得分:9)
删除cache/class_index.php
以清除缓存。