Blame view

src/Template/Pages/home_install.ctp 7.48 KB
6f27e48f   Alexandre   Ajout "outils" da...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/**
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
 *
 * Licensed under The MIT License
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
 * @link          http://cakephp.org CakePHP(tm) Project
 * @since         0.10.0
 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
 */
use Cake\Cache\Cache;
6f27e48f   Alexandre   Ajout "outils" da...
16
17
use Cake\Datasource\ConnectionManager;
use Cake\Error\Debugger;
6f27e48f   Alexandre   Ajout "outils" da...
18
19
20

$this->layout = false;

6f27e48f   Alexandre   Ajout "outils" da...
21
22
23
24
25
?>
<!DOCTYPE html>
<html>
<head>
    <?= $this->Html->charset() ?>
63c3cb16   epallier   Nombreux petits b...
26
27
28
    <meta name="viewport"
	content="width=device-width, initial-scale=1.0">
<title>Mode install</title>
6f27e48f   Alexandre   Ajout "outils" da...
29
30
31
32
33
    <?= $this->Html->meta('icon') ?>
    <?= $this->Html->css('base.css') ?>
    <?= $this->Html->css('cake.css') ?>
</head>
<body class="home">
63c3cb16   epallier   Nombreux petits b...
34
35
	<header>
		<div class="header-image">
6f27e48f   Alexandre   Ajout "outils" da...
36
            <?= $this->Html->image('http://cakephp.org/img/cake-logo.png') ?>
3038d1f7   Alexandre   Version: 2.4.4.1
37
            <h1>Configurer votre Labinvent</h1>
63c3cb16   epallier   Nombreux petits b...
38
39
40
41
42
43
		</div>
	</header>
	<div id="content">
		<div class="row">
			<div class="columns large-12 ctp-warning checks"
				style="text-align: center">
3038d1f7   Alexandre   Version: 2.4.4.1
44
              <?php echo $this->Form->postLink("Stopper le mode installation", ['controller' => 'configurations', 'action'=>'installOff'], ['confirm' => __('Êtes-vous sur ?')]); ?>
6f27e48f   Alexandre   Ajout "outils" da...
45
46
            </div>
            <?php Debugger::checkSecurityKeys(); ?>
63c3cb16   epallier   Nombreux petits b...
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
            <div id="url-rewriting-warning"
				class="columns large-12 url-rewriting checks">
				<p class="problem">L'URL rewriting n'est pas configurer correctement
					sur votre serveur.</p>
				<p>
					1) <a target="_blank"
						href="http://book.cakephp.org/3.0/en/installation.html#url-rewriting">Aide
						pour le configurer</a>
				</p>
				<p>
					2) <a target="_blank"
						href="http://book.cakephp.org/3.0/en/development/configuration.html#general-configuration">Je
						ne veut/peut pas utilisé l'URL rewriting</a>
				</p>
			</div>
6f27e48f   Alexandre   Ajout "outils" da...
62

63c3cb16   epallier   Nombreux petits b...
63
64
			<div class="columns large-12 checks">
				<h4>Environnement</h4>
6f27e48f   Alexandre   Ajout "outils" da...
65
                <?php if (version_compare(PHP_VERSION, '5.5.9', '>=')): ?>
63c3cb16   epallier   Nombreux petits b...
66
67
                    <p class="success">Votre version de PHP est la 5.5.9
					ou plus.</p>
6f27e48f   Alexandre   Ajout "outils" da...
68
                <?php else: ?>
63c3cb16   epallier   Nombreux petits b...
69
70
71
                    <p class="problem">Votre version de PHP est trop
					ancienne. Vous avez besoin de la version 5.5.9 ou plus pour
					utiliser Labinvent.</p>
6f27e48f   Alexandre   Ajout "outils" da...
72
73
74
                <?php endif; ?>

                <?php if (extension_loaded('mbstring')): ?>
63c3cb16   epallier   Nombreux petits b...
75
76
                    <p class="success">L'extension mbstring de PHP a été
					correctement chargé.</p>
6f27e48f   Alexandre   Ajout "outils" da...
77
                <?php else: ?>
63c3cb16   epallier   Nombreux petits b...
78
79
                    <p class="problem">L'extension mbstring de PHP n'a
					pas été chargé.</p>;
