diff --git a/htdocs/index.php b/htdocs/index.php index 8756044a..62db19a8 100644 --- a/htdocs/index.php +++ b/htdocs/index.php @@ -8,9 +8,6 @@ // basic 認証設定を実行 basicAuth($basicauth, $basicauth_user, $basicauth_password); - - // ファイルリスト作成を実行 - fileinfo($infofile, $TSfile_dir); // ONAirのみ if ($ini['state'] == "ONAir"){ diff --git a/install.bat b/install.bat index ea4b98e9..2afaacd7 100644 --- a/install.bat +++ b/install.bat @@ -1,3 +1,4 @@ @echo off -.\bin\php\php.exe install.php \ No newline at end of file +cd .\bin\Apache\bin\ +..\..\php\php.exe ..\..\..\install.php \ No newline at end of file diff --git a/module.php b/module.php index 462afdc6..471e8dd3 100644 --- a/module.php +++ b/module.php @@ -3,30 +3,7 @@ // 各種モジュール // バージョン - $version = 'v1.0.0-rc7'; - - // 録画ファイルリストを作成 - function fileInfo($infofile, $TSfile_dir){ - - // jsonからデコードして代入 - if (file_exists($infofile)){ - $TSfile = json_decode(file_get_contents($infofile), true); - } else { - return; - } - - // ファイル検索 - $search = array_merge(glob($TSfile_dir.'*.ts'), glob($TSfile_dir.'*\*.ts')); - - // ファイルが増減していたら searchfile.php でサムネイルの作成とかやっておいてもらう - if (count($TSfile) !== count($search)){ - - // リクエストを投げる - //file_get_contents('http://'.basename($_SERVER["HTTP_HOST"], $_SERVER["SERVER_PORT"]).'8000/api/searchfile.php?flush'); - } - - return; - } + $version = 'v1.0.0-rc8'; // Windows用非同期コマンド実行関数 function win_exec($cmd){