]> git.wh0rd.org - tt-rss.git/blob - update_feeds.php
change short php tags to long ones
[tt-rss.git] / update_feeds.php
1 #!/usr/bin/php4
2 <?php
3 // this script is probably run not from your httpd-user, so cache
4 // directory defined in config.php won't be accessible
5 define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache-cli');
6
7 define('DISABLE_SESSIONS', true);
8
9 require_once "sanity_check.php";
10 require_once "config.php";
11 require_once "db.php";
12 require_once "db-prefs.php";
13 require_once "functions.php";
14 require_once "magpierss/rss_fetch.inc";
15
16 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
17
18 if (!$link) {
19 if (DB_TYPE == "mysql") {
20 print mysql_error();
21 }
22 // PG seems to display its own errors just fine by default.
23 return;
24 }
25
26 if (DB_TYPE == "pgsql") {
27 pg_query("set client_encoding = 'utf-8'");
28 }
29
30 $result = db_query($link, "SELECT id FROM ttrss_users");
31
32 while ($line = db_fetch_assoc($result)) {
33 $user_id = $line["id"];
34 update_all_feeds($link, false, $user_id, true);
35 }
36
37 db_close($link);
38
39 ?>