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
ive been working with xdebug http://xdebug.org/lately. you wont find me paying for zend studio; im on the open source tip :) i must admit though, the experience has been anything but painless. however, if you work w/ legacy spaghetti code, or youre just sick of writing echo statements on the

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
Don't know if it'll do what you want it to do...and if you're using Joomla, it might be tricky (or not... havn't messed with Joomla enough to know) to insert it into the system in a meaningful way.. but check out this: FirePHP: http://www.firephp.org/ Works with Firebug Firefox extension to

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
On Saturday 22 July 2006 13:43, Dave M G wrote: Looking on the net, I can find many PHP *editors*, but they do not have debugging features. I need something with call stacks, break points, etc... I'm not familiar with Windows options (only PHPEdit comes to my mind), but as far as I can tell,

Re: [PHP] PHP Debugger Recommendations

2006-07-22 Thread Dave M G
Thiago Silva, Thank you for responding, and for recommending some PHP debuggers that I had not yet heard of. I'm not familiar with Windows options (only PHPEdit comes to my mind), but as far as I can tell, Zend, NuSphere, Komodo and PHPEclipse are main options when it comes to feature rich

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] 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