6f27e48f   Alexandre   Ajout "outils" da...
80
81
82
                <?php endif; ?>

                <?php if (extension_loaded('openssl')): ?>
63c3cb16   epallier   Nombreux petits b...
83
84
                    <p class="success">L'extension openssl de PHP a été
					correctement chargé.</p>
6f27e48f   Alexandre   Ajout "outils" da...
85
                <?php elseif (extension_loaded('mcrypt')): ?>
63c3cb16   epallier   Nombreux petits b...
86
87
                    <p class="success">L'extension mcrypt de PHP a été
					correctement chargé.</p>
6f27e48f   Alexandre   Ajout "outils" da...
88
                <?php else: ?>
63c3cb16   epallier   Nombreux petits b...
89
90
                    <p class="problem">L'extension openssl ou mcrypt de
					PHP n'a pas été chargé.</p>
6f27e48f   Alexandre   Ajout "outils" da...
91
92
93
                <?php endif; ?>

                <?php if (extension_loaded('intl')): ?>
63c3cb16   epallier   Nombreux petits b...
94
95
                    <p class="success">L'extension intl de PHP a été
					correctement chargé.</p>
6f27e48f   Alexandre   Ajout "outils" da...
96
                <?php else: ?>
63c3cb16   epallier   Nombreux petits b...
97
98
                    <p class="problem">L'extension intl de PHP n'a pas
					été chargé.</p>
6f27e48f   Alexandre   Ajout "outils" da...
99
                <?php endif; ?>
4260780b   Alexandre   Migration vue, co...
100
101
                
                <?php if (extension_loaded('gd')): ?>
63c3cb16   epallier   Nombreux petits b...
102
103
                    <p class="success">L'extension gd de PHP a été
					correctement chargé.</p>
4260780b   Alexandre   Migration vue, co...
104
                <?php else: ?>
63c3cb16   epallier   Nombreux petits b...
105
106
                    <p class="problem">L'extension gd de PHP n'a pas été
					chargé.</p>
4260780b   Alexandre   Migration vue, co...
107
108
109
                <?php endif; ?>
                
                <?php if (extension_loaded('zlib')): ?>
63c3cb16   epallier   Nombreux petits b...
110
111
                    <p class="success">L'extension zlib de PHP a été
					correctement chargé.</p>
4260780b   Alexandre   Migration vue, co...
112
                <?php else: ?>
63c3cb16   epallier   Nombreux petits b...
113
114
                    <p class="problem">L'extension zlib de PHP n'a pas
					été chargé.</p>
4260780b   Alexandre   Migration vue, co...
115
                <?php endif; ?>
d06fca7b   Alexandre   Version: 2.4.2.19
116
117
                
                <?php if (extension_loaded('xml')): ?>
63c3cb16   epallier   Nombreux petits b...
118
119
                    <p class="success">L'extension xml de PHP a été
					correctement chargé.</p>
d06fca7b   Alexandre   Version: 2.4.2.19
120
                <?php else: ?>
63c3cb16   epallier   Nombreux petits b...
121
122
                    <p class="problem">L'extension xml de PHP n'a pas
					été chargé.</p>
d06fca7b   Alexandre   Version: 2.4.2.19
123
                <?php endif; ?>
6f27e48f   Alexandre   Ajout "outils" da...
124
125
                <hr>

63c3cb16   epallier   Nombreux petits b...
126
				<h4>Fichiers systèmes</h4>
6f27e48f   Alexandre   Ajout "outils" da...
127
                <?php if (is_writable(TMP)): ?>
63c3cb16   epallier   Nombreux petits b...
128
129
                    <p class="success">Votre répertoire tmp est
					accessible en écriture.</p>
6f27e48f   Alexandre   Ajout "outils" da...
130
                <?php else: ?>
63c3cb16   epallier   Nombreux petits b...
131
132
                    <p class="problem">Votre répertoire tmp n'est pas
					accessible en écriture.</p>
6f27e48f   Alexandre   Ajout "outils" da...
133
134
135
                <?php endif; ?>

                <?php if (is_writable(LOGS)): ?>
