4 * @file scripts/worker.php
5 * @brief Starts the background processing
9 use Friendica\Core\Addon;
10 use Friendica\Core\Config;
11 use Friendica\Core\Worker;
13 // Ensure that worker.php is executed from the base path of the installation
14 if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
15 $directory = dirname($_SERVER["argv"][0]);
17 if (substr($directory, 0, 1) != "/") {
18 $directory = $_SERVER["PWD"]."/".$directory;
20 $directory = realpath($directory."/..");
25 require_once "boot.php";
26 require_once "include/dba.php";
28 $a = new App(dirname(__DIR__));
30 require_once ".htconfig.php";
31 dba::connect($db_host, $db_user, $db_pass, $db_data);
32 unset($db_host, $db_user, $db_pass, $db_data);
36 // Check the database structure and possibly fixes it
39 // Quit when in maintenance
40 if (Config::get('system', 'maintenance', false, true)) {
44 $a->set_baseurl(Config::get('system', 'url'));
48 $spawn = (($_SERVER["argc"] == 2) && ($_SERVER["argv"][1] == "spawn"));
51 Worker::spawnWorker();
55 $run_cron = (($_SERVER["argc"] <= 1) || ($_SERVER["argv"][1] != "no_cron"));
57 Worker::processQueue($run_cron);
59 Worker::unclaimProcess();