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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Setup\Model;
use Composer\Package\Version\VersionParser;
use Magento\Framework\Composer\ComposerInformation;
use Magento\Framework\Convert\DataSize;
use Magento\Setup\Controller\ResponseTypeInterface;
/**
* Checks for PHP readiness. It is used by both Cron and Setup wizard.
*/
class PhpReadinessCheck
{
/**
* @var ComposerInformation
*/
private $composerInformation;
/**
* @var PhpInformation
*/
private $phpInformation;
/**
* @var VersionParser
*/
private $versionParser;
/**
* Data size converter
*
* @var DataSize
*/
protected $dataSize;
/**
* Constructor
*
* @param ComposerInformation $composerInformation
* @param PhpInformation $phpInformation
* @param VersionParser $versionParser
* @param DataSize $dataSize
*/
public function __construct(
ComposerInformation $composerInformation,
PhpInformation $phpInformation,
VersionParser $versionParser,
DataSize $dataSize
) {
$this->composerInformation = $composerInformation;
$this->phpInformation = $phpInformation;
$this->versionParser = $versionParser;
$this->dataSize = $dataSize;
}
/**
* Checks PHP version
*
* @return array
*/
public function checkPhpVersion()
{
try {
$requiredVersion = $this->composerInformation->getRequiredPhpVersion();
} catch (\Exception $e) {
return [
'responseType' => ResponseTypeInterface::RESPONSE_TYPE_ERROR,
'data' => [
'error' => 'phpVersionError',
'message' => 'Cannot determine required PHP version: ' . $e->getMessage()
],
];
}
$multipleConstraints = $this->versionParser->parseConstraints($requiredVersion);
$normalizedPhpVersion = $this->getNormalizedCurrentPhpVersion(PHP_VERSION);
$currentPhpVersion = $this->versionParser->parseConstraints($normalizedPhpVersion);
$responseType = ResponseTypeInterface::RESPONSE_TYPE_SUCCESS;
if (!$multipleConstraints->matches($currentPhpVersion)) {
$responseType = ResponseTypeInterface::RESPONSE_TYPE_ERROR;
}
return [
'responseType' => $responseType,
'data' => [
'required' => $requiredVersion,
'current' => PHP_VERSION,
],
];
}
/**
* Checks PHP settings
*
* @return array
*/
public function checkPhpSettings()
{
$responseType = ResponseTypeInterface::RESPONSE_TYPE_SUCCESS;
$settings = array_merge(
$this->checkXDebugNestedLevel(),
$this->checkPopulateRawPostSetting(),
$this->checkFunctionsExistence()
);
foreach ($settings as $setting) {
if ($setting['error']) {
$responseType = ResponseTypeInterface::RESPONSE_TYPE_ERROR;
}
}
return [
'responseType' => $responseType,
'data' => $settings
];
}
/**
* Checks PHP settings for cron
*
* @return array
*/
public function checkPhpCronSettings()
{
$responseType = ResponseTypeInterface::RESPONSE_TYPE_SUCCESS;
$settings = array_merge(
$this->checkXDebugNestedLevel(),
$this->checkMemoryLimit()
);
foreach ($settings as $setting) {
if ($setting['error']) {
$responseType = ResponseTypeInterface::RESPONSE_TYPE_ERROR;
}
}
return [
'responseType' => $responseType,
'data' => $settings
];
}
/**
* Checks PHP extensions
*
* @return array
*/
public function checkPhpExtensions()
{
try {
$required = $this->composerInformation->getRequiredExtensions();
$current = $this->phpInformation->getCurrent();
} catch (\Exception $e) {
return [
'responseType' => ResponseTypeInterface::RESPONSE_TYPE_ERROR,
'data' => [
'error' => 'phpExtensionError',
'message' => 'Cannot determine required PHP extensions: ' . $e->getMessage()
],
];
}
$responseType = ResponseTypeInterface::RESPONSE_TYPE_SUCCESS;
$missing = array_values(array_diff($required, $current));
if ($missing) {
$responseType = ResponseTypeInterface::RESPONSE_TYPE_ERROR;
}
return [
'responseType' => $responseType,
'data' => [
'required' => $required,
'missing' => $missing,
],
];
}
/**
* Checks php memory limit
*
* @return array
*/
public function checkMemoryLimit()
{
$data = [];
$warning = false;
$error = false;
$message = '';
$minimumRequiredMemoryLimit = '756M';
$recommendedForUpgradeMemoryLimit = '2G';
$currentMemoryLimit = ini_get('memory_limit');
$currentMemoryInteger = (int)$currentMemoryLimit;
if ($currentMemoryInteger > 0
&& $this->dataSize->convertSizeToBytes($currentMemoryLimit)
< $this->dataSize->convertSizeToBytes($minimumRequiredMemoryLimit)
) {
$error = true;
$message = sprintf(
'Your current PHP memory limit is %s.
Magento 2 requires it to be set to %s or more.
As a user with root privileges, edit your php.ini file to increase memory_limit.
(The command php --ini tells you where it is located.)
After that, restart your web server and try again.',
$currentMemoryLimit,
$minimumRequiredMemoryLimit
);
} elseif ($currentMemoryInteger > 0
&& $this->dataSize->convertSizeToBytes($currentMemoryLimit)
< $this->dataSize->convertSizeToBytes($recommendedForUpgradeMemoryLimit)
) {
$warning = true;
$message = sprintf(
'Your current PHP memory limit is %s.
We recommend it to be set to %s or more to use Setup Wizard.
As a user with root privileges, edit your php.ini file to increase memory_limit.
(The command php --ini tells you where it is located.)
After that, restart your web server and try again.',
$currentMemoryLimit,
$recommendedForUpgradeMemoryLimit
);
}
$data['memory_limit'] = [
'message' => $message,
'error' => $error,
'warning' => $warning,
];
return $data;
}
/**
* Checks if xdebug.max_nesting_level is set 200 or more
*
* @return array
*/
private function checkXDebugNestedLevel()
{
$data = [];
$error = false;
$currentExtensions = $this->phpInformation->getCurrent();
if (in_array('xdebug', $currentExtensions)) {
$currentXDebugNestingLevel = (int)ini_get('xdebug.max_nesting_level');
$minimumRequiredXDebugNestedLevel = $this->phpInformation->getRequiredMinimumXDebugNestedLevel();
if ($minimumRequiredXDebugNestedLevel > $currentXDebugNestingLevel) {
$error = true;
}
$message = sprintf(
'Your current setting of xdebug.max_nesting_level=%d.
Magento 2 requires it to be set to %d or more.
Edit your config, restart web server, and try again.',
$currentXDebugNestingLevel,
$minimumRequiredXDebugNestedLevel
);
$data['xdebug_max_nesting_level'] = [
'message' => $message,
'error' => $error
];
}
return $data;
}
/**
* Checks if PHP version >= 5.6.0 and always_populate_raw_post_data is set to -1
*
* Beginning PHP 7.0, support for 'always_populate_raw_post_data' is going to removed.
* And beginning PHP 5.6, a deprecated message is displayed if 'always_populate_raw_post_data'
* is set to a value other than -1.
*
* @return array
*/
private function checkPopulateRawPostSetting()
{
// HHVM and PHP 7does not support 'always_populate_raw_post_data' to be set to -1
if (version_compare(PHP_VERSION, '7.0.0-beta') >= 0 || defined('HHVM_VERSION')) {
return [];
}
$data = [];
$error = false;
$iniSetting = (int)ini_get('always_populate_raw_post_data');
$checkVersionConstraint = $this->versionParser->parseConstraints('~5.6.0');
$normalizedPhpVersion = $this->getNormalizedCurrentPhpVersion(PHP_VERSION);
$currentVersion = $this->versionParser->parseConstraints($normalizedPhpVersion);
if ($checkVersionConstraint->matches($currentVersion) && $iniSetting !== -1) {
$error = true;
}
$message = sprintf(
'Your PHP Version is %s, but always_populate_raw_post_data = %d.
$HTTP_RAW_POST_DATA is deprecated from PHP 5.6 onwards and will be removed in PHP 7.0.
This will stop the installer from running.
Please open your php.ini file and set always_populate_raw_post_data to -1.
If you need more help please call your hosting provider.',
PHP_VERSION,
(int)ini_get('always_populate_raw_post_data')
);
$data['always_populate_raw_post_data'] = [
'message' => $message,
'helpUrl' => 'http://php.net/manual/en/ini.core.php#ini.always-populate-settings-data',
'error' => $error
];
return $data;
}
/**
* Check whether all special functions exists
*
* @return array
*/
private function checkFunctionsExistence()
{
$data = [];
$requiredFunctions = [
[
'name' => 'imagecreatefromjpeg',
'message' => 'You must have installed GD library with --with-jpeg-dir=DIR option.',
'helpUrl' => 'http://php.net/manual/en/image.installation.php',
],
];
foreach ($requiredFunctions as $function) {
$data['missed_function_' . $function['name']] = [
'message' => $function['message'],
'helpUrl' => $function['helpUrl'],
'error' => !function_exists($function['name']),
];
}
return $data;
}
/**
* Normalize PHP Version
*
* @param string $version
* @return string
*/
private function getNormalizedCurrentPhpVersion($version)
{
try {
$normalizedPhpVersion = $this->versionParser->normalize($version);
} catch (\UnexpectedValueException $e) {
$prettyVersion = preg_replace('#^([^~+-]+).*$#', '$1', $version);
$normalizedPhpVersion = $this->versionParser->normalize($prettyVersion);
}
return $normalizedPhpVersion;
}
}