I managed to install xdebug and enable it through local php.ini files when needed.
It was working just fine for about a month, but today It doesn't.
If I try to start a debug session with Zend Studio IDE, it gets stuck in "57% launching: waiting for xdebug session"
If I run this command $ sudo netstat -tunlp | grep 9000 on server console, I get:
tcp 0 0 127.0.0.1:9000
I'm trying to set up a development box using Virtualbox / Vagrant / Puppet with the intention of eventually provisioning all my machines up to production. However this is stopping me going forward at the moment.
When in run
Code:
php -v
php reports that xdebug v2.2.1 is installed, and
Code:
php -m
displays xdebug in zend modules (with no other modules installed) and in php modules. Neither command gives any errors or warnings. However, when I visit my phpinfo() page, there is no mention of xdebug. I have restarted apache several times without success. Anything else I can try?
I've installed Xdebug on Centos 6.2. It writes cachgrind files to /tmp just fine, But I want it to write to /tmp/xdebug instead.
I've added this to my php.ini:
xdebug.profiler_output_dir = /tmp/xdebug
and changed the owner of the folder to apache:apache and chmode it to 777.
But, it is not writing any files.
I've installed (via pecl) xdebug. It is installed (as phpinfo() output indicates), but it doesn't seems to work with CGI (with CLI it works). I've restarted apache, without result.
Windows+php+apache
debugging works except profiling. The "profile" btn. is clickable when choose zend debugger as the debugger server but, turn gray and unclickable when choose xdebug. Does zend studio support xdebug profiling?
I am trying to configure Xdebug for cachegrind but I can't manage to enable the profiler feature in order to dump executed web pages.
I'm using the official guide (and a few more with similar settings) and it doesn't seem to work.
I've tried on both of my Linux machines (Ubuntu and Fedora).
I am trying to set up an XDebug connection on a remote linux server to my local IDE (PHPStorm) running on Mac OS X. PHP just hangs forever trying to connect. I'm pretty sure this is a matter of making my Mac accessible to the linux box. I'm quite familiar with how to set up XDebug with PHPStorm and I've read the other posts here and elsewhere on the subject.
I'm really having difficulty finding out how to install xdebug for php 5.3.17 on centos 6.3.
I've tried this link (for centos 5.6 admittedly) but had no luck.
Can anyone point to the right RPM repository or yum command please?
Many thanks