diff options
author | VirtualTam <virtualtam@flibidi.net> | 2015-09-04 21:25:47 +0200 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2015-09-04 21:32:25 +0200 |
commit | f8b936e7e75601b5d96525f25d5b52dbabd909b4 (patch) | |
tree | 8a6fcc4cd511aad9b1f24df32bdcfe810419172f /doc/Troubleshooting.md | |
parent | ce8c4a84ba180802ca6e5f00f60353ad71d3fcc8 (diff) | |
download | Shaarli-f8b936e7e75601b5d96525f25d5b52dbabd909b4.tar.gz Shaarli-f8b936e7e75601b5d96525f25d5b52dbabd909b4.tar.zst Shaarli-f8b936e7e75601b5d96525f25d5b52dbabd909b4.zip |
Doc: sync from Wiki, generate HTML
Additions:
- Installation/Download: how to get Shaarli
- Community software: ShaarliOS app
Modifications:
- Installation/Server requirements: PHP 5.4 EOL, PHP 7 announcements
- Installation/Server configuration: improve Nginx security
- Troubleshooting: PHP sessions on `free.fr`
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'doc/Troubleshooting.md')
-rw-r--r-- | doc/Troubleshooting.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/Troubleshooting.md b/doc/Troubleshooting.md index 4e6cdb06..e91fe846 100644 --- a/doc/Troubleshooting.md +++ b/doc/Troubleshooting.md | |||
@@ -61,11 +61,12 @@ Search for `failed` in this file to look for unauthorized login attempts. | |||
61 | 61 | ||
62 | ## Hosting problems | 62 | ## Hosting problems |
63 | ### Old PHP versions | 63 | ### Old PHP versions |
64 | * On **free.fr** : Please note that free uses php 5.1 and thus you will not have autocomplete in tag editing. Don't forget to create a `sessions` directory at the root of your webspace. Change the file extension to `.php5` or create a `.htaccess` file in the directory where Shaarli is located containing: | 64 | * On **free.fr** : free.fr now support php 5.6.x([link](http://les.pages.perso.chez.free.fr/migrations/php5v6.io))and so support now the tag autocompletion but you have to do the following : At the root of your webspace create a `sessions` directory and a `.htaccess` file containing:[](.html) |
65 | 65 | ||
66 | ```ini | 66 | ```ini |
67 | php 1 | 67 | <IfDefine Free> |
68 | SetEnv PHP_VER 5 | 68 | php56 1 |
69 | </IfDefine> | ||
69 | ``` | 70 | ``` |
70 | 71 | ||
71 | * If you have an error such as: `Parse error: syntax error, unexpected '=', expecting '(' in /links/index.php on line xxx`, it means that your host is using php4, not php5. Shaarli requires php 5.1. Try changing the file extension to `.php5` | 72 | * If you have an error such as: `Parse error: syntax error, unexpected '=', expecting '(' in /links/index.php on line xxx`, it means that your host is using php4, not php5. Shaarli requires php 5.1. Try changing the file extension to `.php5` |