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

learn more… | top users | synonyms

0
votes
0answers
12 views

Debug a PHPUnit test with xdebug using DBGP Proxy

We use DBGP Proxy for making xdebug works with multiple hosts. To debug a page, i create a run/debug configuration (PHP Web Application) and add the XDEBUG_SESSION_START=mykey to the start URL like ...
1
vote
0answers
13 views

CakePHP unit test code coverage $this->request->data clause not executed

I am completely new to PHP unit testing (using PHPUnit) and CakePHP(2) as a framework, and I'm coming back to PHP after 5 years away. I've got a website up and running and am writing unit tests as I ...
0
votes
1answer
11 views

Can't start php xdebug session from eclipse

I'm trying to setup php debugging on my mac. I'm using eclipse together with xdebug. The application runs on a mamp server here is my .ini [xdebug] ...
0
votes
0answers
7 views

Xdebug loaded but not working (OS X)

This is kind of weird. All the solutions I found elsewhere didn't work. I'm on Mac OS X (Mountain Lion), running a XAMPP server. I'm trying to install Xdebug. After a LOT of fiddling, compiling, ...
0
votes
1answer
26 views

PhpStorm | WebMatrix (IISExpress) | Xdebug.remote_port | — Which Port(s) to put where?

I've got a localhost webserver setup with WebMatrix and its IISExpress. It runs the webserver as http://localhost:<port>. I've also installed xdebug in it which runs perfectly for error-handling ...
0
votes
0answers
48 views

PhpStorm debugger not stopping at BreakPoints; keeps waiting for xdebug _SESSION_

EDIT: There was a syntax error in php.ini. Updated to show below... Updated question : PhpStorm | WebMatrix (IISExpress) | Xdebug.remote_port | — Which Port(s) to put where? I'm running ...
0
votes
1answer
14 views

When you run a PHP debugger, and you step through an echo, should the browser output be dynamically updated?

I have a PHP file with the following contents: 1. <?php 2. $string = 'Hello world!'; 3. echo $string; 4. ?> I put a break on line 2 and line 4. I run the debugger. The browser output opens, ...
0
votes
0answers
31 views

Trying to debug phpunit unit test on cli using xdebug fails

I'm using PHPStorm which is configured to use xDebug (I can debug via the web browser just fine) I run the debugger in PHPStorm which has the idekey of 11854 and I'm trying to debug a unit test, and ...
0
votes
0answers
19 views

Debugging DOMDocument php with xdebug - var_dump not showing properties

I'm having trouble with dumping DOMDocument objects with var_dump. As example: $DOMDocumentNode = new DOMDocument(); $DOMDocumentNode->loadXML('<example a="b">Test</example>'); ...
1
vote
2answers
26 views

Codeigniter + NetBeans + XDebug : Debugger not working after redirect()

I am working on a project that uses CodeIgniter. I use Netbeans as my IDE and I have Xdebug installed. I am using XAMPP for local development. What Works: Xdebug is working fine for normal PHP code. ...
0
votes
2answers
59 views

unset $_POST doesn't works

Here is my code http://pastebin.com/DtK8MMtU when user pressing 'Next turn' button, $_POST["turnOver"] is getting set. Then script goes into this section if (isset($_POST["turnOver"])) { ...
0
votes
0answers
8 views

XDebug not showing stack and trace in Sublime Text 2 on Window

I have the Sublime Text 2 XDebug plugin installed but the stack and trace panes are empty no matter what I do. The menu works after pressing shift+f8. The "add breakpoint" also works. However, ...
0
votes
0answers
20 views

Running xDebug with Eclipse classic 4.2.2 for PHP

Ok now i have downloaded Eclipse Classic 4.2.2, 183 MB - eclipse-SDK-4.2.2-win32-x86_64 unzipped it, configured the preferences. Installed php from ...
0
votes
0answers
14 views

XDebig could not connect to client

I am trying to debug with NetBean Mac locally. This is my php.ini [xdebug] xdebug.default_enable=1 xdebug.remote_enable=1 xdebug.remote_handler=dbgp xdebug.remote_host=localhost ...
0
votes
0answers
13 views

PHP Editor With FTP Based Xdebug Support

does anyone know of a php editor or ide that supports remote xdebug sessions using remote ftp without having to download all the files locally? the idea is I add the ftp host, browse and open the ...
0
votes
1answer
15 views

ini_set for xdebug.remote_enable not work

I'm trying to disable xdebug on "Prod" environment(in php.ini this option is "1") via command: ini_set('xdebug.remote_enable', '0'); But this is not work, phpinfo show this option value is enabled. ...
0
votes
2answers
31 views

