dolibarr  17.0.4
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
28 require '../../main.inc.php';
29 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
30 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
31 
32 $langs->loadLangs(array("admin", "install", "errors"));
33 
34 if (!$user->admin) {
36 }
37 
38 
39 /*
40  * View
41  */
42 
43 llxHeader();
44 
45 $title = 'InfoPHP';
46 
47 if (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
54 if (preg_match('/k$/i', $maxphp)) {
55  $maxphp = preg_replace('/k$/i', '', $maxphp);
56  $maxphp = $maxphp * 1;
57 }
58 if (preg_match('/m$/i', $maxphp)) {
59  $maxphp = preg_replace('/m$/i', '', $maxphp);
60  $maxphp = $maxphp * 1024;
61 }
62 if (preg_match('/g$/i', $maxphp)) {
63  $maxphp = preg_replace('/g$/i', '', $maxphp);
64  $maxphp = $maxphp * 1024 * 1024;
65 }
66 if (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
71 if (preg_match('/k$/i', $maxphp2)) {
72  $maxphp2 = preg_replace('/k$/i', '', $maxphp2);
73  $maxphp2 = $maxphp2 * 1;
74 }
75 if (preg_match('/m$/i', $maxphp2)) {
76  $maxphp2 = preg_replace('/m$/i', '', $maxphp2);
77  $maxphp2 = $maxphp2 * 1024;
78 }
79 if (preg_match('/g$/i', $maxphp2)) {
80  $maxphp2 = preg_replace('/g$/i', '', $maxphp2);
81  $maxphp2 = $maxphp2 * 1024 * 1024;
82 }
83 if (preg_match('/t$/i', $maxphp2)) {
84  $maxphp2 = preg_replace('/t$/i', '', $maxphp2);
85  $maxphp2 = $maxphp2 * 1024 * 1024 * 1024;
86 }
87 if ($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 
94 print '<table class="noborder centpercent">';
95 print '<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 
101 print '<tr><td>'.$langs->trans("Version").'</td><td>';
102 
103 $arrayphpminversionerror = array(5, 5, 0);
104 $arrayphpminversionwarning = array(5, 6, 0);
105 
106 if (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 
114 print '</td></tr>';
115 print '<tr><td>GET and POST support</td><td>';
116 
117 if (!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 
124 print '</td></tr>';
125 print '<tr><td>Sessions support</td><td>';
126 if (!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 }
131 print '</td></tr>';
132 
133 print '<tr><td>UTF-8 support</td><td>';
134 if (!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 }
139 print '</td></tr>';
140 
141 print '</table>';
142 
143 print '<br>';
144 
145 $activatedExtensions = array();
146 $loadedExtensions = array_map('strtolower', get_loaded_extensions(false));
147 
148 print '<table class="noborder centpercent">';
149 print '<tr class="liste_titre">';
150 print '<td class="titlefield">'.$langs->trans("Extension").'</td>';
151 print '<td>'.$langs->trans("Test").'</td>';
152 print '</tr>';
153 
154 $functions = ["mb_check_encoding"];
155 $name = "MBString";
156 
157 print "<tr>";
158 print "<td>".$name."</td>";
159 print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
160 print "</tr>";
161 
162 $functions = ["json_decode"];
163 $name = "JSON";
164 
165 print "<tr>";
166 print "<td>".$name."</td>";
167 print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
168 print "</tr>";
169 
170 $functions = ["imagecreate"];
171 $name = "GD";
172 
173 print "<tr>";
174 print "<td>".$name."</td>";
175 print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
176 print "</tr>";
177 
178 $functions = ["curl_init"];
179 $name = "Curl";
180 
181 print "<tr>";
182 print "<td>".$name."</td>";
183 print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
184 print "</tr>";
185 
186 $functions = ["easter_date"];
187 $name = "Calendar";
188 
189 print "<tr>";
190 print "<td>".$name."</td>";
191 print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
192 print "</tr>";
193 
194 $functions = ["simplexml_load_string"];
195 $name = "Xml";
196 
197 print "<tr>";
198 print "<td>".$name."</td>";
199 print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
200 print "</tr>";
201 
202 if (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 
215 print "<tr>";
216 print "<td>".$name."</td>";
217 print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
218 print "</tr>";
219 
220 $functions = array();
221 $name = "zip";
222 
223 print "<tr>";
224 print "<td>".$name."</td>";
225 print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
226 print "</tr>";
227 
228 $functions = array();
229 $name = "xDebug";
230 
231 print "<tr>";
232 print "<td>".$name."</td>";
233 print getResultColumn($name, $activatedExtensions, $loadedExtensions, $functions);
234 print "</tr>";
235 
236 print '</table>';
237 
238 print '<br>';
239 
240 // Get php_info array
241 $phparray = phpinfo_array();
242 foreach ($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  // Hide value of session cookies
256  if (in_array($keyparam, array('HTTP_COOKIE', 'Cookie', "\$_SERVER['HTTP_COOKIE']", 'Authorization'))) {
257  $valtoshow = '<span class="opacitymedium">'.$langs->trans("Hidden").'</span>';
258  }
259  if (preg_match('/'.preg_quote('$_COOKIE[\'DOLSESSID_', '/').'/i', $keyparam)) {
260  $keytoshow = $keyparam;
261  $valtoshow = '<span class="opacitymedium">'.$langs->trans("Hidden").'</span>';
262  }
263 
264  print '<tr class="oddeven">';
265  print '<td>'.$keytoshow.'</td>';
266  if ($keyparam == 'X-ChromePhp-Data') {
267  $valtoshow = dol_trunc($keyvalue, 80);
268  }
269  print '<td colspan="2" class="wordbreak">';
270  if ($keyparam == 'Path') {
271  $valtoshow = implode('; ', explode(';', trim($valtoshow)));
272  }
273  if ($keyparam == 'PATH') {
274  $valtoshow = implode('; ', explode(';', trim($valtoshow)));
275  }
276  if ($keyparam == '_SERVER["PATH"]') {
277  $valtoshow = implode('; ', explode(';', trim($valtoshow)));
278  }
279  print $valtoshow;
280  print '</td>';
281  print '</tr>';
282  } else {
283  print '<tr class="oddeven">';
284  print '<td class="wordbreak">'.$keyparam.'</td>';
285  $i = 0;
286  foreach ($keyvalue as $keyparam2 => $keyvalue2) {
287  print '<td>';
288  $valtoshow = $keyvalue2;
289  if ($keyparam == 'disable_functions') {
290  $valtoshow = implode(', ', explode(',', trim($valtoshow)));
291  }
292  //print $keyparam;
293  print $valtoshow;
294  $i++;
295  print '</td>';
296  }
297  print '</tr>';
298  }
299  }
300  print '</table>';
301  print '</div>';
302  print '<br>';
303 }
304 
305 // End of page
306 llxFooter();
307 $db->close();
308 
309 
319 function getResultColumn($name, array $activated, array $loaded, array $functions)
320 {
321  global $langs;
322 
323  $result = true;
324 
325  //$result = $result && in_array(strtolower($name), $activated);
326  $result = $result && in_array(strtolower($name), $loaded);
327 
328  foreach ($functions as $function) {
329  $result = $result && function_exists($function);
330  }
331 
332  $html = "<td>";
333  if ($result) {
334  if (strtolower($name) == 'xdebug') {
335  $html .= img_warning($langs->trans("ModuleActivated", "xdebug"));
336  } else {
337  $html .= img_picto($langs->trans("Ok"), 'tick');
338  }
339  if (in_array(strtolower($name), $loaded)) {
340  $html .= ' '.$langs->trans("Loaded").' - ';
341  } else {
342  //$html .= ' '.$langs->trans("NotLoaded").' - ';
343  }
344  if (strtolower($name) == 'xdebug') {
345  $html .= ' '.$langs->trans("ModuleActivated", "xdebug");
346  $html .= ' - '.$langs->trans("ModuleActivatedMayExposeInformation");
347  } else {
348  $html .= ' <span class="opacitymedium">'.$langs->trans("PHPSupport", $name).'</span>';
349  }
350  } else {
351  if (strtolower($name) == 'xdebug') {
352  $html .= yn(0).' - ';
353  } else {
354  $html .= img_warning($langs->trans("ModuleActivated", "xdebug"));
355  }
356  if (in_array(strtolower($name), $loaded)) {
357  $html .= ' '.$langs->trans("Loaded").' - ';
358  } else {
359  //$html .= ' '.$langs->trans("NotLoaded").' - ';
360  }
361  $html .= ' '.$langs->trans("ErrorPHPDoesNotSupport", $name);
362  }
363  $html .= "</td>";
364 
365  return $html;
366 }
getResultColumn($name, array $activated, array $loaded, array $functions)
Return a result column with a translated result text.
Definition: phpinfo.php:319
versiontostring($versionarray)
Renvoi une version en chaine depuis une version en tableau.
Definition: admin.lib.php:36
versionphparray()
Return version PHP.
Definition: admin.lib.php:128
versioncompare($versionarray1, $versionarray2)
Compare 2 versions (stored into 2 arrays).
Definition: admin.lib.php:66
phpinfo_array()
Return the php_info into an array.
Definition: admin.lib.php:1948
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:56
llxFooter()
Empty footer.
Definition: wrapper.php:70
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.