Reputation: 946
I read several tutorials in the internet but without success. I configured xdebug in my php.ini file like this:
zend_extension=/usr/lib/php/20131226/xdebug.so
xdebug.remote_enable=true
xdebug.remote_port=9000
xdebug.profiler_enable=1
xdebug.profiler_output_dir=/tmp
I have following PhpStorm settings:
I put following breakpoint but it won't work if I reload page
Upvotes: 0
Views: 120
Reputation: 2489
You have to add a listener to PhpStorm
And then you will have a debug tab on the bottom
Upvotes: 1