]> git.wh0rd.org Git - tt-rss.git/blob - update_feeds.php
remove subselect from theme query, expand password range
[tt-rss.git] / update_feeds.php
1 #!/usr/bin/php4
2 <?
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         require_once "sanity_check.php";
8         require_once "config.php";
9         require_once "db.php";
10         require_once "db-prefs.php";
11         require_once "functions.php";
12         require_once "magpierss/rss_fetch.inc";
13
14         $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); 
15
16         if (!$link) {
17                 if (DB_TYPE == "mysql") {
18                         print mysql_error();
19                 }
20                 // PG seems to display its own errors just fine by default.             
21                 return;
22         }
23
24         if (DB_TYPE == "pgsql") {
25                 pg_query("set client_encoding = 'utf-8'");
26         }
27
28         $result = db_query($link, "SELECT id FROM ttrss_users");
29
30         while ($line = db_fetch_assoc($result)) {
31                         $user_id = $line["id"];
32                         update_all_feeds($link, false, $user_id, true);
33         }
34
35         db_close($link);
36
37 ?>