if it is your best counsel, we'll be try it Thanks a lot Happy Christmas and new year -------------------- Rolando <http://www.linkedin.com/in/rolandotitiosky> http://rolandotitiosky.blogspot.com/ ----------------------------------------------------------------- no imprima este correo: cuidemos la Naturaleza 2014-12-29 20:32 GMT-03:00 Aziz Saleh <azizsaleh@xxxxxxxxx>: > > > On Mon, Dec 29, 2014 at 6:29 PM, Rolando Titiosky < > rolando.titiosky@xxxxxxxxx> wrote: > >> So, Any existing Debug systems do require me to insert external code? We >> Know about xdebug, but we have to alter the Source Code, so is the same as >> making a hand Debug ... We dont need a kind of xdebug because we can do the >> same thing by our hands. >> >> In addition, Xdebug does not help us understand the flow of PHP Scripts >> from designers by third party systems, such vTiger who say do Open Source >> and their source codes are impossible to understand and we have to pay to >> have the minimum support... >> >> We have already a php script that put into all php scripts in a >> directory, a few lines in the beginning and in the end of each source code >> into the directory, to understand the php flow: This script writes a Trace >> Log in a simple text way... But this method alter the Source Code... >> >> Do you dont Know about a better Debug System? >> Could you Help us? >> Thanks in advance >> >> >> >> >> -------------------- >> Rolando <http://www.linkedin.com/in/rolandotitiosky> >> http://rolandotitiosky.blogspot.com/ >> ----------------------------------------------------------------- >> no imprima este correo: cuidemos la Naturaleza >> >> 2014-12-29 20:12 GMT-03:00 Aziz Saleh <azizsaleh@xxxxxxxxx>: >> >> >>> >>> On Mon, Dec 29, 2014 at 6:03 PM, Rolando Titiosky < >>> rolando.titiosky@xxxxxxxxx> wrote: >>> >>>> Hello, I need a PHP Debug system where no need to insert external code >>>> to my >>>> source code, and so to study or understand the process flow php >>>> applications >>>> built by third parties (Open Source) >>>> >>>> Thanks in advance >>>> >>>> >>>> -------------------- >>>> Rolando <http://www.linkedin.com/in/rolandotitiosky> >>>> http://rolandotitiosky.blogspot.com/ >>>> ----------------------------------------------------------------- >>>> no imprima este correo: cuidemos la Naturaleza >>>> >>>> 2014-12-29 19:50 GMT-03:00 Christoph Becker <cmbecker69@xxxxxx>: >>>> >>>> > Rolando Titiosky wrote: >>>> > >>>> > > Hello, I need a PHP Debug system where no need to insert external >>>> code to >>>> > > my source code, and so to study or understand the process flow php >>>> > > applications built by third parties (Open Source) >>>> > > >>>> > > Thanks in advance >>>> > >>>> > php-webmaster@xxxxxxxxxxxxx is for discussing and maintaining the >>>> > php.net web infrastructure; security@xxxxxxx is for discussing >>>> security >>>> > issues related to the PHP language and the php.net site. >>>> > >>>> > For *support* requests write to php-general@xxxxxxxxxxxxx, the Usenet >>>> > group comp.lang.php, or another support forum. >>>> > >>>> > See also <http://php.net/support.php>. >>>> > >>>> > HTH >>>> > >>>> > -- >>>> > Christoph M. Becker >>>> > >>>> >>> >>> Unless you are talking about the built in php's print_r, echo, var_dump >>> methods, you will need external code to enable debugging. I recommend you >>> use xdebug: >>> >>> http://xdebug.org/ >>> >>> Which will enable you to generate cachegrind files that you can use to >>> see how functions perform, how many times, etc.. >>> >> >> > Have you tried to use the profiler in xdebug? > > http://www.xdebug.org/docs/profiler > > The only thing you need to do to generate the profile file is to append XDEBUG_PROFILE > to the url. >