2008-12-26から1日間の記事一覧

1.2 shift_jisのサイトで、キャッシュが内部文字エンコードでキャッシュされて、afterFilter通らずに、そのまま表示されちゃう。

内部文字エンコードはEUC-JP。 出力文字エンコードはShift_JIS。 app_controllerのafterFilterでSJISに変換して出力してる。 function afterFilter() { $this->output = mb_convert_encoding($this->output, 'SJIS', 'EUC-JP'); } キャッシュ使うと、EUC-JP…

1.2でviewをchacheするには

config/core.php Configure::write('Cache.disable', false); Configure::write('Cache.check', true); contollers/*_controller.php var $helpers = array('Cache'); var $cacheAction = 86400; アクションごとにキャッシュを無効にすることも可能です。 co…