// option can be used to integrate tt-rss with Apache's external
// authentication modules.
- define('CONFIG_VERSION', 13);
+ define('LOCK_DIRECTORY', '.');
+ // Directory for lockfiles, must be writable to the user you run
+ // daemon process or cronjobs under.
+
+ define('CONFIG_VERSION', 14);
// Expected config version. Please update this option in config.php
// if necessary (after migrating all new options from this file).
function file_is_locked($filename) {
if (function_exists('flock')) {
error_reporting(0);
- $fp = fopen($filename, "r");
+ $fp = fopen(LOCK_DIRECTORY . "/$filename", "r");
error_reporting(DEFAULT_ERROR_LEVEL);
if ($fp) {
if (flock($fp, LOCK_EX | LOCK_NB)) {
}
function make_lockfile($filename) {
- $fp = fopen($filename, "w");
+ $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
if (flock($fp, LOCK_EX | LOCK_NB)) {
return $fp;
}
function make_stampfile($filename) {
- $fp = fopen($filename, "w");
+ $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
if (flock($fp, LOCK_EX | LOCK_NB)) {
fwrite($fp, time() . "\n");
function read_stampfile($filename) {
error_reporting(0);
- $fp = fopen($filename, "r");
+ $fp = fopen(LOCK_DIRECTORY . "/$filename", "r");
error_reporting (DEFAULT_ERROR_LEVEL);
if (flock($fp, LOCK_EX)) {
<?php
require_once "functions.php";
- define('EXPECTED_CONFIG_VERSION', 13);
+ define('EXPECTED_CONFIG_VERSION', 14);
define('SCHEMA_VERSION', 28);
if (!file_exists("config.php")) {
error_reporting(DEFAULT_ERROR_LEVEL);
function sigint_handler() {
- unlink("update_daemon.lock");
+ unlink(LOCK_DIRECTORY . "/update_daemon.lock");
die("Received SIGINT. Exiting.\n");
}