Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to get Xdebug remote debugging to work, I am using PHPStorm as my IDE. My webserver/code is hosted on a remote machine (amazon ec2).

I have the following lines in my php.ini on my remote server (PHP CLI since I am doing PHPUnit debugging)

zend_extension=/usr/lib/php5/20090626+lfs/xdebug.so
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_handler = dbgp
xdebug.remote_mode = req
xdebug.remote_connect_back = 1
xdebug.remote_port = 9000

Since I am programming from my home network, I opened port 9000 on my personal router. I have PHPStorm's xdebug server set to point to the remote server on port 80 with Xdebug as it's Debugger.

Now when I try to debug a PHPUnit test from PHPStorm it just says 'waiting for incoming connections with ide key '12115' Except, it picks a random ide key every single time (I want to hope that PHPUnit is setting the idekey on the server itself)

I have been trying to get this to work for over 10 hours, I have tried defining my a specific remote_host in the php.ini instead of using remote_connect_back but that also did not work. I have tried setting an idekey in php.ini and that did not work as well.

Is there anyway to confirm that Xdebug is working as intended on the webserver side? How can I test my Xdebug settings without using Phpstorm, I don't know if it is a connection issue between my home network and the remote server or what.

Any guidance to help narrow down the issue would be great.

share|improve this question
I have recently tried to create an ssh-tunnel for port 9000 from my local laptop to the remote server before trying to debug and it still does not seem to work ( I changed the setting xdebug.remote_host to the loopback address 127.0.0.1). Any suggestions? – Rodrigo Salazar Mar 22 '12 at 19:12
I'd enable xdebug logging and also use tcpdump to see if the connection is being made, then enable debug logging for PhpStorm: devnet.jetbrains.net/docs/DOC-1202. Try if it works with zero configuration approach: blog.jetbrains.com/webide/2011/02/…. – CrazyCoder Mar 22 '12 at 23:38

2 Answers

If you're running Xdebug 2.2.0RC1, then the remote debug-log (http://xdebug.org/docs/all_settings#remote_log) will tell you succeeded and failed connection attempts. That might pinpoint whether the problem is on the Xdebug side, or phpstorm side.

share|improve this answer
So doing this I was able to gather something at least: When I run a php file through php-cli or through 'phpunit' on the command line, there are entries placed onto the xdebug log. But when I run tests through my phpstorm remotely, I can get the results of the test but there are no entries added into the xdebug log. I still can't resolve the problem though. – Rodrigo Salazar Mar 23 '12 at 21:33

In my case, the problem was that I had the xdebug config in /etc/php/fpm/php.ini, but php-cli uses /etc/php/cli/php.ini.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.