Tagged Questions

XDebug is a PHP extension for profiling, interactive debugging and gathering code coverage information.

learn more… | top users | synonyms

41
votes
4answers
2k views

So eclipse and xdebug walk into a bar, and then my apache server dies

I am using windows xp x86, wamp, apache2, php 5.3 x86, eclipse php, and xdebug, running on localhost as both a virtualhost and an https virtualhost eclipse version info Eclipse for PHP Developers ...
15
votes
5answers
309 views

Efficiently gathering information about the inner workings of a new PHP project. Tools? Techniques? Scripts?

I am soon to join a PHP project that has been developed over the course of several years. It's going to be huge, sparsely documented, many files, piles of code, no consitent quality level is to be ...
14
votes
2answers
3k views

How to trigger XDebug for a command line PHP script?

XDebug offers the configuration directive "xdebug.profiler_enable_trigger" that allows to activate profiling by passing the GET or POST parameter "XDEBUG_PROFILE" when calling a script via HTTP. This ...
11
votes
5answers
3k views

Checking a URL is valid (from php soap client)

I am writing a web app which will allow the user to specify a URL for a SoapClient. I wanted to validate that php can connect to the client when the user submits a form. I thouhgt I could do this via ...
10
votes
12answers
5k views

eclipse xdebug session never completes

I am trying to get xdebug working with eclipse (3.5) / php (on xampp windows 7). I have verified xdebug is enabled in php - I have the fancy output and my phpinfo shows all the xdebug stuff. I have ...
9
votes
2answers
188 views

Can XDebug track separately the time spent for profiler calls?

I am using XDebug as a profiler for a PHP application. I have run into a situation where XDebug changes severely the results in such a degree that they are useless. Here a simplified example to ...
9
votes
11answers
5k views

Remote debugging won't stop at breakpoints

I'm having a problem with xdebug not stopping at breakpoints when using remote debugging (everything is fine when running scripts via the command line). It will break at the first line of the program, ...
9
votes
7answers
3k views

XDebug trace gui?

Hey, I'm trying to find a gui to parse xdebug trace files. Although you can make them human readable, the sheer number of lines makes it unusable. I'm looking for something like kcachegrind but for a ...
8
votes
2answers
94 views

Is there a PHP setting that sets whether you can index the result of a function?

I have two servers. They are both running php 5.3.3. This code works on one server and returns a syntax error on the other. Is there a php ini setting that affects this behaviour? I can't find ...
8
votes
3answers
168 views

Configuring subdomains in Eclipse PDT & xDebug

I'm trying to set up a local environment for developing and testing an existing PHP application. I've chosen Eclipse PDT as my IDE and xDebug as the debugging module. When testing individual files on ...
7
votes
1answer
32 views

What is the unit for memory values in XDebug traces?

What is the unit for memory values in Xdebug traces? bytes? For instance, I have these lines: TRACE START [2011-11-30 13:11:18] 0.2122 2618704 +489048 -> require_once(...) ...:8 ... ...
7
votes
4answers
339 views

Vim and Emacs users, how to debug as effectively as Eclipse/Netbeans?

After reading books like The Pragmatic Programmer, one thing it strongly suggested was to pick a text editor and master it. I chose to use Emacs and stuck with it for about half a year. However, the ...
7
votes
27answers
12k views

Why does xdebug crash apache on every XAMPP install I've tried?

I've installed the Windows XAMPP package on three separate computers, 2 running Windows Vista 32 bit ( 1 Ultimate / 1 Home Premium ) and 1 running Windows Vista 64 Home Premium. After enabling xdebug ...
6
votes
1answer
264 views

Why is my xdebug not styled?

So I have Xdebug enabled on my local version of PHP, and I'm wondering if anyone can give me an answer as to why the output isn't styled in the default way (with the orange background, table design). ...
6
votes
1answer
2k views

How to turn off xdebug in script?

I have installed xdebug, but it is making my unit tests much slower. Is there a way to disable it via ini_set or other way. I tried xdebug_disable(), but no difference at all, unless I change php.ini ...
6
votes
4answers
685 views

Apache not loading Xdebug, but does when started from the Command Line

I know that this sounds odd, but believe me, it's what is happening. Here are my system settings: Windows7 Apache 2.2 PHP 5.2.12 Xdebug 2.0.5 I have XDebug configured in my PHP.ini file. When I ...
6
votes
1answer
797 views

