0

var/compiledCS-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、変更を確認するには削除する必要があります。何か案が?

4

1 に答える 1

2

開発モードを有効にした後、任意の URL に cc 変数を追加することで、フロントエンドからキャッシュをクリアできます。例: http://www.example.com/?ccまたはhttp://www.example.com/monitors/? ccまたはhttp://www.example.com/apple-iphone-5c-32gb-cell-phone-green.html?ccまたはhttp://www.example.com/index.php?dispatch=categories.view&category_id= 1cc

于 2014-07-15T04:50:54.457 に答える