diff --git a/documentation/installation_guide.html b/documentation/installation_guide.html
index df513bcf93..7f06e5809f 100644
--- a/documentation/installation_guide.html
+++ b/documentation/installation_guide.html
@@ -245,38 +245,31 @@ e-mail setting in [chamilo]/config/mail.conf.php.
Chamilo LMS requires the following PHP extensions:
- - PCRE
- - zlib
- - session
- - mbstring
- - iconv
- - json
-
-
-It also requires the following PHP modules:
-
- - gd
- - imagick
- - mysql or mysqlnd
+ - PCRE (enabled by default since PHP 4.2)
+ - session (enabled by default since the creation of PHP)
+ - json (enabled by default since PHP 5.2)
+ - gd (not enabled by default)
+ - mysql or mysqlnd (neither of these is enabled by default, but we recommend mysqlnd for higher efficiency, mysql also being deprecated starting from PHP 5.5)
+ - mbstring (not enabled by default)
+ - zlib (NOT enabled by default)
And optionally (for more features) the following PHP modules:
- - ldap
- - curl
- - xapian
-
+ - curl (required for links checking in the links tool)
+ - iconv (enabled by default, it is used as a second option to mbstring, required above, but Symfony components depend on mbstring only, so this recommendation might be removed in the future)
+ - ldap (required only if you use LDAP authentication)
+ - xapian (required only to use the text indexing feature - see further down this installation guide for install instructions)
+ - imagick (generates better images thumbnails when using the text indexing feature requiring the Xapian extension)
To get the best out of Chamilo, you need to finetune your PHP settings. Consider :
-
-
- Editing php.ini file (on Windows can be located at
C:\xampp\php\php.ini,
on Ubuntu :
/etc/php5/apache2/php.ini
- - search the word "_max" and increase the two values to optimise the server
+ - search the word "_max" and increase the two values (post_max_size and upload_max_filesize) to optimise the server
- we recommend the following values :
@@ -289,8 +282,7 @@ To get the best out of Chamilo, you need to finetune your PHP settings. Consider
session.cookie_httponly = On
-Some users could meet problems if their PHP settings don't match
-these ones:
+Some users could meet problems if their PHP settings don't match the following: