Projet

Général

Profil

8 » Historique » Version 3

Patrice Nadeau, 2016-01-10 12:32

1 1 Patrice Nadeau
h1. Drupal 8
2 2 Patrice Nadeau
3 3 Patrice Nadeau
h2. Installation
4 2 Patrice Nadeau
5
https://www.drupal.org/upgrade/migrate
6 1 Patrice Nadeau
7 2 Patrice Nadeau
Une nouvelle installation de Drupal 8 doit être faite et ensuite une migration vers le nouveau site seras effectué.
8
9 3 Patrice Nadeau
h3. PHP OPcache
10 2 Patrice Nadeau
11
>Module facultatif
12
13
Installation
14
<pre><code class="bash">
15
zypper install php5-opcache
16
</code></pre>
17
18
Ajouter dans le fichier _/etc/php/apache2/php.ini_
19
<pre><code class="php">
20
extension=opcache.so
21
</code></pre>
22
23
Relire la configuration Apache
24 1 Patrice Nadeau
<pre><code class="bash">
25 2 Patrice Nadeau
systemctl reload apache2.service
26
</code></pre>
27
28 3 Patrice Nadeau
h3. Drupal 8
29 2 Patrice Nadeau
30
<pre><code class="bash">
31
# Téléchargement
32
cd /srv/www/htdocs
33
wget http://ftp.drupal.org/files/projects/drupal-8.0.2.tar.gz
34
tar -xvf drupal-8.0.2.tar.gz
35
mv drupal-8.0.2 drupal2
36
# changement de la securite
37
chown wwwrun:www -R drupal2
38
</code></pre>