var/compiled
CS-Cartでグローバルにコンパイルを無効にする方法はありますか?
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
、変更を確認するには削除する必要があります。何か案が?