From a57d3ff0233d81dbd18efe2c9301ec3125060380 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Tue, 21 Feb 2023 22:56:50 +0100 Subject: [PATCH] Fix documentation --- doc/ADMIN.md | 7 +++---- doc/ADMIN_fr.md | 6 +++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/doc/ADMIN.md b/doc/ADMIN.md index a6d36c9..65c0597 100644 --- a/doc/ADMIN.md +++ b/doc/ADMIN.md @@ -12,12 +12,11 @@ Their data and parameters remain in Flarum's database, they only require to be r Flarum does not offer to install extensions from its admin panel yet, so you need to use the command line. -Replace `flarum` with your app ID (__APP__) in case of multiple installations. Replace `vendor/extension` with the appropriate names. Read the extension documentation if it requires additional steps. ```bash sudo su -app=flarum +app=__ID__ cd /var/www/$app sudo -u $app php__PHPVERSION__ composer.phar require vendor/extension ``` @@ -27,13 +26,13 @@ sudo -u $app php__PHPVERSION__ composer.phar require vendor/extension ##### `Timeout` errors Some users have reported a successful installation, but get a blank page due to a `timeout` on a PHP script that prepares the forum assests (`Minify.php`, notably). -In `/etc/php/__PHPVERSION__/fpm/pool.d/__APP__.conf`, you can increase the `max_execution_time` and `max_input_time` limits (both values are in seconds if nothing is specified). +In `/etc/php/__PHPVERSION__/fpm/pool.d/__ID__.conf`, you can increase the `max_execution_time` and `max_input_time` limits (both values are in seconds if nothing is specified). Reload PHP-FPM with `sudo service php__PHPVERSION__-fpm reload`. ##### Upload limit If you are facing an error while uploading large files into the forum, PHP may be limiting file upload. -In `/etc/php/__PHPVERSION__/fpm/pool.d/__APP__.conf`, you can uncomment (remove `;` at the beginning of the line) and increase the values of `upload_max_filesize` and `post_max_size` (both values are in bytes). +In `/etc/php/__PHPVERSION__/fpm/pool.d/__ID__.conf`, you can uncomment (remove `;` at the beginning of the line) and increase the values of `upload_max_filesize` and `post_max_size` (both values are in bytes). Reload PHP-FPM with `sudo service php__PHP_VERSION__-fpm reload`. diff --git a/doc/ADMIN_fr.md b/doc/ADMIN_fr.md index 00439e1..48c50d0 100644 --- a/doc/ADMIN_fr.md +++ b/doc/ADMIN_fr.md @@ -16,7 +16,7 @@ Remplacez `vendor/extension` par les noms adéquats. Référez-vous à la docume ```bash sudo su -app=__APP__ +app=__ID__ cd /var/www/$app sudo -u $app php__PHPVERSION__ composer.phar require vendor/extension ``` @@ -26,13 +26,13 @@ sudo -u $app php__PHPVERSION__ composer.phar require vendor/extension ##### Erreurs de `timeout` Quelques utilisateurs rapportent qu'ils font fassent à une page blanche due à une erreur de `timeout` dans un script PHP qui prépare le cache (`Minify.php`, notamment). -Dans `/etc/php/__PHPVERSION__/fpm/pool.d/__APP__.conf`, vous pouvez augmenter les limites `max_execution_time` et `max_input_time` (les deux valeurs sont en secondes si vous ne précisez pas d'unité). +Dans `/etc/php/__PHPVERSION__/fpm/pool.d/__ID__.conf`, vous pouvez augmenter les limites `max_execution_time` et `max_input_time` (les deux valeurs sont en secondes si vous ne précisez pas d'unité). Rechargez PHP-FPM avec `sudo service php__PHPVERSION__-fpm reload`. ##### Limite de téléversement Si vous avez une erreur lors du chargement de gros fichiers dans le forum, PHP pourrait être en train de limiter les téléversements. -Dans `/etc/php/__PHPVERSION__/fpm/pool.d/__APP__.conf`, vous pouvez décommenter (enlevez `;` au début de la ligne) et augmenter les valeurs de `upload_max_filesize` de `post_max_size` (les deux valeurs sont en octets). +Dans `/etc/php/__PHPVERSION__/fpm/pool.d/__ID__.conf`, vous pouvez décommenter (enlevez `;` au début de la ligne) et augmenter les valeurs de `upload_max_filesize` de `post_max_size` (les deux valeurs sont en octets). Rechargez PHP-FPM avec `sudo service php__PHPVERSION__-fpm reload`.