dolibarr 19.0.3
phpinfo.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2016 Juanjo Menent <jmenent@2byte.es>
6 * Copyright (C) 2020 Tobias Sekan <tobias.sekan@startmail.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
27// Load Dolibarr environment
28require '../../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
30require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
31
32$langs->loadLangs(array("admin", "install", "errors"));
33
34if (!$user->admin) {
36}
37
38
39/*
40 * View
41 */
42
43llxHeader();
44
45$title = 'InfoPHP';
46
47if (isset($title)) {
48 print load_fiche_titre($langs->trans($title), '', 'title_setup');
49}
50
51
52// Check PHP setup is OK
53$maxphp = @ini_get('upload_max_filesize'); // In unknown
54if (preg_match('/k$/i', $maxphp)) {
55 $maxphp = preg_replace('/k$/i', '', $maxphp);
56 $maxphp = $maxphp * 1;
57}
58if (preg_match('/m$/i', $maxphp)) {
59 $maxphp = preg_replace('/m$/i', '', $maxphp);
60 $maxphp = $maxphp * 1024;
61}
62if (preg_match('/g$/i', $maxphp)) {
63 $maxphp = preg_replace('/g$/i', '', $maxphp);
64 $maxphp = $maxphp * 1024 * 1024;
65}
66if (preg_match('/t$/i', $maxphp)) {
67 $maxphp = preg_replace('/t$/i', '', $maxphp);
68 $maxphp = $maxphp * 1024 * 1024 * 1024;
69}
70$maxphp2 = @ini_get('post_max_size'); // In unknown
71if (preg_match('/k$/i', $maxphp2)) {
72 $maxphp2 = preg_replace('/k$/i', '', $maxphp2);
73 $maxphp2 = $maxphp2 * 1;
74}
75if (preg_match('/m$/i', $maxphp2)) {
76 $maxphp2 = preg_replace('/m$/i', '', $maxphp2);
77 $maxphp2 = $maxphp2 * 1024;
78}
79if (preg_match('/g$/i', $maxphp2)) {
80 $maxphp2 = preg_replace('/g$/i', '', $maxphp2);
81 $maxphp2 = $maxphp2 * 1024 * 1024;
82}
83if (preg_match('/t$/i', $maxphp2)) {
84 $maxphp2 = preg_replace('/t$/i', '', $maxphp2);
85 $maxphp2 = $maxphp2 * 1024 * 1024 * 1024;
86}
87if ($maxphp > 0 && $maxphp2 > 0 && $maxphp > $maxphp2) {
88 $langs->load("errors");
89 print info_admin($langs->trans("WarningParamUploadMaxFileSizeHigherThanPostMaxSize", @ini_get('upload_max_filesize'), @ini_get('post_max_size')), 0, 0, 0, 'warning');
90 print '<br>';
91}
92
93
94print '<table class="noborder centpercent">';
95print '<tr class="liste_titre"><td class="titlefield">'.$langs->trans("Parameter").'</td><td>'.$langs->trans("Value").'</td></tr>';
96
97$ErrorPicturePath = "../../theme/eldy/img/error.png";
98$WarningPicturePath = "../../theme/eldy/img/warning.png";
99$OkayPicturePath = "../../theme/eldy/img/tick.png";
100
101print '<tr><td>'.$langs->trans("Version").'</td><td>';
102
103$arrayphpminversionerror = array(5, 5, 0);
104$arrayphpminversionwarning = array(5, 6, 0);
105
106if (versioncompare(versionphparray(), $arrayphpminversionerror) < 0) {
107 print '<img src="'.$ErrorPicturePath.'" alt="Error"> '.$langs->trans("ErrorPHPVersionTooLow", versiontostring($arrayphpminversionerror));
108} elseif (versioncompare(versionphparray(), $arrayphpminversionwarning) < 0) {
109 print '<img src="'.$WarningPicturePath.'" alt="Warning"> '.$langs->trans("ErrorPHPVersionTooLow", versiontostring($arrayphpminversionwarning));
110} else {
111 print '<img src="'.$OkayPicturePath.'" alt="Ok"> '.versiontostring(versionphparray());
112}
113
114print '</td></tr>';
115print '<tr><td>GET and POST support</td><td>';
116
117if (!isset($_GET["testget"]) && !isset($_POST["testpost"]) && !isset($_GET["mainmenu"])) { // We must keep $_GET and $_POST here
118 print '<img src="'.$WarningPicturePath.'" alt="Warning"> '.$langs->trans("PHPSupportPOSTGETKo");
119 print ' (<a href="'.$_SERVER["PHP_SELF"].'?testget=ok">'.$langs->trans("Recheck").'</a>)';
120} else {
121 print '<img src="'.$OkayPicturePath.'" alt="Ok"> '.$langs->trans("PHPSupportPOSTGETOk");
122}
123
124print '</td></tr>';
125print '<tr><td>Sessions support</td><td>';
126if (!function_exists("session_id")) {
127 print '<img src="'.$ErrorPicturePath.'" alt="Error"> '.$langs->trans("ErrorPHPDoesNotSupportSessions");
128} else {
129 print '<img src="'.$OkayPicturePath.'" alt="Ok"> '.$langs->trans("PHPSupportSessions");
130}
131print '</td></tr>';
132
133print '<tr><td>UTF-8 support</td><td>';
134if (!function_exists("utf8_encode")) {
135 print '<img src="'.$WarningPicturePath.'" alt="Warning"> '.$langs->trans("ErrorPHPDoesNotSupport", "UTF8");
136} else {
137 print '<img src="'.$OkayPicturePath.'" alt="Ok"> '.$langs->trans("PHPSupport", "UTF8");
138}
139print '</td></tr>';
140
141print '</table>';
142
143print '<br>';
144
145$activatedExtensions = array();
146$loadedExtensions = array_map('strtolower', get_loaded_extensions(false));
147
148print '<table class="noborder centpercent">';
149print '<tr class="liste_titre">';
150print '<td class="titlefield">'.$langs->trans("Extension").'</td>';
151print '<td>'.$langs->trans("Test").'</td>';
152print '</tr>';
153
154$functions = ["mb_check_encoding"];
155$name = "MBString";
156
157print "<tr>";
158print "<td>".$name."</td>";
159print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
160print "</tr>";
161
162$functions = ["json_decode"];
163$name = "JSON";
164
165print "<tr>";
166print "<td>".$name."</td>";
167print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
168print "</tr>";
169
170$functions = ["imagecreate"];
171$name = "GD";
172
173print "<tr>";
174print "<td>".$name."</td>";
175print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
176print "</tr>";
177
178$functions = ["curl_init"];
179$name = "Curl";
180
181print "<tr>";
182print "<td>".$name."</td>";
183print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
184print "</tr>";
185
186$functions = ["easter_date"];
187$name = "Calendar";
188
189print "<tr>";
190print "<td>".$name."</td>";
191print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
192print "</tr>";
193
194$functions = ["simplexml_load_string"];
195$name = "Xml";
196
197print "<tr>";
198print "<td>".$name."</td>";
199print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
200print "</tr>";
201
202if (empty($_SERVER["SERVER_ADMIN"]) || $_SERVER["SERVER_ADMIN"] != 'doliwamp@localhost') {
203 $functions = ["locale_get_primary_language", "locale_get_region"];
204 $name = "Intl";
205
206 print "<tr>";
207 print "<td>".$name."</td>";
208 print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
209 print "</tr>";
210}
211
212$functions = ["imap_open"];
213$name = "IMAP";
214
215print "<tr>";
216print "<td>".$name."</td>";
217print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
218print "</tr>";
219
220$functions = array();
221$name = "zip";
222
223print "<tr>";
224print "<td>".$name."</td>";
225print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
226print "</tr>";
227
228$functions = array();
229$name = "xDebug";
230
231print "<tr>";
232print "<td>".$name."</td>";
233print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
234print "</tr>";
235
236print '</table>';
237
238print '<br>';
239
240// Get php_info array
241$phparray = phpinfo_array();
242foreach ($phparray as $key => $value) {
243 print '<div class="div-table-responsive-no-min">';
244 print '<table class="noborder">';
245 print '<tr class="liste_titre">';
246 print '<td class="titlefield">'.$key.'</td>';
247 print '<td colspan="2">'.$langs->trans("Value").'</td>';
248 print "</tr>\n";
249
250 //var_dump($value);
251 foreach ($value as $keyparam => $keyvalue) {
252 if (!is_array($keyvalue)) {
253 $keytoshow = $keyparam;
254 $valtoshow = $keyvalue;
255
256 // Hide value of session cookies
257 if (in_array($keyparam, array('HTTP_COOKIE', 'Cookie', "\$_SERVER['HTTP_COOKIE']", 'Authorization'))) {
258 $valtoshow = '<span class="opacitymedium">'.$langs->trans("Hidden").'</span>';
259 }
260 if (preg_match('/'.preg_quote('$_COOKIE[\'DOLSESSID_', '/').'/i', $keyparam)) {
261 $keytoshow = $keyparam;
262 $valtoshow = '<span class="opacitymedium">'.$langs->trans("Hidden").'</span>';
263 }
264 if (preg_match('/'.preg_quote('$_SERVER[\'PHP_AUTH_PW', '/').'/i', $keyparam)) {
265 $keytoshow = $keyparam;
266 $valtoshow = '<span class="opacitymedium">'.$langs->trans("Hidden").'</span>';
267 }
268
269 print '<tr class="oddeven">';
270 print '<td>'.$keytoshow.'</td>';
271 if ($keyparam == 'X-ChromePhp-Data') {
272 $valtoshow = dol_trunc($keyvalue, 80);
273 }
274 print '<td colspan="2" class="wordbreak">';
275 if ($keyparam == 'Path') {
276 $valtoshow = implode('; ', explode(';', trim($valtoshow)));
277 }
278 if ($keyparam == 'PATH') {
279 $valtoshow = implode('; ', explode(';', trim($valtoshow)));
280 }
281 if ($keyparam == '_SERVER["PATH"]') {
282 $valtoshow = implode('; ', explode(';', trim($valtoshow)));
283 }
284 print $valtoshow;
285 print '</td>';
286 print '</tr>';
287 } else {
288 print '<tr class="oddeven">';
289 print '<td class="wordbreak">'.$keyparam.'</td>';
290 $i = 0;
291 foreach ($keyvalue as $keyparam2 => $keyvalue2) {
292 print '<td>';
293 $valtoshow = $keyvalue2;
294 if ($keyparam == 'disable_functions') {
295 $valtoshow = implode(', ', explode(',', trim($valtoshow)));
296 }
297 //print $keyparam;
298 print $valtoshow;
299 $i++;
300 print '</td>';
301 }
302 print '</tr>';
303 }
304 }
305 print '</table>';
306 print '</div>';
307 print '<br>';
308}
309
310// End of page
311llxFooter();
312$db->close();
313
314
324function getResultColumn($name, array $activated, array $loaded, array $functions)
325{
326 global $langs;
327
328 $result = true;
329
330 //$result = $result && in_array(strtolower($name), $activated);
331 $result = $result && in_array(strtolower($name), $loaded);
332
333 foreach ($functions as $function) {
334 $result = $result && function_exists($function);
335 }
336
337 $html = "<td>";
338 if ($result) {
339 if (strtolower($name) == 'xdebug') {
340 $html .= img_warning($langs->trans("ModuleActivated", "xdebug"));
341 } else {
342 $html .= img_picto($langs->trans("Ok"), 'tick');
343 }
344 if (in_array(strtolower($name), $loaded)) {
345 $html .= ' '.$langs->trans("Loaded").' - ';
346 } else {
347 //$html .= ' '.$langs->trans("NotLoaded").' - ';
348 }
349 if (strtolower($name) == 'xdebug') {
350 $html .= ' '.$langs->trans("ModuleActivated", "xdebug");
351 $html .= ' - '.$langs->trans("ModuleActivatedMayExposeInformation");
352 } else {
353 $html .= ' <span class="opacitymedium">'.$langs->trans("PHPSupport", $name).'</span>';
354 }
355 } else {
356 if (strtolower($name) == 'xdebug') {
357 $html .= yn(0).' - ';
358 } else {
359 $html .= img_warning($langs->trans("ModuleActivated", "xdebug"));
360 }
361 if (in_array(strtolower($name), $loaded)) {
362 $html .= ' '.$langs->trans("Loaded").' - ';
363 } else {
364 //$html .= ' '.$langs->trans("NotLoaded").' - ';
365 }
366 $html .= ' '.$langs->trans("ErrorPHPDoesNotSupport", $name);
367 }
368 $html .= "</td>";
369
370 return $html;
371}
getResultColumn($name, array $activated, array $loaded, array $functions)
Return a result column with a translated result text.
Definition phpinfo.php:324
versiontostring($versionarray)
Renvoi une version en chaine depuis une version en tableau.
Definition admin.lib.php:37
versionphparray()
Return version PHP.
versioncompare($versionarray1, $versionarray2)
Compare 2 versions (stored into 2 arrays).
Definition admin.lib.php:67
phpinfo_array()
Return the php_info into an array.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
yn($yesno, $case=1, $color=0)
Return yes or no in current language.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='')
Show information for admin users or standard users.
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.