Xubuntu を 13.04 から 13.10 にアップグレードした後、Smarty と PHP で問題のエラーが発生しています。
基本的に、テンプレートを編集した後、Smarty テンプレートは 5 ~ 7 秒の遅延で再コンパイルされます。
date
システム時刻 ( ) を PHP の時刻と比較したところdate(...)
、タイムスタンプは同じです。
PHP Version 5.5.3-1ubuntu2
修正方法は?
コード例:
require_once 'classes/Smarty-3.1.8/libs/Smarty.class.php';
$tpl = new Smarty();
// if I edit this template, changes shows up after
// 3-4 seconds which is very annoying
// there was no issue in xubuntu 13.04 / older php version!
$tpl->display('test.tpl');
編集:
正しく動作していることを再確認しましたがfilemtime
、動作しています。