I am trying to avoid multiple executions of the same script, using a lock file. Thing is, it seems that when ever i execute a file function, the script loops until its hable to acess the file. Just like flock($fp, LOCK_EX); I did try to add a LOCK_NB (flock($fp, LOCK_EX | LOCK_NB);), but the same behavior is presented.
I have tried multiple classes such as http://www.electrictoolbox.com/check-php-script-already-running/ But they all present the same issue on my common linux php5 server.
Heres the code i am trying to execute, if i run them twice, the second one will wait until the first one is done to continue(they both echo Running...). Idk why. Seems like when it gets to file_exists() it starts looping.
<?php
class pid {
protected $filename;
public $already_running = false;
function __construct($directory) {
$this->filename = $directory . '/' . basename($_SERVER['PHP_SELF']) . '.pid';
if(is_writable($this->filename) || is_writable($directory)) {
if(file_exists($this->filename)) {
$pid = (int)trim(file_get_contents($this->filename));
if(posix_kill($pid, 0)) {
$this->already_running = true;
}
}
}
else {
die("Cannot write to pid file '$this->filename'. Program execution halted.\n");
}
if(!$this->already_running) {
$pid = getmypid();
$fp = fopen($this->filename, 'w');
flock($fp, LOCK_UN);
fclose($fp);
}
}
public function __destruct() {
if(!$this->already_running && file_exists($this->filename) && is_writeable($this->filename)) {
unlink($this->filename);
}
}
}
$pid = new pid('locks');
if($pid->already_running) {
echo "Already running.\n";
exit;
}
else {
sleep(10);
echo "Running...\n";
}
?>
Does anyone know what could i do, to get this done? Am i missing something?
Thanks for the help, i have really searched and tried alot for the past hours.