diff options
author | Friendika <info@friendika.com> | 2010-11-22 15:30:52 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-22 15:30:52 -0800 |
commit | fb58801aa406d1dd250d614b02f63f0b72bae6b6 (patch) | |
tree | 27d424ba57d06e09d29dac874880768c530a1d22 /include/poller.php | |
parent | 0bcb68200e8543dbcaaea16aae86806b6251ebb4 (diff) | |
download | volse-hubzilla-fb58801aa406d1dd250d614b02f63f0b72bae6b6.tar.gz volse-hubzilla-fb58801aa406d1dd250d614b02f63f0b72bae6b6.tar.bz2 volse-hubzilla-fb58801aa406d1dd250d614b02f63f0b72bae6b6.zip |
schedule the queue re-delivery process
Diffstat (limited to 'include/poller.php')
-rw-r--r-- | include/poller.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/poller.php b/include/poller.php index a34a1e01f..a9c1a28ca 100644 --- a/include/poller.php +++ b/include/poller.php @@ -18,6 +18,13 @@ $a->set_baseurl(get_config('system','url')); + + // run queue delivery process in the background + + $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php'); + proc_close(proc_open("\"$php_path\" \"include/queue.php\" &", array(), $foo)); + + $force = false; if(($argc > 1) && ($argv[1] == 'force')) $force = true; |