friendica/util/maintenance.php

54 lines
1.1 KiB
PHP
Raw Normal View History

2013-01-15 00:35:41 +01:00
<?php
use \Friendica\Core\Config;
2013-01-15 00:35:41 +01:00
require_once("boot.php");
$a = new App;
@include(".htconfig.php");
$lang = get_browser_language();
load_translation_table($lang);
require_once("include/dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data, false);
unset($db_host, $db_user, $db_pass, $db_data);
Config::load();
2013-01-15 00:35:41 +01:00
$maint_mode = 1;
2017-03-19 15:57:36 +01:00
if ($argc > 1) {
2013-01-15 00:35:41 +01:00
$maint_mode = intval($argv[1]);
}
2013-01-15 00:35:41 +01:00
Config::set('system', 'maintenance', $maint_mode);
2017-03-19 15:57:36 +01:00
if ($maint_mode AND ($argc > 2)) {
$reason_arr = $argv;
array_shift($reason_arr);
array_shift($reason_arr);
$reason = implode(' ', $reason_arr);
Config::set('system', 'maintenance_reason', $reason);
} else {
Config::set('system', 'maintenance_reason', '');
}
2017-03-19 15:57:36 +01:00
if ($maint_mode) {
2013-01-15 00:35:41 +01:00
$mode_str = "maintenance mode";
} else {
2013-01-15 00:35:41 +01:00
$mode_str = "normal mode";
}
echo "\n\tSystem set in $mode_str\n";
if ($reason != '') {
echo "\tMaintenance reason: $reason\n\n";
} else {
echo "\n";
}
2013-01-15 00:35:41 +01:00
echo "Usage:\n\n";
echo "\tphp {$argv[0]} [1] [Maintenance reason|redirection url]\tSet the system in maintenance mode\n";
2013-01-15 00:35:41 +01:00
echo "\tphp {$argv[0]} 0 \tSet the system in normal mode\n\n";