How can you set-up PHP + xDebug + (x)Unit + Eclipse to work with breakpoints in unit tests?

Have tried for quite some time to get this to work correctly but to no luck. Basically, I have Eclipse (3.3) with PHP Development Tools (PDT), and the PDT XDebug plugin as well as the SimpleTest ...
6
votes
10answers
17k views

How to debug PHP with netbeans and Xdebug

I have recently tried to get going with Netbeans 6.5 after it rated so highly in the IDE review by Smashing magazine. ...
6
votes
2answers
3k views

Multiple users XDebug and PHP Debugging

How do you setup a multi-developer XDebug PHP environment? I have the following setup: I have a linux machine with Apache and Xdebug loaded and a php.ini file that I think is correct. I found a ...
5
votes
2answers
359 views

Xdebug isn't showing php variable values or object structures in Netbeans

I'm on a new box at work setting up my environment. I configured netbeans like the instructions said here. I've done this before. It was rather straight forward last time and worked the first time ...
5
votes
1answer
468 views

Profiling Code on Production

I'm toying around with the idea of implementing something that profiles code on the production server and wanted some best-practice advice. Obviously it's a bad idea to profile ALL requests because of ...
5
votes
3answers
622 views

Linux lightweight PHP editor or IDE that supports xdebug

It's probably just a pipe dream, but... I'm looking for Linux php editor/IDE that has debugging support (xdebug). I know there is a couple of them like: Eclipse, Aptana, Netbeans, - but they all ...
5
votes
1answer
716 views

PHP Netbeans: xdebug stops on every include() or require()

I've just discovered PHP debugging using xdebug integrated in netbeans IDE and I think it's great! how did I live without it? :) But there's one problem: if I set a breakpoint deep in my code, I have ...
5
votes
3answers
2k views

Debugging php-cli scripts with xdebug and netbeans?

I have managed to initiate php-cli script debug session from the IDE itself, but I need to start the debugging session from the shell / command line. These are rather complex maintenance PHP scripts ...
4
votes
1answer
296 views

How do a read a xdebug profile in webgrind?

I have setup xdebug and webgrind and I have generated a profile so I can start improving the speed of my code execution. I have displayed the profile in webgrind but I haven't got a clue what any of ...
4
votes
3answers
122 views

PHP XDebug disable breaking on each request

I'm writing a webapplication that uses JS and PHP. Each time I refresh I get about 5 ajax calls to my php script. This is getting quite annoying using XDebug since it breaks on each of those request ...
4
votes
1answer
931 views

Two versions of PHP on Mac OS Snow Leopard & Installing xdebug using PECL

I was using MAMP (standard) for PHP Development for some times before I read some posts about built-in Apache/PHP on Snow Leopard. I decided to shift to those I am provided with but seems to have many ...
4
votes
2answers
617 views

Xdebug and No Profiling Output

This is a similar problem to XDebug profiling in PHP - can't get output but mine is on windows and I have the full path specified (which solved his problem) I am not getting any output even ...
4
votes
3answers
2k views

What PHP, Xdebug and Eclipse configurations work on Windows 7 64 bit?

I have been mucking around for days, trying to find the right combination that lets me debug with breakpoints and variable viewing, in Eclipse, without crashing Apache. PHP 5.3? PHP 5.2? Eclipse ...
4
votes
4answers
572 views

Will enabling XDebug on a production server make PHP slower?

The title pretty much says it all...is it a bad idea ? I'd like to have the enhanced debug messages that XDebug provides on the server. [edit] Just to make things clear. I'm aware there are security ...
4
votes
1answer
479 views

Tools/Techniques for Debugging Memory Leaks/Usage Bugs in PHP

I've got a command line script that is running an array() of files through a loop, and using the file name as an argument to call a method on a helper object. Each run through the script, PHP's ...
4
votes
3answers
1k views

Netbeans xdebug nightmare

I know what you're thinking, ANOTHER netbeans xdebug post? Well, I've tried everything I've seen in other posts, and nothing seems to work. Here's my setup: OS: Ubuntu 9.10 PHP: 5.2.1 Netbeans: ...
4
votes
2answers
2k views

What's the Difference Between Extension and zend_extension in php.ini?

When I installed Xdebug through pecl, it added the following line to my php.ini file. extension="xdebug.so" and everything I used worked. Until today. Today I was having trouble setting up Xdebug ...
4
votes
3answers
2k views

