Projet

Général

Profil

8 » Historique » Révision 3

Révision 2 (Patrice Nadeau, 2016-01-10 12:30) → Révision 3/59 (Patrice Nadeau, 2016-01-10 12:32)

h1. Drupal 8 

 h2. Installation h3. Mise a niveau 

 Instructions sur un « upgrade » de la version 7 à la version 8 (*en test*). 

 https://www.drupal.org/upgrade/migrate 

 Une nouvelle installation de Drupal 8 doit être faite et ensuite une migration vers le nouveau site seras effectué. 

 h3. h4. PHP OPcache 

 >Module facultatif 

 Installation 
 <pre><code class="bash"> 
 zypper install php5-opcache 
 </code></pre> 

 Ajouter dans le fichier _/etc/php/apache2/php.ini_ 
 <pre><code class="php"> 
 extension=opcache.so 
 </code></pre> 

 Relire la configuration Apache 
 <pre><code class="bash"> 
 systemctl reload apache2.service 
 </code></pre> 

 h3. h4. Drupal 8 

 <pre><code class="bash"> 
 # Téléchargement 
 cd /srv/www/htdocs 
 wget http://ftp.drupal.org/files/projects/drupal-8.0.2.tar.gz 
 tar -xvf drupal-8.0.2.tar.gz 
 mv drupal-8.0.2 drupal2 
 # changement de la securite 
 chown wwwrun:www -R drupal2 
 </code></pre>