Re: [PHP] PHP debugger

2008-04-30 Thread J. Manuel Velasco - UBILIBET
NOTE: If you are interesting in PHP Debuggers, this is not the mail, check the start of the thread since after I decided to try JasonPruim Debug :p we are trying to solve one specific problem. Now, to who is following the thread ... don't hung me, but i think the problem was there was because

Re: [PHP] PHP debugger

2008-04-29 Thread J. Manuel Velasco - UBILIBET
Hi, Thanks for the replay, at least the debugger runs and it's easy to install :) I am new here, this is a small company and I am the only computing man, so the person who implemented theses scripts are far away to ask for something. Since I deduced there are different whoises scripts

Re: [PHP] PHP debugger

2008-04-29 Thread Jason Pruim
Morning, So looking at those scripts I realized that perl is nothing like php ;) Is there other info that the different places need? or is it just a different URL? I'm wondering why you could do something like: ?PHP switch(strtolower($ext)) { case 'es'; case 'com.es'; case 'org.es'; case

Re: [PHP] PHP debugger

2008-04-29 Thread J. Manuel Velasco - UBILIBET
Iep, First of all, thank you verfy much to take a moment to check the scripts, I really appreciate. About your idea to have only one script that call to the appropiate command using a switch, I agree, but since I am new here and I am the only computing guy, I don't have time to restructure

RE: [PHP] PHP debugger

2008-04-29 Thread Edward Kay
-Original Message- From: Jason Pruim [mailto:[EMAIL PROTECTED] Morning, So looking at those scripts I realized that perl is nothing like php ;) Is there other info that the different places need? or is it just a different URL? I'm wondering why you could do something like:

[PHP] PHP debugger

2008-04-28 Thread J. Manuel Velasco - UBILIBET
Hello, Anybody knows a good debugger for PHP and basic usage? I've found: http://dd.cron.ru/dbg/, what do you think about it ? Thanks. --

Re: [PHP] PHP debugger

2008-04-28 Thread Jignesh Thummar
Best one is Xdebug .. But probably i would like to try this one also. - Jignesh On Mon, Apr 28, 2008 at 12:00 PM, J. Manuel Velasco - UBILIBET [EMAIL PROTECTED] wrote: Hello, Anybody knows a good debugger for PHP and basic usage? I've found: http://dd.cron.ru/dbg/, what do you think

Re: [PHP] PHP debugger

2008-04-28 Thread James Dempster
I'd suggest Xdebug http://xdebug.org/ -- /James On Mon, Apr 28, 2008 at 12:00 PM, J. Manuel Velasco - UBILIBET [EMAIL PROTECTED] wrote: Hello, Anybody knows a good debugger for PHP and basic usage? I've found: http://dd.cron.ru/dbg/, what do you think about it ? Thanks. --

Re: [PHP] PHP debugger

2008-04-28 Thread Daniel Brown
On Mon, Apr 28, 2008 at 7:00 AM, J. Manuel Velasco - UBILIBET [EMAIL PROTECTED] wrote: Hello, Anybody knows a good debugger for PHP and basic usage? There's a pretty good one known as Jason Pruim. ;-P -- /Daniel P. Brown Dedicated Servers - Intel 2.4GHz w/2TB bandwidth/mo. starting

Re: [PHP] PHP debugger

2008-04-28 Thread Thijs Lensselink
Quoting Daniel Brown [EMAIL PROTECTED]: On Mon, Apr 28, 2008 at 7:00 AM, J. Manuel Velasco - UBILIBET [EMAIL PROTECTED] wrote: Hello, Anybody knows a good debugger for PHP and basic usage? There's a pretty good one known as Jason Pruim. ;-P ROFL! -- /Daniel P. Brown Dedicated

Re: [PHP] PHP debugger

2008-04-28 Thread Jason Pruim
On Apr 28, 2008, at 10:32 AM, Thijs Lensselink wrote: Quoting Daniel Brown [EMAIL PROTECTED]: On Mon, Apr 28, 2008 at 7:00 AM, J. Manuel Velasco - UBILIBET [EMAIL PROTECTED] wrote: Hello, Anybody knows a good debugger for PHP and basic usage? There's a pretty good one known as Jason

Re: [PHP] PHP debugger

