xdebug - xampp php7

0

Good afternoon people, I researched in several places on how to activate xdebug and I found some solutions, but none of them worked here. The simplest and always used way was to uncheck the; of the line zend_extension="C: xamppphpextphp_xdebug.dll", but in my php.ini there is no longer this line, only including it does not work either: /

I have tried to reinstall xampp, however, without success ..

Can anyone help me?

    
asked by anonymous 20.09.2016 / 22:19

1 answer

0

You need to put these lines in php.ini

[Xdebug]
zend_extension = C:\php\ext\php_xdebug-2.4.1-7.0-vc14-nts-x86_64.dll
xdebug.remote_enable=1
xdebug.remote_port=9000

and download "php_xdebug-2.4.1-7.0-vc14-nts-x86_64.dll" according to your PHP version, at link .

    
20.09.2016 / 22:42