summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-04-12 19:33:12 +0400
committerAndrew Dolgov <[email protected]>2011-04-12 19:33:12 +0400
commitdbaa4e4aac5e68c6d4714941ae99d3e4028410e5 (patch)
tree86e6a7c06742c66236eade808e3f43753051be22 /update.php
parentf56c6cd48853fa498704d4239bf204d57279f6ce (diff)
config: remove option ENABLE_UPDATE_DAEMON
Diffstat (limited to 'update.php')
-rwxr-xr-xupdate.php11
1 files changed, 4 insertions, 7 deletions
diff --git a/update.php b/update.php
index 6be19473f..ac785373d 100755
--- a/update.php
+++ b/update.php
@@ -41,13 +41,13 @@
}
// Create a database connection.
- $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
+ $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
if (!$link) {
if (DB_TYPE == "mysql") {
print mysql_error();
}
- // PG seems to display its own errors just fine by default.
+ // PG seems to display its own errors just fine by default.
return;
}
@@ -64,9 +64,6 @@
}
if ($op == "-daemon") {
- if (!ENABLE_UPDATE_DAEMON)
- die("Please enable option ENABLE_UPDATE_DAEMON in config.php\n");
-
while (true) {
passthru(PHP_EXECUTABLE . " " . $argv[0] . " -daemon-loop");
_debug("Sleeping for " . DAEMON_SLEEP_INTERVAL . " seconds...");
@@ -79,7 +76,7 @@
die("error: unable to create stampfile\n");
}
- // Call to the feed batch update function
+ // Call to the feed batch update function
// or regenerate feedbrowser cache
if (rand(0,100) > 30) {
@@ -89,7 +86,7 @@
_debug("Feedbrowser updated, $count feeds processed.");
purge_orphans($link, true);
-
+
$rc = cleanup_tags($link, 14, 50000);
_debug("Cleaned $rc cached tags.");