2008-04-28 Thread J. Manuel Velasco - UBILIBET
Ok, so I am going to try this one, Jason Pruim, let's check how it works ... :p PROBLEM DESCRIPTION: In my whois web-app, when a EU doamin is queried, whois.pl perl script is lunched and I got the right result to my PHP script I the result is shown at the web. If I do the query to a ES

Re: [PHP] PHP debugger

2008-04-28 Thread Jason Pruim
On Apr 28, 2008, at 10:58 AM, J. Manuel Velasco - UBILIBET wrote: Ok, so I am going to try this one, Jason Pruim, let's check how it works ... :p PROBLEM DESCRIPTION: In my whois web-app, when a EU doamin is queried, whois.pl perl script is lunched and I got the right result to my PHP

Re: [PHP] PHP debugger

2008-04-28 Thread Daniel Brown
On Mon, Apr 28, 2008 at 12:08 PM, Jason Pruim [EMAIL PROTECTED] wrote: Also... the only attachment was your logo :) The list strips non-text attachments. Amazingly, embedded graphics still come through. -- /Daniel P. Brown Dedicated Servers - Intel 2.4GHz w/2TB bandwidth/mo. starting at

[PHP] PHP debugger recommendations, anyone?

2008-02-09 Thread Mary Anderson
Hi all, I am getting tired of writing echo statements for almost every parameter, then deleting them while I am writing code. I would really like a debugger which would work with my browser. I have run across an open source one, Xdebug, and would like to hear of other's experience with

Re: [PHP] PHP debugger recommendations, anyone?

2008-02-09 Thread Nathan Nobbe
On Feb 9, 2008 11:48 AM, Mary Anderson [EMAIL PROTECTED] wrote: Hi all, I am getting tired of writing echo statements for almost every parameter, then deleting them while I am writing code. I would really like a debugger which would work with my browser. I have run across an open

Re: [PHP] PHP debugger recommendations, anyone?

2008-02-09 Thread Nathan Rixham
zend studio with zend debugger? Nathan Nobbe wrote: On Feb 9, 2008 11:48 AM, Mary Anderson [EMAIL PROTECTED] wrote: Hi all, I am getting tired of writing echo statements for almost every parameter, then deleting them while I am writing code. I would really like a debugger which would

Re: [PHP] PHP debugger recommendations, anyone?

2008-02-09 Thread Nathan Nobbe
On Feb 9, 2008 3:02 PM, Nathan Rixham [EMAIL PROTECTED] wrote: It suddenly dawned on me that you are doing an echo for every paremeter, a debugger will never completely alleviate the need for this, however try using: print_r(get_defined_vars()); instead, that way you get everything output

Re: [PHP] PHP debugger recommendations, anyone?

2008-02-09 Thread Nathan Rixham
It suddenly dawned on me that you are doing an echo for every paremeter, a debugger will never completely alleviate the need for this, however try using: print_r(get_defined_vars()); instead, that way you get everything output that you could need, it's often also worth putting an exit(); after

[PHP] PHP Debugger

2007-09-04 Thread shiplu
Hello, i need a good php debugger. It should provide the facility of step by step execution in real time. Is there any? Do any of you know about this? I am having a bug. I can't trace where it is. -- shout at http://shiplu.awardspace.com/ Available for Hire/Contract/Full Time

Re: [PHP] PHP Debugger

2007-09-04 Thread Eric Gorr
I would suggest taking a look at Zend Studio. http://www.zend.com/products/zend_studio On Sep 4, 2007, at 5:28 PM, shiplu wrote: Hello, i need a good php debugger. It should provide the facility of step by step execution in real time. Is there any? Do any of you know about this? I am

Re: [PHP] PHP Debugger

2007-09-04 Thread Nathan Nobbe
. http://www.zend.com/products/zend_studio On Sep 4, 2007, at 5:28 PM, shiplu wrote: Hello, i need a good php debugger. It should provide the facility of step by step execution in real time. Is there any? Do any of you know about this? I am having a bug. I can't trace where

[PHP] Re: PHP debugger

2007-05-26 Thread Jared Farrish
Miles Thompson wrote: Suggestions will be most welcome. Also, I'm not married to this, so if anyone thinks there is a better debugger, please jump in. The following assumes object-oriented programming paradigms are at least somewhat applied. I would guess functional would be similar, but

