Update additional_configuration.md

This commit is contained in:
Jcodeerd 2023-09-15 21:37:17 +02:00 committed by GitHub
parent 28460757f4
commit 38555a646c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -127,7 +127,13 @@ reCAPTCHA can easily be disabled using the admin panel. In the Settings, select
If you cannot access your panel, you can modify the database directly using the following commands.
```sql
# If using MySQL
mysql -u root -p
# If using MariaDB (V11.0.0+)
mariadb -u root -p
```
```sql
UPDATE panel.settings SET value = 'false' WHERE `key` = 'settings::recaptcha:enabled';
```