Projet

Général

Profil

8 » Historique » Version 7

Patrice Nadeau, 2016-01-11 19:50

1 1 Patrice Nadeau
h1. Drupal 8
2 2 Patrice Nadeau
3 4 Patrice Nadeau
> openSUSE Leap 42.1
4
5 7 Patrice Nadeau
h2. Pre-requis
6
7
h3. MySQL/MariaDB
8
9
h3. Apache
10
11 5 Patrice Nadeau
_/etc/apache2/vhosts.d/vhost.conf_
12
<pre><code class="bash">
13
<VirtualHost *:80>
14
#    Servername www.toto.com
15
    DocumentRoot /srv/www/htdocs/drupal2
16
    ServerAdmin toto@toto.com
17
    <Directory "/srv/www/htdocs/drupal2">
18
        Options Indexes ExecCGI FollowSymLinks
19
        AllowOverride All
20
        Require all granted
21
    </Directory>
22
</VirtualHost>
23
24
</code></pre>
25
26 3 Patrice Nadeau
h2. Installation
27 2 Patrice Nadeau
28
https://www.drupal.org/upgrade/migrate
29 1 Patrice Nadeau
30 2 Patrice Nadeau
Une nouvelle installation de Drupal 8 doit être faite et ensuite une migration vers le nouveau site seras effectué.
31
32 3 Patrice Nadeau
h3. PHP OPcache
33 2 Patrice Nadeau
34
>Module facultatif
35
36
Installation
37
<pre><code class="bash">
38
zypper install php5-opcache
39
</code></pre>
40
41
Ajouter dans le fichier _/etc/php/apache2/php.ini_
42
<pre><code class="php">
43
extension=opcache.so
44
</code></pre>
45
46
Relire la configuration Apache
47 1 Patrice Nadeau
<pre><code class="bash">
48 2 Patrice Nadeau
systemctl reload apache2.service
49
</code></pre>
50
51 3 Patrice Nadeau
h3. Drupal 8
52 2 Patrice Nadeau
53 4 Patrice Nadeau
h4. Sur le serveur
54
55 2 Patrice Nadeau
<pre><code class="bash">
56
# Téléchargement
57
cd /srv/www/htdocs
58
wget http://ftp.drupal.org/files/projects/drupal-8.0.2.tar.gz
59
tar -xvf drupal-8.0.2.tar.gz
60
mv drupal-8.0.2 drupal2
61
# changement de la securite
62
chown wwwrun:www -R drupal2
63
</code></pre>
64 4 Patrice Nadeau
65 6 Patrice Nadeau
66 4 Patrice Nadeau
67
h4. A partrir d'un navigateur internet