X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=index.php;h=a8098942c2353e1a8963929fde47b8c259070634;hb=b057906bedb0cc3314e9f1b07645d55b89cc8bed;hp=16597fa62eefc3e1abac7055afda6465e693ad60;hpb=f0ce897647a5ca8fb2ec498579bc080f07488f2d;p=friendica.git diff --git a/index.php b/index.php index 16597fa62e..a8098942c2 100644 --- a/index.php +++ b/index.php @@ -35,24 +35,20 @@ $a->backend = false; require_once "include/dba.php"; -if (!$a->mode == App::MODE_INSTALL) { - if (!dba::connected()) { - System::unavailable(); - } - - /** - * Load configs from db. Overwrite configs from config/local.ini.php - */ +// Missing DB connection: ERROR +if ($a->mode & App::MODE_LOCALCONFIGPRESENT && !($a->mode & App::MODE_DBAVAILABLE)) { + System::httpExit(500, ['title' => 'Error 500 - Internal Server Error', 'description' => 'Apologies but the website is unavailable at the moment.']); +} - Config::load(); +// Max Load Average reached: ERROR +if ($a->isMaxProcessesReached() || $a->isMaxLoadReached()) { + header('Retry-After: 120'); + header('Refresh: 120; url=' . System::baseUrl() . "/" . $a->query_string); - if ($a->max_processes_reached() || $a->maxload_reached()) { - header($_SERVER["SERVER_PROTOCOL"] . ' 503 Service Temporarily Unavailable'); - header('Retry-After: 120'); - header('Refresh: 120; url=' . System::baseUrl() . "/" . $a->query_string); - die("System is currently unavailable. Please try again later"); - } + System::httpExit(503, ['title' => 'Error 503 - Service Temporarily Unavailable', 'description' => 'System is currently overloaded. Please try again later.']); +} +if ($a->isInstallMode()) { if (Config::get('system', 'force_ssl') && ($a->get_scheme() == "http") && (intval(Config::get('system', 'ssl_policy')) == SSL_POLICY_FULL) && (substr(System::baseUrl(), 0, 8) == "https://") @@ -171,9 +167,9 @@ $_SESSION['last_updated'] = defaults($_SESSION, 'last_updated', []); // in install mode, any url loads install module // but we need "view" module for stylesheet -if ($a->mode == App::MODE_INSTALL && $a->module!="view") { +if ($a->isInstallMode() && $a->module!="view") { $a->module = 'install'; -} elseif ($a->mode == App::MODE_MAINTENANCE && $a->module!="view") { +} elseif (!($a->mode & App::MODE_MAINTENANCEDISABLED) && $a->module != "view") { $a->module = 'maintenance'; } else { check_url($a);