63c3cb16   epallier   Nombreux petits b...
136
137
                    <p class="success">Votre répertoire logs est
					accessible en écriture.</p>
6f27e48f   Alexandre   Ajout "outils" da...
138
                <?php else: ?>
63c3cb16   epallier   Nombreux petits b...
139
140
                    <p class="problem">Votre répertoire logs n'est pas
					accessible en écriture.</p>
6f27e48f   Alexandre   Ajout "outils" da...
141
142
143
144
                <?php endif; ?>

                <?php $settings = Cache::config('_cake_core_'); ?>
                <?php if (!empty($settings)): ?>
63c3cb16   epallier   Nombreux petits b...
145
146
147
148
149
                    <p class="success">
					Le <em><?= $settings['className'] ?> Engine</em> est utilisé pour
					la mise en cache de la base de données. Pour modifier la config
					modifier config/app.php.
				</p>
6f27e48f   Alexandre   Ajout "outils" da...
150
                <?php else: ?>
63c3cb16   epallier   Nombreux petits b...
151
152
                    <p class="problem">Votre cache ne fonctionne pas.
					S'il vous plaît vérifier les paramètres dans config/app.php.</p>
6f27e48f   Alexandre   Ajout "outils" da...
153
154
155
                <?php endif; ?>

                <hr>
63c3cb16   epallier   Nombreux petits b...
156
				<h4>Base de données</h4>
6f27e48f   Alexandre   Ajout "outils" da...
157
                <?php
63c3cb16   epallier   Nombreux petits b...
158
159
160
161
162
163
164
165
166
167
                try {
                    $connection = ConnectionManager::get('default');
                    $connected = $connection->connect();
                } catch (Exception $connectionError) {
                    $connected = false;
                    $errorMsg = $connectionError->getMessage();
                    if (method_exists($connectionError, 'getAttributes')) :
                        $attributes = $connectionError->getAttributes();
                        if (isset($errorMsg['message'])) :
                            $errorMsg .= '<br />' . $attributes['message'];
6f27e48f   Alexandre   Ajout "outils" da...
168
169
                            endif;
                        endif;
63c3cb16   epallier   Nombreux petits b...
170
171
172
                        
                    
                }
6f27e48f   Alexandre   Ajout "outils" da...
173
174
                ?>
                <?php if ($connected): ?>
63c3cb16   epallier   Nombreux petits b...
175
176
                    <p class="success">Labinvent est correctement
					connecté à la base de données.</p>
6f27e48f   Alexandre   Ajout "outils" da...
177
                <?php else: ?>
63c3cb16   epallier   Nombreux petits b...
178
179
180
                    <p class="problem">
					Labinvent n'est pas connecté à la base de données.<br />
					<br /><?= $errorMsg ?></p>
6f27e48f   Alexandre   Ajout "outils" da...
181
                <?php endif; ?>
5e70ff0b   Alexandre   Personalisation h...
182
                <hr>
db93d5c9   Alexandre   Version: 2.4.1.0
183
                <?php if ($connected): ?>
3038d1f7   Alexandre   Version: 2.4.4.1
184
185
                <h4>Configuration de l'application</h4>
					<?= $this->Html->link('Editer la configuration générale', ['controller' => 'configurations', 'action' => 'edit', 1]); ?>
db93d5c9   Alexandre   Version: 2.4.1.0
186
					<br>
63c3cb16   epallier   Nombreux petits b...
187
				<hr>
db93d5c9   Alexandre   Version: 2.4.1.0
188
                <?php endif; ?>
3038d1f7   Alexandre   Version: 2.4.4.1
189
190
                <h4>Autres informations</h4>
      			<?= $this->Html->link('Voir les informations du système', ['controller'=>'pages', 'action'=>'infos']); ?>
6f27e48f   Alexandre   Ajout "outils" da...
191
            </div>
63c3cb16   epallier   Nombreux petits b...
192
		</div>
6f27e48f   Alexandre   Ajout "outils" da...
193

63c3cb16   epallier   Nombreux petits b...
194
		<hr />
6f27e48f   Alexandre   Ajout "outils" da...
195

63c3cb16   epallier   Nombreux petits b...
196
	</div>
6f27e48f   Alexandre   Ajout "outils" da...
197
198
</body>
</html>