How to show currently debugged line in PHPStorm?

Got remote debugging working in PHPStorm (version 6.0.2.) and every time execution stops on a breakpoint it shows me the current variables etc. But it does not actually show me the file and line ...
2
votes
1answer
62 views

How to track variable changes in PHP

Good day. I've been working on project that contains many variables and sessions and where most of the job is done "under the hood" and via ajax. The problem is that I try to debug my project and I ...
0
votes
0answers
41 views

Debug PHP called through Javascript in Aptana

I can debug my PHP scripts using Aptana 3.4. In "Debug Configurations" I simply choose "Use specified script" and when I run that script in Firefox, it automatically breaks in Aptana. Now I'd like to ...
0
votes
0answers
14 views

xdebug is skipping lines while debugging

Using Eclipse/xdebug n Windows 2008 server. Yesterday I was able to successfully debug one php file. Today, with a very similar php file, it is skipping lines and then going off into oblivion. Code ...
0
votes
0answers
21 views

XDebug mis-reporting fopen as slower than it is? How do I get more accurate information?

I am profiling a PHP website that seems a little slower than it should be with XDebug. I checked the profile information with KCacheGrind and according to that, 80% + of the load time is caused by ...
0
votes
0answers
25 views

Sublime Debugging with Xdebug - Array

currently i am got xdebug and sublime set up but i have problems to find out array values while debugging. The current debug view would be $current_user->roles [array] = $current_user->allcaps ...
0
votes
0answers
34 views

XAMPP can not install xdebug

Hello I have installed xampp, changed the php.ini to this: [XDebug] zend_extension = "C:\xampp\php\ext\php_xdebug-2.2.3-5.3-vc9.dll" xdebug.profiler_append = 0 xdebug.profiler_enable = 1 ...
0
votes
0answers
10 views

How do I debug a request done by drupal's simpletest internal browser?

I'm using Xammp with Xdebug and Netbeans for development and debugging of a Drupal site. When debugging tests I can easily debug the main thread running the test but I can't hook up to the requests ...
0
votes
2answers
18 views

Is there a back button in the Eclipse PHP Xdebug debugging pointer?

I'm debugging PHP with Xdebug using Eclipse. All went OK except when I would like the debugging pointer to go back to the previous lines. Is this possible? I don't want to restart the debugging. In ...
0
votes
1answer
10 views

Moving from another page instead of index.php during debuggin with XDEBUG

I am trying to debug my application, but the problem i am facing with is, i want to debug a page that is in the middle of the application, and whenever i am trying to start xdebug in my Netbeans ...
0
votes
1answer
30 views

Xdebug installation on remote server for profiling

I am trying to install Xdebug on remote server in AWS cloud for profiling purpose. I installed Xdebug i checked using phpinfo() and i kept some setting to enable profiling option on server, it's ...
5
votes
0answers
54 views

phpstorm xdebug eval fatal error on breakpoint cakephp

I have phpstorm 6.02 setup and configured for xdebug on osx (mountain lion) apache with a cakephp application. If I set a breakpoint in my "AppController" it stops no problem and works. When I setup ...
0
votes
0answers
46 views

PhpStorm WAMP WordPress admin debugging

I am using WAMP, PhpStorm, and WordPress. I have set up debugging and all works well on the front public end of the WordPress blog. I can see break points and this is as expected very helpful. ...
1
vote
1answer
49 views

ZF 2: tutorial application, 'Config being merged must be an array […]'

My Enviroment (Zend Server): PHP Version 5.4.11 Zend Server Version: 6.0.1 Zend Framework: 1.12.3, 2.1.4 Zend Server Gateway: 0.9.0.201301302347 Build: 69400 So I tried to write my first ...
0
votes
1answer
21 views

unable to get xdebug to work

Have been having trouble getting xdebug to work in MAMP - well it seems ok, but I can't get codebug or netbeans to pick up on the port. Running MAMP with the following: Apache 2.2.23 MySQL 5.5.29 ...
0
votes
0answers
28 views

Debugging not breaking in visual studio 2012 cakephp project

I'm using the PHP Tools for visual studio 2012 and I am trying to get the debugging to work. My project is a cakephp project. I have tried setting my project properties to use a start url. I made a ...
0
votes
0answers
9 views

php xdebug: How to profile forked process

I am running a PHP daemon to be profiled. The started php process loads all required data, forks itself to distribute workload over all cores, waits for the forked children to finish, and collects ...
0
votes
0answers
32 views

