How to Debug WordPress theme with PHPStorm

I’ve installed PHPStorm (8) and trying to debug WordPress theme using xDebug. I tried chrome browser extension and some other settings in the PHP Storm settings.

I’ve searched a lot but still unable to attach the page to the debugger. What I want is to run the code line by line and check variables etc.

Read More

Can someone tell me what exactly is required so the debugging works?

I’ve following structure:

WAMP is at:  c:wamp

Project is:  d:projectstest

alias is: http://localhost/test/

When I opened the project in PHP Storm. It identified it as WordPress project. But it never attaches the browser to debugger.

Edit
Here is the related xDebug code in php.ini

zend_extension = "c:/wamp/bin/php/php5.3.13/zend_ext/php_xdebug-2.2.0-5.3-vc9.dll"

[xdebug]
xdebug.remote_enable = 1
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "c:/wamp/tmp"
xdebug.remote_port = 9000

I also tried true instead of 1. Also tried without providing any port.

Related posts

Leave a Reply

2 comments

  1. There seem to be a lot of ways to set up debugging. There are browser plugins, and bookmark commands, and all sorts of elaborate setups.

    For the most part, I always want debugging enabled while I’m developing. If that’s true for you, you might consider adding this to your php.ini file:

    xdebug.remote_autostart = 1
    

    In addition, a key part to my setup is that I have to click the button in the toolbar for “Start Listening for PHP Debug Connections“, and keep this enabled while I work. This is also in the menus under “Run”.