Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change IDE key xdebug

I want to use xdebug in PhpStorm. However, the IDE key is set to Eclipse, even if I hardcode it in php.ini:

xdebug.idekey= PHPSTORM

<table>
<tbody><tr class="h"><th>xdebug support</th><th>enabled</th></tr>
<tr><td class="e">Version </td><td class="v">2.4.1 </td></tr>
<tr><td class="e">IDE Key </td><td class="v">XDEBUG_ECLIPSE </td></tr>
</tbody></table>
like image 456
Len Avatar asked Sep 02 '16 11:09

Len


People also ask

How do I get rid of Xdebug 3?

As of Xdebug 3, it is possible to disable the Xdebug completely by setting the option xdebug. mode to off , or by setting the environment variable XDEBUG_MODE=off . It is very easy to disable Xdebug just for composer, by aliasing composer . You can add the alias to your $HOME/.

What is Xdebug Client_host?

client_host = localhost # Configures the IP address or hostname where Xdebug will attempt to connect to when initiating a debugging connection. This address should be the address of the machine where your IDE or debugging client is listening for incoming debugging connections.

How do I change my Xdebug version?

In the php. ini file, find the [xdebug] section. Change the value of the xdebug. start_upon_error from the default default to yes .


1 Answers

Probably you is using a Xdebug extension in your Chrome, so click with the right button to access options, then change this value to PHPStorm.

enter image description here

The Default Value is Eclipe

like image 161
Rafael Corrêa Gomes Avatar answered Oct 16 '22 15:10

Rafael Corrêa Gomes