dolibarr 18.0.6
xdebug.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2009-2014 Laurent Destailleur <eldy@users.sourceforge.net>
3 *
4* This program is free software; you can redistribute it and/or modify
5* it under the terms of the GNU General Public License as published by
6* the Free Software Foundation; either version 3 of the License, or
7* (at your option) any later version.
8*
9* This program is distributed in the hope that it will be useful,
10* but WITHOUT ANY WARRANTY; without even the implied warranty of
11* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12* GNU General Public License for more details.
13*
14* You should have received a copy of the GNU General Public License
15* along with this program. If not, see <https://www.gnu.org/licenses/>.
16*/
17
23// Load Dolibarr environment
24require '../../main.inc.php';
25
26$langs->load("admin");
27
28if (!$user->admin) {
30}
31
32
33/*
34 * View
35*/
36
37llxHeader();
38
39print load_fiche_titre("XDebug", '', 'title_setup');
40
41if (!function_exists('xdebug_is_enabled')) {
42 print "<br>\n";
43 print 'XDebug seems to be not installed. Function xdebug_is_enabled not found.';
44 llxFooter();
45 exit;
46}
47
48print '<span class="opacitymedium">';
49print $langs->trans("ModuleActivatedMayExposeInformation", $langs->transnoentities("XDebug"));
50print '</span>';
51
52print '<br><br>';
53
54if (function_exists('socket_create')) {
55 $address = ini_get('xdebug.remote_host') ?ini_get('xdebug.remote_host') : '127.0.0.1';
56 $port = ini_get('xdebug.remote_port') ?ini_get('xdebug.remote_port') : 9000;
57
58 print "<strong>Current xdebug setup:</strong><br>\n";
59 print "* Remote debug setup:<br>\n";
60 print 'xdebug.remote_enable = '.ini_get('xdebug.remote_enable')."<br>\n";
61 print 'xdebug.remote_host = '.$address."<br>\n";
62 print 'xdebug.remote_port = '.$port."<br>\n";
63 print "* Profiler setup ";
64 if (function_exists('xdebug_get_profiler_filename')) {
65 print xdebug_get_profiler_filename() ? "(currently on into file ".xdebug_get_profiler_filename().")" : "(currently off)";
66 } else {
67 print "(currenlty not available)";
68 }
69 print ":<br>\n";
70 print 'xdebug.profiler_enable = '.ini_get('xdebug.profiler_enable')."<br>\n";
71 print 'xdebug.profiler_enable_trigger = '.ini_get('xdebug.profiler_enable_trigger')."<br>\n";
72 print 'xdebug.profiler_output_dir = '.ini_get('xdebug.profiler_output_dir')."<br>\n";
73 print 'xdebug.profiler_output_name = '.ini_get('xdebug.profiler_output_name')."<br>\n";
74 print 'xdebug.profiler_append = '.ini_get('xdebug.profiler_append')."<br>\n";
75 print "<br>\n";
76
77 print "To run a debug session, add parameter<br>";
78 print "* XDEBUG_SESSION_START=aname on your URL. To stop, remove cookie XDEBUG_SESSION_START.<br>\n";
79 print "To run a profiler session (when xdebug.profiler_enable_trigger=1), add parameter<br>\n";
80 print "* XDEBUG_PROFILE=aname on each URL.<br>";
81 print "<br>";
82
83 print "<strong>Test debugger server (Eclipse for example):</strong><br>\n";
84 $socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
85 if (empty($socket)) {
86 die('Unable to prepare a socket');
87 }
88 //socket_bind($sock, $address, $port) or die('Unable to bind on address='.$address.' port='.$port);
89 //socket_listen($sock);
90 //$client = socket_accept($sock);
91 $client = socket_connect($socket, $address, $port);
92 if ($client) {
93 print "Connection established: ".$client." - address=".$address." port=".$port."<br>\n";
94 print "There is a Remote debug server at this address.<br>\n";
95 print "<br>\n";
96 print "To be sure this debugger accepts input from your PHP server and xdebug, be sure to have\n";
97 print "your php.ini file with this :<br>\n";
98 print '<textarea cols="80" rows="16">'."xdebug.remote_enable=on
99xdebug.remote_handle=dbgp
100xdebug.remote_host=localhost
101xdebug.remote_port=9000
102xdebug.profiler_enable=0
103xdebug.profiler_enable_trigger=1
104xdebug.show_local_vars=off
105xdebug.profiler_output_dir=/tmp/xdebug
106xdebug.profiler_append=0
107; for xdebug 2.2+
108xdebug.trace_enable_trigger=1
109xdebug.show_mem_delta=1
110xdebug.trace_output_dir=/tmp/trace
111xdebug.auto_trace=0
112</textarea>\n";
113 print "<br><br>\n";
114 print 'Then check in your debug server (Eclipse), you have setup:<br>
115 XDebug with same port than in php.ini<br>
116 Allow Remote debug=yes or prompt<br>'."\n";
117 print "<br>\n";
118 } else {
119 print socket_strerror(socket_last_error());
120 print " - Failed to connect to address=".$address." port=".$port."<br>\n";
121 print "There is no Remote debug server at this address.\n";
122 }
123 socket_close($socket);
124} else {
125 print "Can't test if PHPDebug is OK as PHP socket functions are not enabled.";
126}
127
128
129llxFooter();
130
131$db->close();
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.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.