From 02fd7fe229e42f7964aa367e8106e80f5f564542 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Sat, 1 Sep 2018 14:34:01 +0200 Subject: [PATCH] [mod] README style and typo fix --- README.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c722ba1..c1d16ab 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ # Flarum for YunoHost -[![Install Hubzilla with YunoHost](https://install-app.yunohost.org/install-with-yunohost.png)](https://install-app.yunohost.org/?app=flarum) [![Integration level](https://dash.yunohost.org/integration/flarum.svg)](https://dash.yunohost.org/appci/app/flarum) +[![Install Hubzilla with YunoHost](https://install-app.yunohost.org/install-with-yunohost.png)](https://install-app.yunohost.org/?app=flarum) + +[![Integration level](https://dash.yunohost.org/integration/flarum.svg)](https://dash.yunohost.org/appci/app/flarum) [![Flarum version](https://img.shields.io/badge/flarum-0.1.0--beta.7.1-green.svg)](https://github.com/flarum/core/releases/tag/v0.1.0-beta.7.1) [Flarum](http://flarum.org/), an open-source forum software, packaged for [YunoHost](https://yunohost.org/), a self-hosting server operating server. -**Shipped version:** 0.1.0-beta.7 - ![](http://flarum.org/img/screenshot_2x.png) ## Features @@ -14,11 +14,11 @@ - SSOwat integration through a [dedicated extension](https://github.com/tituspijean/flarum-ext-auth-ssowat). ## Installation -This Flarum package can be installed -- through YunoHost's webadmin, in the Community listing -- through YunoHost's CLI: `yunohost app install https://github.com/YunoHost-Apps/flarum_ynh`. +This Flarum package can be installed through: +- YunoHost's webadmin, in the Community listing +- YunoHost's CLI: `yunohost app install https://github.com/YunoHost-Apps/flarum_ynh`. -Required parameters are : +Required parameters are: - `domain` - `path` - `admin`, among the YunoHosts users @@ -49,10 +49,14 @@ Reboot the system and try the installation again. ### `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/7.0/fpm/conf.d/20-{APPID}.ini`, 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 php7.0-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/7.0/fpm/conf.d/20-{APPID}.ini`, 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 php7.0-fpm reload`.