1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-20 08:11:28 +00:00

warn if daemon process is not running on server

This commit is contained in:
Andrew Dolgov
2006-02-13 14:08:23 +01:00
parent 3e4950c7bb
commit 27981ca30f
2 changed files with 24 additions and 0 deletions

View File

@@ -928,6 +928,22 @@
}
}
function file_is_locked($filename) {
error_reporting(0);
$fp = fopen($filename, "r");
error_reporting(DEFAULT_ERROR_LEVEL);
if ($fp) {
if (flock($fp, LOCK_EX | LOCK_NB)) {
flock($fp, LOCK_UN);
fclose($fp);
return false;
}
fclose($fp);
return true;
}
return false;
}
function make_lockfile($filename) {
$fp = fopen($filename, "w");