44if (!defined(
'NOSESSION')) {
45 define(
'NOSESSION',
'1');
49$sapi_type = php_sapi_name();
50$script_file = basename(__FILE__);
54if (substr($sapi_type, 0, 3) ==
'cgi') {
55 echo
"Error: You are using PHP for CGI. To execute ".$script_file.
" from command line, you must use PHP for CLI mode.\n";
66define(
'EVEN_IF_ONLY_LOGIN_ALLOWED', 1);
71$tmp = empty($_SERVER[
'SCRIPT_FILENAME']) ?
'' : $_SERVER[
'SCRIPT_FILENAME'];
72$tmp2 = realpath(__FILE__);
74$j = strlen($tmp2) - 1;
75while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
79if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1)).
"/master.inc.php")) {
80 $res = @include substr($tmp, 0, ($i + 1)).
"/master.inc.php";
82if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1))).
"/master.inc.php")) {
83 $res = @include dirname(substr($tmp, 0, ($i + 1))).
"/master.inc.php";
86if (!$res && file_exists(
"../master.inc.php")) {
87 $res = @include
"../master.inc.php";
89if (!$res && file_exists(
"../../master.inc.php")) {
90 $res = @include
"../../master.inc.php";
92if (!$res && file_exists(
"../../../master.inc.php")) {
93 $res = @include
"../../../master.inc.php";
96 print
"Include of master fails";
106$result = $user->fetch(0,
'admin');
113$hookmanager->initHooks(array(
'cli'));
120print
"***** ".$script_file.
" (".$version.
") pid=".
dol_getmypid().
" *****\n";
121if (!isset($argv[1])) {
122 print
"Usage: ".$script_file.
" param1 param2 ...\n";
125print
'--- start'.
"\n";
126print
'Argument 1='.$argv[1].
"\n";
127print
'Argument 2='.$argv[2].
"\n";
215 print
'--- end ok'.
"\n";
217 print
'--- end error code='.$error.
"\n";
dol_getmypid()
Return getmypid() or random PID when function is disabled Some web hosts disable this php function fo...
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...