禁用CS-Cart编译

时间:2014-07-10 12:39:49

标签: php compilation cs-cart

有没有办法在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才能看到我的更改。有什么想法吗?

1 个答案:

答案 0 :(得分:2)