3 require_once("boot.php");
5 function expire_run($argv, $argc){
13 @include(".htconfig.php");
14 require_once("dba.php");
15 $db = new dba($db_host, $db_user, $db_pass, $db_data);
16 unset($db_host, $db_user, $db_pass, $db_data);
19 require_once('include/session.php');
20 require_once('include/datetime.php');
21 require_once('library/simplepie/simplepie.inc');
22 require_once('include/items.php');
23 require_once('include/Contact.php');
25 load_config('config');
26 load_config('system');
29 $a->set_baseurl(get_config('system','url'));
32 // physically remove anything that has been deleted for more than two months
34 $r = q("delete from item where deleted = 1 and changed < UTC_TIMESTAMP() - INTERVAL 60 DAY");
35 q("optimize table item");
37 logger('expire: start');
39 $r = q("SELECT `uid`,`username`,`expire` FROM `user` WHERE `expire` != 0");
42 logger('Expire: ' . $rr['username'] . ' interval: ' . $rr['expire'], LOGGER_DEBUG);
43 item_expire($rr['uid'],$rr['expire']);
50 if (array_search(__file__,get_included_files())===0){
51 expire_run($argv,$argc);