Re: [PHP] PHP debugger

2007-05-25 Thread Jochem Maas
Miles Thompson wrote: Suggestions will be most welcome. Also, I'm not married to this, so if anyone thinks there is a better debugger, please jump in. I'm not going to jump in there ... I almost drown in that quagmire everytime I have to get a debugger setup working ... but ...

Re: [PHP] PHP debugger

2007-05-25 Thread Miles Thompson
On 5/25/07, Jochem Maas [EMAIL PROTECTED] wrote: Miles Thompson wrote: Suggestions will be most welcome. Also, I'm not married to this, so if anyone thinks there is a better debugger, please jump in. I'm not going to jump in there ... I almost drown in that quagmire everytime I have to

RE: [PHP] PHP debugger

2007-05-16 Thread Arno Kuhl
in that case it should report an error. You can't use the dbg integrated in PHPEd after uninstall because it doesn't work without PHPEd. Arno -Original Message- From: Miles Thompson [mailto:[EMAIL PROTECTED] Sent: 15 May 2007 08:21 To: PHP List Subject: [PHP] PHP debugger I am trying

Re: [PHP] PHP debugger

2007-05-16 Thread Miles Thompson
-Original Message- From: Miles Thompson [mailto:[EMAIL PROTECTED] Sent: 15 May 2007 08:21 To: PHP List Subject: [PHP] PHP debugger I am trying to load a PHP debugger in our most recent build of PHP 5.2.1. The debugger which I am trying to set up is the free, pre-compiled Linux

Re: [PHP] PHP debugger

2007-05-16 Thread Miles Thompson
On 5/16/07, Arno Kuhl [EMAIL PROTECTED] wrote: -Original Message- From: Miles Thompson [mailto:[EMAIL PROTECTED] Sent: 16 May 2007 02:15 To: PHP List Subject: Re: [PHP] PHP debugger -Original Message- From: Miles Thompson [mailto:[EMAIL PROTECTED] Sent: 15 May 2007 08:21

[PHP] PHP debugger

2007-05-15 Thread Miles Thompson
I am trying to load a PHP debugger in our most recent build of PHP 5.2.1. The debugger which I am trying to set up is the free, pre-compiled Linux version of dbg ( DBG 2.15.5 dbg modules), from http://dd.cron.ru/dbg/, and all of the instructions have been followed as posted on the NuSphere site

Re: [PHP] PHP debugger

2007-05-15 Thread tg-php
to give some PHP debugging and profiling data. I'm sure there are a dozen other solutions that people will offer up, just wanted to get that one in there :) -TG = = = Original message = = = I am trying to load a PHP debugger in our most recent build of PHP 5.2.1. The debugger which I am trying

[PHP] Re: PHP debugger

2007-05-15 Thread Emil Ivanov
PROTECTED] wrote in message news:[EMAIL PROTECTED] I am trying to load a PHP debugger in our most recent build of PHP 5.2.1. The debugger which I am trying to set up is the free, pre-compiled Linux version of dbg ( DBG 2.15.5 dbg modules), from http://dd.cron.ru/dbg/, and all of the instructions

Re: [PHP] PHP Debugger Recommendations

2006-07-23 Thread Thiago Silva
On Sunday 23 July 2006 00:07, you wrote: These are all ones I've looked at, except for PHPEclipse. Is it not the case that with PHPEclipse one needs to install the Eclipse framework and then PHPEclipse as a plug in? Yes. You have to install eclipse platform, and then, PHPEclipse plugin.

[PHP] PHP Debugger Recommendations

2006-07-22 Thread Dave M G
PHP List, I have been experimenting with using Zend Studio the last week or so, and I apologize in advance if anyone here takes offense, but it has been a most unsatisfactory experience. In order to debug a script that involves anything like a form with user $_POST data, one needs to

Re: [PHP] PHP Debugger Recommendations

2006-07-22 Thread Thiago Silva
, Zend, NuSphere, Komodo and PHPEclipse are main options when it comes to feature rich IDEs, and I guess all of them are multi plataform. For GNU/Linux, there are some folks using Quanta+gubed (a pure php debugger) I belive. Me, myself, I use Protoeditor, wich is strictly editor+debugger

Re: [PHP] PHP Debugger Recommendations

2006-07-22 Thread Dave M G
IDEs, and I guess all of them are multi plataform. These are all ones I've looked at, except for PHPEclipse. Is it not the case that with PHPEclipse one needs to install the Eclipse framework and then PHPEclipse as a plug in? For GNU/Linux, there are some folks using Quanta+gubed (a pure php

[PHP] debugger for CLI PHP scripts...?

2005-05-12 Thread Christopher J. Bottaro
Is there such a thing? You know, with single stepping, breakpoints, examining vars, etc. 100% of my PHP stuff is CLI (wacky, huh?) and I'd really benefit from a traditional debugger. Oh btw, I'm looking for a free/opensource one. Thanks! P.S. Yes, I've searched Google and www.php.net/manual,

Re: [PHP] debugger for CLI PHP scripts...?

2005-05-12 Thread Andy Pieters
On Thursday 12 May 2005 17:35, Christopher J. Bottaro wrote: Is there such a thing? Hi Christopher Spoken as someone who actively uses PHP both in webpages, and for scripts on CLI, the only debugger I am aware of is Gubed (but that's only for PHP Webbpages) Personally, I use the following

Re: [PHP] debugger for CLI PHP scripts...?

2005-05-12 Thread Richard Lynch
On Thu, May 12, 2005 8:35 am, Christopher J. Bottaro said: Is there such a thing? You know, with single stepping, breakpoints, examining vars, etc. 100% of my PHP stuff is CLI (wacky, huh?) and I'd really benefit from a traditional debugger. Oh btw, I'm looking for a free/opensource one. I

Re: [PHP] PHP Debugger 4 Linux?

2004-06-04 Thread Marco Schuler
Am Fr, 2004-06-04 um 00.14 schrieb Nick Wilson: Hi everyone, Can anyone recommend a good debugger for *nix? Zend Studio Many thx! -- Nick W -- Regards Marco -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Debugger 4 Linux?

2004-06-04 Thread Yann Larrivee
Xdebug, is free and works on unix and windows and it is a PHP extension. www.xdebug.org Yann On Fri, 2004-06-04 at 09:51, Marco Schuler wrote: Am Fr, 2004-06-04 um 00.14 schrieb Nick Wilson: Hi everyone, Can anyone recommend a good debugger for *nix? Zend Studio Many thx! --

[PHP] PHP Debugger 4 Linux?

2004-06-03 Thread Nick Wilson
Hi everyone, Can anyone recommend a good debugger for *nix? Many thx! -- Nick W -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] debugger listener

2003-12-22 Thread Alberto M.
php 4.3.0 + apache + linux suse 8.2 I tried to install xdebug (http://www.xdebug.org/install.php) as an precompiled module, but it seems not running when I did reload apache. I mean, I can't see it in the module list in phpinfo() page. Also, I don't know how to catch up events sent by debugger,

Re: [PHP] debugger listener

2003-12-22 Thread Alberto M.
Alberto M. wrote: php 4.3.0 + apache + linux suse 8.2 I tried to install xdebug (http://www.xdebug.org/install.php) as an precompiled module, but it seems not running when I did reload apache. I mean, I can't see it in the module list in phpinfo() page. Also, I don't know how to catch up events

[PHP] Advanced PHP Debugger

2003-01-30 Thread Fredrik Johansson
Hey, Where can I find a compiled php_apd.dll for Windows 2000 / PHP 4.3.0? If you have it, it would be great if you could send it to me (to me personally and not the list). Thanks! // Fredrik Johansson -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Advanced PHP Debugger

2003-01-05 Thread Fredrik Johansson
Hi, If someone out there has an .dll file for the Advanced PHP Debugger (APD) extension to run i Windows 2000 (PHP version 4.2.2) I would be glad if you could send it to me. I have tried to compile one myself but has failed each and every time :( Regards, Fredrik Johansson -- PHP General

[PHP] which PHP debugger?

2002-11-19 Thread Otakar Kverka
Hi all, please which PHP debugger is the best one? (fast keyboard commands, variables, includes, reliability etc.). Which PHP debugger works well under Windows, which under Linux? thanks... --- Odchoz zprva neobsahuje viry. Zkontrolovno antivirovm systmem AVG (http://www.grisoft.cz). Verze

Re: [PHP] which PHP debugger?

2002-11-19 Thread bbonkosk
, please which PHP debugger is the best one? (fast keyboard commands, variables, includes, reliability etc.). Which PHP debugger works well under Windows, which under Linux? thanks... --- Odchozí zpráva neobsahuje viry. Zkontrolováno antivirovým systémem AVG (http://www.grisoft.cz). Verze

Re: [PHP] which PHP debugger?

2002-11-19 Thread Adam Voigt
it is a compiled language where you have fancy debuggers to set breakpoints, step through the code, etc... Why not use the functions built into PHP? echo ; if a mysql problem: mysql_error() -Brad Hi all, please which PHP debugger is the best one? (fast keyboard commands, variables, includes

[PHP] PHP debugger

2002-10-04 Thread Anna Gyor
Hello, is there any application with I can test my php-based web site? I know Zend Studio and PHPEdit but I can't use them if any variable comes from an other html site. (For example in logging there are loginname and password as html variable and the debugger don't see them and the script

Re: [PHP] debugger

2002-06-26 Thread B i g D o g
it turned off and I have errors being logged to a file. Debugger for poor developers... B i g D o g - Original Message - From: Anil Garg [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 26, 2002 2:47 PM Subject: [PHP] debugger hi, in perl i used perldb for debugging

Re: [PHP] debugger

2002-06-26 Thread Anil Garg
PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, June 26, 2002 5:54 PM Subject: Re: [PHP] debugger There are some IDE's that support debugging or you can just use the parser. It will tell you the problem and spit out a warning or error depending on how you have your php.ini set up. I usually have

[PHP] [debugger] ??

2002-06-10 Thread Dan Bolser
I want to use this package, with DBG v2.10pl1, (C) 2000,2001, by Dmitri Dmitrienko, [EMAIL PROTECTED], http://dd.cron.ru but I dont want to spend any money. Any one know of a nusphere hack? What is the story behind that? Cheers, Dan. -- PHP General Mailing List (http://www.php.net/) To

[PHP] Debugger

2002-05-10 Thread Jose Leon
Hello: I have been browsing the web for a good solution to debug php code, I have found several ones, but none of them meet my requeriments. I create a development tool for PHP (QaDRAM Studio) and I want to be able to debug php code with it, my question here is: Why PHP 4 has no built-in

[PHP] debugger

2002-04-20 Thread Evan
Hi to all!!! Can anyone tell me how to debug in PHP? When I use ASP simply I write stop (VB) or debugger (JSCRIPT) to set a breakpoint and open the Microsoft Script Debugger. With PHP I can't find a way to do a similar thing. I downloaded the DBG PHP debugger but I don't understand how to use

Re: [PHP] debugger

2002-04-20 Thread heinisch
At 20.04.2002 21:15, you wrote: Hi to all!!! Can anyone tell me how to debug in PHP? When I use ASP simply I write stop (VB) or debugger (JSCRIPT) to set a breakpoint and open the Microsoft Script Debugger. With PHP I can't find a way to do a similar thing. I downloaded the DBG PHP debugger

Re: [PHP] Debugger, Debugger and Debugger

2001-02-16 Thread Thies C. Arntzen
On Thu, Feb 15, 2001 at 04:22:04PM -0500, Toby Butzon wrote: I've read that several times... so does that mean now the only debugger for PHP4 is the Zend one? there's http://dd.cron.ru -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

[PHP] Debugger, Debugger and Debugger

2001-02-15 Thread Ricardo D'Aguiar
d in Linux/Unix, what is this? What this means? 3 I need to debug my script what is the best way to do that? (I tried the "Zend IDE Test Drive" but after 30 days is not for free and can't put to work the "The DBG PHP Debugger"). 4 What is the difference between Zend d

Re: [PHP] Debugger, Debugger and Debugger

2001-02-15 Thread Chris Lee
command in Linux/Unix, what is this? What this means? 3º I need to debug my script what is the best way to do that? (I tried the "Zend IDE Test Drive" but after 30 days is not for free and can't put to work the "The DBG PHP Debugger"). 4º What is the difference betwe