08/11/02 02:19:55 1tQBBkdC
いやいや、この情報はGJ!!
そういや最近、vrsでたまに番組表取得できないことが。
キャッシュを消せばリロード時に取得できるので、一応こんなごまかし方でなんとかなるかと。
Index: lib/ProgramViewerContents.php
===================================================================
--- lib/ProgramViewerContents.php (リビジョン 104)
+++ lib/ProgramViewerContents.php (作業コピー)
@@ -65,6 +65,8 @@
$file = file( $fileName ); // iEPGのファイル
if ( $file == NULL ) {
echo "<p class=\"error\">ERROR: 番組表ファイル($fileName)を開けません。</p>";
+ $cmd = "rm -f ".$fileName;
+ exec( $cmd, $dummy, $ret );
return;
}
?>