mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:42:53 +00:00
Add site admin warning if BaseURL is missing
This commit is contained in:
parent
5552aac327
commit
75ecaa89ee
1 changed files with 4 additions and 0 deletions
|
@ -98,6 +98,10 @@ class Summary extends BaseAdmin
|
|||
$warningtext[] = DI::l10n()->t('The last update failed. Please run "php bin/console.php dbstructure update" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)');
|
||||
}
|
||||
|
||||
if (empty(DI::config()->get('system', 'url'))) {
|
||||
$warningtext[] = DI::l10n()->t('The system.url entry is missing. This is a low level setting and can lead to unexpected behavior. Please add a valid entry as soon as possible in the config file or per console command!');
|
||||
}
|
||||
|
||||
$last_worker_call = DI::keyValue()->get('last_worker_execution');
|
||||
if (!$last_worker_call) {
|
||||
$warningtext[] = DI::l10n()->t('The worker was never executed. Please check your database structure!');
|
||||
|
|
Loading…
Reference in a new issue