Launch XDebug in Netbeans on an external request

I'm using Netbeans 6.7 and XDebug to debug a PHP site on my machine, launching the request from within Netbeans (Project->Debug). This works fine, and is very useful. My question is: Is it possible ...
4
votes
3answers
1k views

are there any XDebug alternatives for debugging PHP?

I'm using Vista and need to debug PHP, XDebug crashes in Vista, I tried several suggestions but nothing works. Are there there any other alternative to XDebug that works on Vista and with Eclipse ...
3
votes
1answer
88 views

Enable “break on error” with xDebug in PHPStorm

I can debug with xDebug in PHPStorm by setting breakpoints. But I really want to jump back into IDE when runtime error has occurred (e.g. null reference). Is that possible?
3
votes
2answers
101 views

How to debug PHP test files in Netbeans

When I Right Click > Debug File, the test runs successfully, but Netbeans can connect to xdebug. I can confirm that debugging works in the normal Debug Project. Is it even possible to debug a test ...
3
votes
2answers
67 views

Debuger is not hitting , though Xdebug is installed

I have enabled Xdbug from php.ini. How do i enable debugging from eclipse. I set the debuger in eclipse but they are never hit, each time when ever it try to debug a new configuration is created. ...
3
votes
3answers
386 views

While I am debugging PHP Script in Eclipse, it doesn't load mysql extension

I have installed Eclipse and xDebug on Ubuntu 10.10. When I debug some php file as a page, that works fine. When I try to debug it as a script, I give the message that mysql extension is not loaded. I ...
3
votes
1answer
713 views

Does xdebug beautify var_dump?

According to this article, http://devzone.zend.com/article/2803, var_dump is supposed to beautify the outputs. I have installed xdebug on my local host with PHP Version 5.3.3-1ubuntu9.2. I have this ...
3
votes
2answers
143 views

PHP debugger software?

Is there a PHP debugger? Which ones are popular?
3
votes
2answers
1k views

xdebug won't stop at breakpoint

I spend some hours to set up my IDE to debug PHP with eclipse and xdebug.. Everything is ok except the breakpoint I set on eclipse. If I double-click on a line to add a breakpoint, the debugger want ...
3
votes
1answer
166 views

Using XDebug from terminal (got only SSH access)

When I develop with the server on my workstation I can use XDebug from my IDE and debug variables, etc. Many times the server is on a remote machine where I have only SSH, so I only edit with vi. In ...
3
votes
2answers
2k views

Debugging IDE's port connection to XDebug: “Waiting to Connect”

Preamble Like many, I've spent more hours debugging my IDE’s connection to XDebug than I have using XDebug to debug my programs. I’ve gotten it to work repeatedly, but every once and a while I get ...
3
votes
3answers
198 views

Making PHP performance profiling predictable

I'm using xdebug with PHP to do some performance profiling. But when I run the same script more than once, I often get very different times. So it's hard to know how much faith to put in the results. ...
3
votes
1answer
257 views

Configuration parameter in xdebug for allowing multiple hosts on remote machine

I am working on one web application. The project located on my linux box i.e. server. We are remotely accessing this machine from windows. I am using xdebug for debugging alongwith Eclipse PDT. ...
3
votes
1answer
757 views

Code coverage fails with PHPUnit and the Zend Framework

I have some issues with code coverage reports in PHPunit and the zend framework. Whenever I run a phpunit test the code coverage fails returning the following message: PHPUnit 3.4.15 by Sebastian ...
3
votes
3answers
1k views

Xdebug ignores breakpoints

Hey guys, i am currently trying to get xdebug to work on our development server. As client i am using netbeans and the connection so far works without problems. But when i try to set a breakpoint ...
3
votes
3answers
993 views

Using netbeans, xdebug, symfony and phpunit together

I installed xdebug on my Apache and if I define a breakpoint in Netbeans, the execution breaks fine. But if I execute the tests with symfony phpunit:test-all, the execution will not break on the given ...
3
votes
3answers
3k views

Can't use Xdebug to debug Code Igniter App using Netbeans 6.8 IDE

I can't use Xdebug to debug an application built with Code Igniter, but I can use it to debug any other PHP file as long it doesn't use the same Structure for url solving that Code Igniter uses. ...

1 2 3 4 5 9