有没有办法在CS-Cart中全局禁用var/complied
编译?
我正在使用CS-Cart 2.2.4版
以下是我在config.local.php
中定义的内容:
define('DEVELOPMENT', true);
// Tweaks
$config['tweaks'] = array(
'js_compression' => false, // enables compession to reduce size of javascript files
'check_templates' => true, // disables templates checking to improve template engine speed
'inline_compilation' => false, // compiles nested templates in one file
'anti_csfr' => false, // protect forms from CSFR attacks (experimental)
'disable_block_cache' => true, // used to disable block cache
'join_css' => false, // is used to unite css files into one file
'allow_php_in_templates' => false, // Allow to use {php} tags in templates
);
我还在后端设置了开发模式,但这似乎没有改变任何内容。
在插件中编辑.tpl时,我仍然需要删除var/compiled
才能看到我的更改。有什么想法吗?
答案 0 :(得分:2)