mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 17:29:06 +00:00
throw error on non-writable file
This commit is contained in:
parent
d1ca411f9b
commit
7a0c18ff87
1 changed files with 5 additions and 1 deletions
|
@ -27,7 +27,11 @@ class Sync{
|
||||||
if(!file_exists($pidfile)) {
|
if(!file_exists($pidfile)) {
|
||||||
$pid = getmypid();
|
$pid = getmypid();
|
||||||
$file = fopen($pidfile, 'w+');
|
$file = fopen($pidfile, 'w+');
|
||||||
|
if (!$file)
|
||||||
|
echo $pidfile.' is not writeable.';
|
||||||
|
error_log($pidfile.' is not writeable.');
|
||||||
|
throw new SystemExit();
|
||||||
|
}
|
||||||
fwrite($file, $pid);
|
fwrite($file, $pid);
|
||||||
fclose($file);
|
fclose($file);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue