X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2FInstall.md;h=ddffe601c514496ee1573b304d78271605f1951a;hb=3588e35c8778ef64bca8890f1472a39ffcbaaeb7;hp=de4ef1b652307c4eaa95b67e1cf44df77270a191;hpb=60a719cffa9a08a024d075fc4037f986130d7267;p=friendica.git diff --git a/doc/Install.md b/doc/Install.md index de4ef1b652..ddffe601c5 100644 --- a/doc/Install.md +++ b/doc/Install.md @@ -231,7 +231,7 @@ Copy `.htaccess-dist` to `.htaccess` (be careful under Windows) to have working Example: - cp .htacces-dist .htaccess + cp .htaccess-dist .htaccess *Note*: Do **not** rename the `.htaccess-dist` file as it is tracked by GIT and renaming will cause a dirty working directory. @@ -353,7 +353,7 @@ Often this will need to be resolved with your hosting provider or (if self-hoste First check your file permissions. Your website and all contents must generally be world-readable. -Ensure that mod-rewite is installed and working, and that your `.htaccess` file +Ensure that mod-rewrite is installed and working, and that your `.htaccess` file is being used. To verify the latter, create a file `test.out` containing the word "test" in the top directory of Friendica, make it world readable and point your web browser to @@ -535,3 +535,21 @@ In your ModSecurity WAF config: In the end, you will need to restart all services that you have changed configuration for. If you don't know which ones these are, just reboot. + +### Diaspora support is not activated + +You get this error when you try to add a Diaspora contact. + +You can enable it from the web interface in `Admin -> Site -> Policies -> Enable diaspora* support`. +You may also set it manually in the config file or in the database within the `diaspora_enabled` key of the `system` category. + +### Upgrade failed due to DB migration timeout + +Altering of a table may fail if it contains a large number of rows. +First verify the existing timeout (50s by default): + +`show global variables like "innodb_lock_wait_timeout";` + +Then increase it: + +`set global innodb_lock_wait_timeout=600;`