Add example to multiple admin question in FAQ

This commit is contained in:
Hypolite Petovan 2023-04-27 23:36:03 -04:00
parent 9e13ef4021
commit 2c4b57ef50
2 changed files with 12 additions and 4 deletions

View file

@ -36,7 +36,11 @@ Have a look into your <tt>config/local.config.php</tt> and fix your email addres
Yes. Yes.
You just have to list more then one email address in the You just have to list more then one email address in the
<tt>config/local.config.php</tt> file. <tt>config/local.config.php</tt> file.
The listed emails need to be separated by a comma. The listed emails need to be separated by a comma like this:
```php
'admin_email' => 'mail1@example.com,mail2@example.com',
```
<a name="dbupdate"> <a name="dbupdate">
### The Database structure seems not to be updated. What can I do? ### The Database structure seems not to be updated. What can I do?
@ -48,4 +52,4 @@ You can manually execute the structure update from the CLI in the base directory
bin/console dbstructure update bin/console dbstructure update
if there occur any errors, please contact the [support forum](https://forum.friendi.ca/profile/helpers). if there occur any errors, please contact the [support forum](https://forum.friendi.ca/profile/helpers).

View file

@ -39,7 +39,11 @@ Bitte aktualisiere deine E-Mail Adresse in der <tt>config/local.config.php</tt>
Ja. Ja.
Du kannst in der <tt>config/local.config.php</tt> Datei mehrere E-Mail Adressen auflisten. Du kannst in der <tt>config/local.config.php</tt> Datei mehrere E-Mail Adressen auflisten.
Die aufgelisteten Adressen werden mit Kommata von einander getrennt. Die aufgelisteten Adressen werden wie folgt durch Kommas voneinander getrennt:
```php
'admin_email' => 'mail1@example.com,mail2@example.com',
```
<a name="dbupdate"> <a name="dbupdate">
### Die Datenbank Struktur schein nicht aktuell zu sein. Was kann ich tun? ### Die Datenbank Struktur schein nicht aktuell zu sein. Was kann ich tun?
@ -52,4 +56,4 @@ Starte dazu bitte vom Grundverzeichnis deiner Friendica Instanz folgendes Komman
bin/console dbstructure update bin/console dbstructure update
sollten bei der Ausführung Fehler auftreten, kontaktiere bitte das [Support Forum](https://forum.friendi.ca/profile/helpers). sollten bei der Ausführung Fehler auftreten, kontaktiere bitte das [Support Forum](https://forum.friendi.ca/profile/helpers).