diff --git a/documentation/installation_guide.html b/documentation/installation_guide.html index 792f02a94d..9b9cdb7434 100755 --- a/documentation/installation_guide.html +++ b/documentation/installation_guide.html @@ -112,13 +112,18 @@ only a specific database. Please refer to the MySQL or MariaDB documentation in
  • Enable the "rewrite" module in Apache (on the command line, run "sudo a2enmod rewrite")
  • Configure the Apache's VirtualHost for your Chamilo to include the following block, which will allow .htaccess files within Chamilo to be interpreted
  • - For Apache <=2.2: + For Apache <=2.2 (where /var/www/chamilo should be replaced by the path to your Chamilo install):
         <Directory />
             AllowOverride All
             Order allow,deny
             allow from all
         </Directory>
    +    <Directory /var/www/chamilo/>
    +        AllowOverride All
    +        Order allow,deny
    +        allow from all
    +    </Directory>
         
    and for Apache >=2.4:
    @@ -126,6 +131,10 @@ only a specific database. Please refer to the MySQL or MariaDB documentation in
             AllowOverride All
             Require all granted
         </Directory>
    +    <Directory /var/www/chamilo/>
    +        AllowOverride All
    +        Require all granted
    +    </Directory>
         

    Once configured (and maybe this has already been done by your hosting provider), you can simply restart the web server to enable the change. diff --git a/documentation/installation_guide_es_ES.html b/documentation/installation_guide_es_ES.html index 4573bdd131..1cf235b473 100755 --- a/documentation/installation_guide_es_ES.html +++ b/documentation/installation_guide_es_ES.html @@ -126,13 +126,18 @@ Nota:Esto se ha simplificado en gran medida desde la versión 1.9, ya que antes
  • Activar el módulo "rewrite" de Apache (en línea de comando con "sudo a2enmod rewrite")
  • Configurar el VirtualHost de Apache para que incluya el bloque siguiente, autorizando la interpretación de los archivos .htaccess
  • - Para Apache <=2.2: + Para Apache <=2.2 (remplace /var/www/chamilo/ por la ruta de su carpeta Chamilo en el servidor):
         <Directory />
             AllowOverride All
             Order allow,deny
             allow from all
         </Directory>
    +    <Directory /var/www/chamilo/>
    +        AllowOverride All
    +        Order allow,deny
    +        allow from all
    +    </Directory>
         
    y para Apache >=2.4:
    @@ -140,6 +145,10 @@ Nota:Esto se ha simplificado en gran medida desde la versión 1.9, ya que antes
             AllowOverride All
             Require all granted
         </Directory>
    +    <Directory /var/www/chamilo/>
    +        AllowOverride All
    +        Require all granted
    +    </Directory>
         

    Una vez configurada esta parte (que quizás ya esté configurada por su proveedor), basta con reiniciar el servidor web para activar el cambio. diff --git a/documentation/installation_guide_fr_FR.html b/documentation/installation_guide_fr_FR.html index 3ae6105fe0..681b92a399 100644 --- a/documentation/installation_guide_fr_FR.html +++ b/documentation/installation_guide_fr_FR.html @@ -145,20 +145,29 @@
  • Activer le module "rewrite" d'Apache (en ligne de commande, faites simplement un "sudo a2enmod rewrite")
  • Configurer le VirtualHost d'Apache pour qu'il inclue le bloc suivant, ce qui permettra l'interprétation des fichiers .htaccess
  • - Pour Apache <=2.2: + Pour Apache <=2.2 (remplacez /var/www/chamilo par le chemin vers votre répertoire de Chamilo):
         <Directory />
             AllowOverride All
             Order allow,deny
             allow from all
         </Directory>
    +    <Directory /var/www/chamilo/>
    +        AllowOverride All
    +        Order allow,deny
    +        allow from all
    +    </Directory>
         
    - et pour Apache >=2.4: -
    +    et pour Apache >=2.4:
    +    
         <Directory />
             AllowOverride All
             Require all granted
         </Directory>
    +    <Directory /var/www/chamilo/>
    +        AllowOverride All
    +        Require all granted
    +    </Directory>
         

    Une fois configurée cette partie (qui est peut-être déjà mise en place par votre fournisseur d'hébergement), il suffit de redémarrer le serveur web pour activer la modification.