mirror of
https://github.com/YunoHost-Apps/flarum_ynh.git
synced 2024-09-03 18:36:24 +02:00
Fix documentation
This commit is contained in:
parent
e4c890cac0
commit
a57d3ff023
2 changed files with 6 additions and 7 deletions
|
@ -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.
|
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.
|
Replace `vendor/extension` with the appropriate names. Read the extension documentation if it requires additional steps.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo su
|
sudo su
|
||||||
app=flarum
|
app=__ID__
|
||||||
cd /var/www/$app
|
cd /var/www/$app
|
||||||
sudo -u $app php__PHPVERSION__ composer.phar require vendor/extension
|
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
|
##### `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).
|
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`.
|
Reload PHP-FPM with `sudo service php__PHPVERSION__-fpm reload`.
|
||||||
|
|
||||||
##### Upload limit
|
##### Upload limit
|
||||||
If you are facing an error while uploading large files into the forum, PHP may be limiting file upload.
|
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`.
|
Reload PHP-FPM with `sudo service php__PHP_VERSION__-fpm reload`.
|
||||||
|
|
|
@ -16,7 +16,7 @@ Remplacez `vendor/extension` par les noms adéquats. Référez-vous à la docume
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo su
|
sudo su
|
||||||
app=__APP__
|
app=__ID__
|
||||||
cd /var/www/$app
|
cd /var/www/$app
|
||||||
sudo -u $app php__PHPVERSION__ composer.phar require vendor/extension
|
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`
|
##### 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).
|
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`.
|
Rechargez PHP-FPM avec `sudo service php__PHPVERSION__-fpm reload`.
|
||||||
|
|
||||||
##### Limite de téléversement
|
##### 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.
|
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`.
|
Rechargez PHP-FPM avec `sudo service php__PHPVERSION__-fpm reload`.
|
||||||
|
|
Loading…
Reference in a new issue