home_install.ctp
6.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<?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;
use Cake\Core\Configure;
use Cake\Datasource\ConnectionManager;
use Cake\Error\Debugger;
$this->layout = false;
?>
<!DOCTYPE html>
<html>
<head>
<?= $this->Html->charset() ?>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mode install</title>
<?= $this->Html->meta('icon') ?>
<?= $this->Html->css('base.css') ?>
<?= $this->Html->css('cake.css') ?>
</head>
<body class="home">
<header>
<div class="header-image" >
<?= $this->Html->image('http://cakephp.org/img/cake-logo.png') ?>
<h1>Configuring your Labinvent</h1>
</div>
</header>
<div id="content">
<div class="row">
<div class="columns large-12 ctp-warning checks", style="text-align: center">
<?php echo $this->Form->postLink("Stop Install mode", ['controller' => 'configurations', 'action'=>'installOff'], ['confirm' => __('Êtes-vous sur ?')]); ?>
</div>
<?php Debugger::checkSecurityKeys(); ?>
<div id="url-rewriting-warning" class="columns large-12 url-rewriting checks">
<p class="problem">URL rewriting is not properly configured on your server.</p>
<p>
1) <a target="_blank" href="http://book.cakephp.org/3.0/en/installation.html#url-rewriting">Help me configure it</a>
</p>
<p>
2) <a target="_blank" href="http://book.cakephp.org/3.0/en/development/configuration.html#general-configuration">I don't / can't use URL rewriting</a>
</p>
</div>
<div class="columns large-12 checks">
<h4>Environment</h4>
<?php if (version_compare(PHP_VERSION, '5.5.9', '>=')): ?>
<p class="success">Your version of PHP is 5.5.9 or higher.</p>
<?php else: ?>
<p class="problem">Your version of PHP is too low. You need PHP 5.5.9 or higher to use CakePHP.</p>
<?php endif; ?>
<?php if (extension_loaded('mbstring')): ?>
<p class="success">Your version of PHP has the mbstring extension loaded.</p>
<?php else: ?>
<p class="problem">Your version of PHP does NOT have the mbstring extension loaded.</p>;
<?php endif; ?>
<?php if (extension_loaded('openssl')): ?>
<p class="success">Your version of PHP has the openssl extension loaded.</p>
<?php elseif (extension_loaded('mcrypt')): ?>
<p class="success">Your version of PHP has the mcrypt extension loaded.</p>
<?php else: ?>
<p class="problem">Your version of PHP does NOT have the openssl or mcrypt extension loaded.</p>
<?php endif; ?>
<?php if (extension_loaded('intl')): ?>
<p class="success">Your version of PHP has the intl extension loaded.</p>
<?php else: ?>
<p class="problem">Your version of PHP does NOT have the intl extension loaded.</p>
<?php endif; ?>
<?php if (extension_loaded('gd')): ?>
<p class="success">Your version of PHP has the gd extension loaded.</p>
<?php else: ?>
<p class="problem">Your version of PHP does NOT have the gd extension loaded.</p>
<?php endif; ?>
<?php if (extension_loaded('zlib')): ?>
<p class="success">Your version of PHP has the zlib extension loaded.</p>
<?php else: ?>
<p class="problem">Your version of PHP does NOT have the zlib extension loaded.</p>
<?php endif; ?>
<hr>
<h4>Filesystem</h4>
<?php if (is_writable(TMP)): ?>
<p class="success">Your tmp directory is writable.</p>
<?php else: ?>
<p class="problem">Your tmp directory is NOT writable.</p>
<?php endif; ?>
<?php if (is_writable(LOGS)): ?>
<p class="success">Your logs directory is writable.</p>
<?php else: ?>
<p class="problem">Your logs directory is NOT writable.</p>
<?php endif; ?>
<?php $settings = Cache::config('_cake_core_'); ?>
<?php if (!empty($settings)): ?>
<p class="success">The <em><?= $settings['className'] ?>Engine</em> is being used for core caching. To change the config edit config/app.php</p>
<?php else: ?>
<p class="problem">Your cache is NOT working. Please check the settings in config/app.php</p>
<?php endif; ?>
<hr>
<h4>Database</h4>
<?php
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'];
endif;
endif;
}
?>
<?php if ($connected): ?>
<p class="success">CakePHP is able to connect to the database.</p>
<?php else: ?>
<p class="problem">CakePHP is NOT able to connect to the database.<br /><br /><?= $errorMsg ?></p>
<?php endif; ?>
<hr>
<h4>Others informations</h4>
<p>Application Name : </p>
</div>
</div>
<hr/>
</div>
</body>
</html>