How to use Xdebug to decode Ioncube

I have been researching for a few days now, and have found no useful tutorials or guides on how to perform a decode of an ioncube encoded file by using xdebug.. Multiple SO post answers do not serve a ...
0
votes
1answer
18 views

Lost Xdebug.ini file while installing Xdebug

Accidentally i lost xdebug.ini file in /etc/php5/conf.d folder. How to get back that while i am trying to install xdebug using apt-get,it's giving an note like below. Not replacing deleted config ...
0
votes
0answers
12 views

XDebug in Netbeans with php does not return http response

I am using Netbeans with xdebug to debug php files. This worked without problems until suddenly no http response is returned anymore if I call the file in debug mode. In the file tree I click on my ...
0
votes
0answers
36 views

how to configure netbeans xampp xdebug for php debugging adobe air client

I have a working xampp, netbeans with xdebug which works beautifully when i debug my php scripts which throws out js (viewed on my firefox browser.) In short php server, browser client working ...
1
vote
1answer
43 views

Exclude other scripts from debugging in PhpStorm

When I start debugging and use another script on the server (e.g. Adminer), i.e. a script outside the project that is not intended to be debugged, the script is paused by PhpStorm and following two ...
0
votes
1answer
37 views

0% Classes code coverage in phpunit/xdebug

I'm using PHPUnit/Xdebug for running unit tests and although my Methods and Lines coverage percentile is in the 90s, Classes always reads as 0%. How is the classes coverage determined and is there ...
-1
votes
0answers
30 views

How do I integrate a debugger into an SVN - PHPunit - Eclipse setup?

I'm having trouble setting up a debugger for PHPUnit in Eclipse. I've looked at this page "http://pkp.sfu.ca/wiki/index.php/Configure_Eclipse_for_PHPUnit" which describes how to integrate a ...
0
votes
0answers
7 views

How to debug a request from ZendQueue?

i am using the ZendQueue for some jobs in my PHP application. I want to debug when the queue is executed by then ZendServer. Is that technically possible?
0
votes
0answers
10 views

enable xdebug on bluehost shared server

I want to setup phpunit on a demo site on a bluehost shared server. I want to check if the php codes work on the environment after I made modifications and added more components. With this, I need to ...
0
votes
0answers
19 views

Debugging APS package in Eclipse

I am new to APS technology (for SaaS). I know that Eclipse has a plugin for creating and debugging APS. I've installed it. But at the moment I can't debug "Helloworld" APS package which contains PHP ...
0
votes
1answer
55 views

Debug Symfony2 projects in PHPStorm

I have a problem in debugging symfony2 applications in PHPStorm with xdebug because of Request::createFromGlobals() method. All other project debugs well. The problem occurs, when the execution ...
2
votes
1answer
23 views

How to display XDebug errors only to my IP address?

I'm in a non-ideal situation where I have to debug a website a live website running PHP5.4 on a LAMP stack. After enabling XDebug in php.ini and setting display_errors to true, I get nicely formatter ...
0
votes
0answers
31 views

xdebug issue with IIS and php 5.2

I have searched for this question so far no success... I am using php 5.2 (IDE:netbean) with IIS 8 as web server. I installed php_xdebug-2.2.2-5.2-vc9-nts xdebug. Here is my php.ini changes: ...
0
votes
1answer
56 views

On Mountain Lion, how do I use Xdebug under Sublime Text 2 for use with a remote server?

I'm looking to access a remote machine (SSH, SFTP, whatever) and debug some PHP on it, and I'm looking to use Xdebug. From what I see, Xdebug is installed by default in Mountain Lion, so I just ...
2
votes
1answer
23 views

Is 'no breakpoints stop` finally solved in Eclipse PDT + Xdebug?

What is the current state of debugging PHP applications with Eclipse PDT and Xdebug. Has anyone got it finally to work, i.e. to stop at breakpoints defined in Eclipse (not using xdebug_break())? I've ...
2
votes
0answers
54 views

Can't install xdebug using pecl

This is what I have done: first of all I installed php5-dev. php.h is in /usr/include/php5/main. After that: cd /opt/lampp/bin ./pecl install xdebug Result: /tmp/pear/temp/xdebug/xdebug.c:25:17: ...
0
votes
1answer
48 views

XDebug: how to debug remote console application?

I have read this docs: http://xdebug.org/docs/remote I can debug my web application. But the debugger doesn't launch for console command. My .ini file for XDebug (it works): $ cat ...

1 2 3 4 5 18