dolibarr 20.0.0
filecheck.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2005-2020 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
4 * Copyright (C) 2007-2012 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2015-2019 Frederic France <frederic.france@netlogic.fr>
6 * Copyright (C) 2017 Nicolas ZABOURI <info@inovea-conseil.com>
7 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
28// Load Dolibarr environment
29require '../../main.inc.php';
30require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/geturl.lib.php';
32
33$langs->load("admin");
34
35if (!$user->admin) {
37}
38
39$error = 0;
40
41
42/*
43 * View
44 */
45
46@set_time_limit(300);
47
48llxHeader('', '', '', '', 0, 0, '', '', '', 'mod-admin page-system_filecheck');
49
50print load_fiche_titre($langs->trans("FileCheckDolibarr"), '', 'title_setup');
51
52print '<span class="opacitymedium">'.$langs->trans("FileCheckDesc").'</span><br><br>';
53
54// Version
55print '<div class="div-table-responsive-no-min">';
56print '<table class="noborder centpercent">';
57print '<tr class="liste_titre"><td>'.$langs->trans("Version").'</td><td>'.$langs->trans("Value").'</td></tr>'."\n";
58print '<tr class="oddeven"><td width="300">'.$langs->trans("VersionLastInstall").'</td><td>'.getDolGlobalString('MAIN_VERSION_LAST_INSTALL').'</td></tr>'."\n";
59print '<tr class="oddeven"><td width="300">'.$langs->trans("VersionLastUpgrade").'</td><td>'.getDolGlobalString('MAIN_VERSION_LAST_UPGRADE').'</td></tr>'."\n";
60print '<tr class="oddeven"><td width="300">'.$langs->trans("VersionProgram").'</td><td>'.DOL_VERSION;
61// If current version differs from last upgrade
62if (!getDolGlobalString('MAIN_VERSION_LAST_UPGRADE')) {
63 // Compare version with last install database version (upgrades never occurred)
64 if (DOL_VERSION != getDolGlobalString('MAIN_VERSION_LAST_INSTALL')) {
65 print ' '.img_warning($langs->trans("RunningUpdateProcessMayBeRequired", DOL_VERSION, getDolGlobalString('MAIN_VERSION_LAST_INSTALL')));
66 }
67} else {
68 // Compare version with last upgrade database version
69 if (DOL_VERSION != $conf->global->MAIN_VERSION_LAST_UPGRADE) {
70 print ' '.img_warning($langs->trans("RunningUpdateProcessMayBeRequired", DOL_VERSION, getDolGlobalString('MAIN_VERSION_LAST_UPGRADE')));
71 }
72}
73print '</td></tr>'."\n";
74print '</table>';
75print '</div>';
76print '<br>';
77
78
79// Modified or missing files
80$file_list = array('missing' => array(), 'updated' => array());
81
82// Local file to compare to
83$xmlshortfile = dol_sanitizeFileName(GETPOST('xmlshortfile', 'alpha') ? GETPOST('xmlshortfile', 'alpha') : 'filelist-'.DOL_VERSION.getDolGlobalString('MAIN_FILECHECK_LOCAL_SUFFIX').'.xml'.getDolGlobalString('MAIN_FILECHECK_LOCAL_EXT'));
84
85$xmlfile = DOL_DOCUMENT_ROOT.'/install/'.$xmlshortfile;
86if (!preg_match('/\.zip$/i', $xmlfile) && dol_is_file($xmlfile.'.zip')) {
87 $xmlfile .= '.zip';
88}
89
90// Remote file to compare to
91$xmlremote = GETPOST('xmlremote', 'alphanohtml');
92if (empty($xmlremote) && getDolGlobalString('MAIN_FILECHECK_URL')) {
93 $xmlremote = getDolGlobalString('MAIN_FILECHECK_URL');
94}
95$param = 'MAIN_FILECHECK_URL_'.DOL_VERSION;
96if (empty($xmlremote) && getDolGlobalString($param)) {
97 $xmlremote = getDolGlobalString($param);
98}
99if (empty($xmlremote)) {
100 $xmlremote = 'https://www.dolibarr.org/files/stable/signatures/filelist-'.DOL_VERSION.'.xml';
101}
102if ($xmlremote && !preg_match('/^https?:\/\//', $xmlremote)) {
103 $langs->load("errors");
104 setEventMessages($langs->trans("ErrorURLMustStartWithHttp", $xmlremote), null, 'errors');
105 $error++;
106} elseif ($xmlremote && !preg_match('/\.xml$/', $xmlremote)) {
107 $langs->load("errors");
108 setEventMessages($langs->trans("ErrorURLMustEndWith", $xmlremote, '.xml'), null, 'errors');
109 $error++;
110}
111
112// Test if remote test is ok
113$enableremotecheck = true;
114if (preg_match('/beta|alpha|rc/i', DOL_VERSION) || getDolGlobalString('MAIN_ALLOW_INTEGRITY_CHECK_ON_UNSTABLE')) {
115 $enableremotecheck = false;
116}
117$enableremotecheck = true;
118
119print '<form name="check" action="'.$_SERVER["PHP_SELF"].'">';
120print '<input type="hidden" name="token" value="'.newToken().'">';
121print $langs->trans("MakeIntegrityAnalysisFrom").':<br>';
122print '<!-- for a local check target=local&xmlshortfile=... -->'."\n";
123if (dol_is_file($xmlfile)) {
124 print '<input type="radio" name="target" id="checkboxlocal" value="local"'.((!GETPOST('target') || GETPOST('target') == 'local') ? 'checked="checked"' : '').'"> <label for="checkboxlocal">'.$langs->trans("LocalSignature").'</label> = ';
125 print '<input name="xmlshortfile" class="flat minwidth400" value="'.dol_escape_htmltag($xmlshortfile).'">';
126 print '<br>';
127} else {
128 print '<input type="radio" name="target" id="checkboxlocal" value="local"> <label for="checkboxlocal">'.$langs->trans("LocalSignature").' = ';
129 print '<input name="xmlshortfile" class="flat minwidth400" value="'.dol_escape_htmltag($xmlshortfile).'">';
130 print ' <span class="warning">('.$langs->trans("AvailableOnlyOnPackagedVersions").')</span></label>';
131 print '<br>';
132}
133print '<!-- for a remote target=remote&xmlremote=... -->'."\n";
134if ($enableremotecheck) {
135 print '<input type="radio" name="target" id="checkboxremote" value="remote"'.(GETPOST('target') == 'remote' ? 'checked="checked"' : '').'> <label for="checkboxremote">'.$langs->trans("RemoteSignature").'</label> = ';
136 print '<input name="xmlremote" class="flat minwidth500" value="'.dol_escape_htmltag($xmlremote).'"><br>';
137} else {
138 print '<input type="radio" name="target" id="checkboxremote" value="remote" disabled="disabled"> '.$langs->trans("RemoteSignature").' = '.dol_escape_htmltag($xmlremote);
139 if (!GETPOST('xmlremote')) {
140 print ' <span class="warning">('.$langs->trans("FeatureAvailableOnlyOnStable").')</span>';
141 }
142 print '<br>';
143}
144print '<br><div class="center"><input type="submit" name="check" class="button" value="'.$langs->trans("Check").'"></div>';
145print '</form>';
146print '<br>';
147print '<br>';
148
149if (GETPOST('target') == 'local') {
150 if (dol_is_file($xmlfile)) {
151 // If file is a zip file (.../filelist-x.y.z.xml.zip), we uncompress it before
152 if (preg_match('/\.zip$/i', $xmlfile)) {
153 dol_mkdir($conf->admin->dir_temp);
154 $xmlfilenew = preg_replace('/\.zip$/i', '', $xmlfile);
155 $result = dol_uncompress($xmlfile, $conf->admin->dir_temp);
156 if (empty($result['error'])) {
157 $xmlfile = $conf->admin->dir_temp.'/'.basename($xmlfilenew);
158 } else {
159 print $langs->trans('FailedToUncompressFile').': '.$xmlfile;
160 $error++;
161 }
162 }
163 $xml = simplexml_load_file($xmlfile);
164 if ($xml === false) {
165 print '<div class="warning">'.$langs->trans('XmlCorrupted').': '.$xmlfile.'</span>';
166 $error++;
167 }
168 } else {
169 print '<div class="warning">'.$langs->trans('XmlNotFound').': '.$xmlfile.'</span>';
170 $error++;
171 }
172}
173if (GETPOST('target') == 'remote') {
174 $xmlarray = getURLContent($xmlremote, 'GET', '', 1, array(), array('http', 'https'), 0); // Accept http or https links on external remote server only. Same is used into api_setup.class.php.
175
176 // Return array('content'=>response,'curl_error_no'=>errno,'curl_error_msg'=>errmsg...)
177 if (!$xmlarray['curl_error_no'] && $xmlarray['http_code'] != '400' && $xmlarray['http_code'] != '404') {
178 $xmlfile = $xmlarray['content'];
179 //print "xmlfilestart".$xmlfile."xmlfileend";
180 if (LIBXML_VERSION < 20900) {
181 // Avoid load of external entities (security problem).
182 // Required only if LIBXML_VERSION < 20900
183 // @phan-suppress-next-line PhanDeprecatedFunctionInternal
184 libxml_disable_entity_loader(true);
185 }
186
187 $xml = simplexml_load_string($xmlfile, 'SimpleXMLElement', LIBXML_NOCDATA | LIBXML_NONET);
188 } else {
189 $errormsg = $langs->trans('XmlNotFound').': '.$xmlremote.' - '.$xmlarray['http_code'].(($xmlarray['http_code'] == 400 && $xmlarray['content']) ? ' '.$xmlarray['content'] : '').' '.$xmlarray['curl_error_no'].' '.$xmlarray['curl_error_msg'];
190 setEventMessages($errormsg, null, 'errors');
191 $error++;
192 }
193}
194
195
196if (empty($error) && !empty($xml)) {
197 $checksumconcat = array();
198 $file_list = array();
199 $out = '';
200
201 // Forced constants
202 if (is_object($xml->dolibarr_constants[0])) {
203 $out .= load_fiche_titre($langs->trans("ForcedConstants"));
204
205 $out .= '<div class="div-table-responsive-no-min">';
206 $out .= '<table class="noborder">';
207 $out .= '<tr class="liste_titre">';
208 $out .= '<td>#</td>';
209 $out .= '<td>'.$langs->trans("Constant").'</td>';
210 $out .= '<td class="center">'.$langs->trans("ExpectedValue").'</td>';
211 $out .= '<td class="center">'.$langs->trans("Value").'</td>';
212 $out .= '</tr>'."\n";
213
214 $i = 0;
215 foreach ($xml->dolibarr_constants[0]->constant as $constant) { // $constant is a simpleXMLElement
216 $constname = $constant['name'];
217 $constvalue = (string) $constant;
218 $constvalue = (empty($constvalue) ? '0' : $constvalue);
219 // Value found
220 $value = '';
221 if ($constname && getDolGlobalString($constname) != '') {
222 $value = getDolGlobalString($constname);
223 }
224 $valueforchecksum = (empty($value) ? '0' : $value);
225
226 $checksumconcat[] = $valueforchecksum;
227
228 $i++;
229 $out .= '<tr class="oddeven">';
230 $out .= '<td>'.$i.'</td>'."\n";
231 $out .= '<td>'.dol_escape_htmltag($constname).'</td>'."\n";
232 $out .= '<td class="center">'.dol_escape_htmltag($constvalue).'</td>'."\n";
233 $out .= '<td class="center">'.dol_escape_htmltag($valueforchecksum).'</td>'."\n";
234 $out .= "</tr>\n";
235 }
236
237 if ($i == 0) {
238 $out .= '<tr class="oddeven"><td colspan="4"><span class="opacitymedium">'.$langs->trans("None").'</span></td></tr>';
239 }
240 $out .= '</table>';
241 $out .= '</div>';
242
243 $out .= '<br>';
244 }
245
246 // Scan htdocs
247 if (is_object($xml->dolibarr_htdocs_dir[0])) {
248 //var_dump($xml->dolibarr_htdocs_dir[0]['includecustom']);exit;
249 $includecustom = (empty($xml->dolibarr_htdocs_dir[0]['includecustom']) ? 0 : $xml->dolibarr_htdocs_dir[0]['includecustom']);
250
251 // Define qualified files (must be same than into generate_filelist_xml.php and in api_setup.class.php)
252 $regextoinclude = '\.(php|php3|php4|php5|phtml|phps|phar|inc|css|scss|html|xml|js|json|tpl|jpg|jpeg|png|gif|ico|sql|lang|txt|yml|bak|md|mp3|mp4|wav|mkv|z|gz|zip|rar|tar|less|svg|eot|woff|woff2|ttf|manifest)$';
253 $regextoexclude = '('.($includecustom ? '' : 'custom|').'documents|conf|install|dejavu-fonts-ttf-.*|public\/test|sabre\/sabre\/.*\/tests|Shared\/PCLZip|nusoap\/lib\/Mail|php\/example|php\/test|geoip\/sample.*\.php|ckeditor\/samples|ckeditor\/adapters)$'; // Exclude dirs
254 $scanfiles = dol_dir_list(DOL_DOCUMENT_ROOT, 'files', 1, $regextoinclude, $regextoexclude);
255
256 // Fill file_list with files in signature, new files, modified files
257 $ret = getFilesUpdated($file_list, $xml->dolibarr_htdocs_dir[0], '', DOL_DOCUMENT_ROOT, $checksumconcat); // Fill array $file_list
258 // Complete with list of new files
259 foreach ($scanfiles as $keyfile => $valfile) {
260 $tmprelativefilename = preg_replace('/^'.preg_quote(DOL_DOCUMENT_ROOT, '/').'/', '', $valfile['fullname']);
261 if (!in_array($tmprelativefilename, $file_list['insignature'])) {
262 $md5newfile = @md5_file($valfile['fullname']); // Can fails if we don't have permission to open/read file
263 $file_list['added'][] = array('filename' => $tmprelativefilename, 'md5' => $md5newfile);
264 }
265 }
266
267 // Files missing
268 $out .= load_fiche_titre($langs->trans("FilesMissing"));
269
270 $out .= '<div class="div-table-responsive-no-min">';
271 $out .= '<table class="noborder">';
272 $out .= '<tr class="liste_titre">';
273 $out .= '<td>#</td>';
274 $out .= '<td>'.$langs->trans("Filename").'</td>';
275 $out .= '<td class="right">'.$langs->trans("ExpectedSize").'</td>';
276 $out .= '<td class="center">'.$langs->trans("ExpectedChecksum").'</td>';
277 $out .= '</tr>'."\n";
278 $tmpfilelist = dol_sort_array($file_list['missing'], 'filename');
279 if (is_array($tmpfilelist) && count($tmpfilelist)) {
280 $i = 0;
281 foreach ($tmpfilelist as $file) {
282 $i++;
283 $out .= '<tr class="oddeven">';
284 $out .= '<td>'.$i.'</td>'."\n";
285 $out .= '<td>'.dol_escape_htmltag($file['filename']).'</td>'."\n";
286 $out .= '<td class="right">';
287 if (!empty($file['expectedsize'])) {
288 $out .= dol_print_size($file['expectedsize']);
289 }
290 $out .= '</td>'."\n";
291 $out .= '<td class="center">'.dol_escape_htmltag($file['expectedmd5']).'</td>'."\n";
292 $out .= "</tr>\n";
293 }
294 } else {
295 $out .= '<tr class="oddeven"><td colspan="4"><span class="opacitymedium">'.$langs->trans("None").'</span></td></tr>';
296 }
297 $out .= '</table>';
298 $out .= '</div>';
299
300 $out .= '<br>';
301
302 // Files modified
303 $out .= load_fiche_titre($langs->trans("FilesModified"));
304
305 $totalsize = 0;
306 $out .= '<div class="div-table-responsive-no-min">';
307 $out .= '<table class="noborder">';
308 $out .= '<tr class="liste_titre">';
309 $out .= '<td>#</td>';
310 $out .= '<td>'.$langs->trans("Filename").'</td>';
311 $out .= '<td class="center">'.$langs->trans("ExpectedChecksum").'</td>';
312 $out .= '<td class="center">'.$langs->trans("CurrentChecksum").'</td>';
313 $out .= '<td class="right">'.$langs->trans("ExpectedSize").'</td>';
314 $out .= '<td class="right">'.$langs->trans("CurrentSize").'</td>';
315 $out .= '<td class="right">'.$langs->trans("DateModification").'</td>';
316 $out .= '</tr>'."\n";
317 $tmpfilelist2 = dol_sort_array($file_list['updated'], 'filename');
318 if (is_array($tmpfilelist2) && count($tmpfilelist2)) {
319 $i = 0;
320 foreach ($tmpfilelist2 as $file) {
321 $i++;
322 $out .= '<tr class="oddeven">';
323 $out .= '<td>'.$i.'</td>'."\n";
324 $out .= '<td>'.dol_escape_htmltag($file['filename']).'</td>'."\n";
325 $out .= '<td class="center">'.dol_escape_htmltag($file['expectedmd5']).'</td>'."\n";
326 $out .= '<td class="center">'.dol_escape_htmltag($file['md5']).'</td>'."\n";
327 $out .= '<td class="right">';
328 if ($file['expectedsize']) {
329 $out .= dol_print_size($file['expectedsize']);
330 }
331 $out .= '</td>'."\n";
332 $size = dol_filesize(DOL_DOCUMENT_ROOT.'/'.$file['filename']);
333 $totalsize += $size;
334 $out .= '<td class="right">'.dol_print_size($size).'</td>'."\n";
335 $out .= '<td class="right">'.dol_print_date(dol_filemtime(DOL_DOCUMENT_ROOT.'/'.$file['filename']), 'dayhour').'</td>'."\n";
336 $out .= "</tr>\n";
337 }
338 $out .= '<tr class="liste_total">';
339 $out .= '<td></td>'."\n";
340 $out .= '<td>'.$langs->trans("Total").'</td>'."\n";
341 $out .= '<td class="center"></td>'."\n";
342 $out .= '<td class="center"></td>'."\n";
343 $out .= '<td class="center"></td>'."\n";
344 $out .= '<td class="right">'.dol_print_size($totalsize).'</td>'."\n";
345 $out .= '<td class="right"></td>'."\n";
346 $out .= "</tr>\n";
347 } else {
348 $out .= '<tr class="oddeven"><td colspan="7"><span class="opacitymedium">'.$langs->trans("None").'</span></td></tr>';
349 }
350 $out .= '</table>';
351 $out .= '</div>';
352
353 $out .= '<br>';
354
355 // Files added
356 $out .= load_fiche_titre($langs->trans("FilesAdded"));
357
358 $totalsize = 0;
359 $out .= '<div class="div-table-responsive-no-min">';
360 $out .= '<table class="noborder">';
361 $out .= '<tr class="liste_titre">';
362 $out .= '<td>#</td>';
363 $out .= '<td>'.$langs->trans("Filename").'</td>';
364 $out .= '<td class="center">'.$langs->trans("ExpectedChecksum").'</td>';
365 $out .= '<td class="center">'.$langs->trans("CurrentChecksum").'</td>';
366 $out .= '<td class="right">'.$langs->trans("Size").'</td>';
367 $out .= '<td class="right">'.$langs->trans("DateModification").'</td>';
368 $out .= '</tr>'."\n";
369 $tmpfilelist3 = dol_sort_array($file_list['added'], 'filename');
370 if (is_array($tmpfilelist3) && count($tmpfilelist3)) {
371 $i = 0;
372 foreach ($tmpfilelist3 as $file) {
373 $i++;
374 $out .= '<tr class="oddeven">';
375 $out .= '<td>'.$i.'</td>'."\n";
376 $out .= '<td>'.dol_escape_htmltag($file['filename']);
377 if (!preg_match('/^win/i', PHP_OS)) {
378 $htmltext = $langs->trans("YouCanDeleteFileOnServerWith", 'rm '.DOL_DOCUMENT_ROOT.$file['filename']); // The slash is included int file['filename']
379 $out .= ' '.$form->textwithpicto('', $htmltext, 1, 'help', '', 0, 2, 'helprm'.$i);
380 }
381 $out .= '</td>'."\n";
382 $out .= '<td class="center">'.dol_escape_htmltag($file['expectedmd5']).'</td>'."\n";
383 $out .= '<td class="center">'.dol_escape_htmltag($file['md5']).'</td>'."\n";
384 $size = dol_filesize(DOL_DOCUMENT_ROOT.'/'.$file['filename']);
385 $totalsize += $size;
386 $out .= '<td class="right">'.dol_print_size($size).'</td>'."\n";
387 $out .= '<td class="right nowraponall">'.dol_print_date(dol_filemtime(DOL_DOCUMENT_ROOT.'/'.$file['filename']), 'dayhour').'</td>'."\n";
388 $out .= "</tr>\n";
389 }
390 $out .= '<tr class="liste_total">';
391 $out .= '<td></td>'."\n";
392 $out .= '<td>'.$langs->trans("Total").'</td>'."\n";
393 $out .= '<td class="center"></td>'."\n";
394 $out .= '<td class="center"></td>'."\n";
395 $out .= '<td class="right">'.dol_print_size($totalsize).'</td>'."\n";
396 $out .= '<td class="right"></td>'."\n";
397 $out .= "</tr>\n";
398 } else {
399 $out .= '<tr class="oddeven"><td colspan="6"><span class="opacitymedium">'.$langs->trans("None").'</span></td></tr>';
400 }
401 $out .= '</table>';
402 $out .= '</div>';
403 } else {
404 print '<div class="error">';
405 print 'Error: Failed to found <b>dolibarr_htdocs_dir</b> into content of XML file:<br>'.dol_escape_htmltag(dol_trunc($xmlfile, 500));
406 print '</div><br>';
407 $error++;
408 }
409
410
411 // Scan scripts
412 /*
413 if (is_object($xml->dolibarr_script_dir[0]))
414 {
415 $file_list = array();
416 $ret = getFilesUpdated($file_list, $xml->dolibarr_htdocs_dir[0], '', ???, $checksumconcat); // Fill array $file_list
417 }*/
418
419
420 asort($checksumconcat); // Sort list of checksum
421 //var_dump($checksumconcat);
422 $checksumget = md5(implode(',', $checksumconcat));
423 $checksumtoget = trim((string) $xml->dolibarr_htdocs_dir_checksum);
424
425 //var_dump(count($file_list['added']));
426 //var_dump($checksumget);
427 //var_dump($checksumtoget);
428 //var_dump($checksumget == $checksumtoget);
429
430 $resultcomment = '';
431
432 $outexpectedchecksum = ($checksumtoget ? $checksumtoget : $langs->trans("Unknown"));
433 if ($checksumget == $checksumtoget) {
434 if (is_array($file_list['added']) && count($file_list['added'])) {
435 $resultcode = 'warning';
436 $resultcomment = 'FileIntegrityIsOkButFilesWereAdded';
437 $outcurrentchecksum = $checksumget.' - <span class="'.$resultcode.'">'.$langs->trans($resultcomment).'</span>';
438 } else {
439 $resultcode = 'ok';
440 $resultcomment = 'Success';
441 $outcurrentchecksum = '<span class="'.$resultcode.'">'.$checksumget.'</span>';
442 }
443 } else {
444 $resultcode = 'error';
445 $resultcomment = 'Error';
446 $outcurrentchecksum = '<span class="'.$resultcode.'">'.$checksumget.'</span>';
447 }
448
449 // Show warning
450 if (empty($tmpfilelist) && empty($tmpfilelist2) && empty($tmpfilelist3) && $resultcode == 'ok') {
451 setEventMessages($langs->trans("FileIntegrityIsStrictlyConformedWithReference"), null, 'mesgs');
452 } else {
453 if ($resultcode == 'warning') {
454 setEventMessages($langs->trans($resultcomment), null, 'warnings');
455 } else {
456 setEventMessages($langs->trans("FileIntegritySomeFilesWereRemovedOrModified"), null, 'errors');
457 }
458 }
459
460 print load_fiche_titre($langs->trans("GlobalChecksum"));
461 print $langs->trans("ExpectedChecksum").' = '.$outexpectedchecksum.'<br>';
462 print $langs->trans("CurrentChecksum").' = '.$outcurrentchecksum;
463
464 print '<br>';
465 print '<br>';
466
467 // Output detail
468 print $out;
469}
470
471// End of page
472llxFooter();
473$db->close();
474
475exit($error);
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
getFilesUpdated(&$file_list, SimpleXMLElement $dir, $path='', $pathref='', &$checksumconcat=array())
Function to get list of updated or modified files.
dol_filemtime($pathoffile)
Return time of a file.
dol_filesize($pathoffile)
Return size of a file.
dol_uncompress($inputfile, $outputdir)
Uncompress a file.
dol_is_file($pathoffile)
Return if path is a file.
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
Definition files.lib.php:63
dol_print_size($size, $shortvalue=0, $shortunit=0)
Return string with formatted size.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
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.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
getURLContent($url, $postorget='GET', $param='', $followlocation=1, $addheaders=array(), $allowedschemes=array('http', 'https'), $localurl=0, $ssl_verifypeer=-1)
Function to get a content from an URL (use proxy if proxy defined).
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.