Can't Install Xdebug on Windows

can't install XDEBUG on windows?

in order to find the correct binary to use, please follow the instructions at http://xdebug.org/find-binary.php

cheers,
Derick

Installing XDebug 64bit on windows

I think you messed 2 things up:

  1. If your computer has 32/64 bit
  2. And if your PHP version is a 32/64 bit version

So since you are on windows there is no stable 64 bit PHP version yet, as you can see here:

Sample Image

Also to test this you can do a little trick and run this code:

echo PHP_INT_MAX;

output:

9223372036854775807  //64bit
2147483647 //32bit

So download the 32 bit xdebug version and everything should work fine.

Can't install Xdebug on XAMPP and Windows XP

There seems to be a bug in the XDebug.dll that comes with XAMMP.

Download the TS version from the xdebug website

And configure like this

zend_extension = "D:\Stefan\xampp\php\ext\php_xdebug-2.2.3-5.4-vc9.dll"
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "D:\Stefan\xampp\tmp"
xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_enable = 0
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.trace_output_dir = "D:\Stefan\xampp\tmp"

Xdebug is not installed on XAMPP

Maybe try using an older version of XDebug that is verified to work in the XAMPP Dashboard:
https://xdebug.org/files/php_xdebug-2.9.7-7.4-vc15-x86_64.dll

If that does not work, then there might be more details on this page that could help:
https://gist.github.com/odan/1abe76d373a9cbb15bed

Can't install Xdebug on php 5.4.4

Please refer to the Wizard at http://xdebug.org/wizard.php - it will tell you which settings to make exactly, and which binary to download.

How to configure PHP XDebug with Eclipse on XAMPP v3.2.1 for Windows?

The DLL php_xdebug.dll already comes bundled with XAMPP but for some silly reason the config is commented out by default.

Uncomment the lines near the end of php.ini, set remote_enable=1 and restart Apache:

[XDebug]
zend_extension = "C:\usr\xampp\php\ext\php_xdebug.dll"
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "C:\usr\xampp\tmp"
xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.trace_output_dir = "C:\usr\xampp\tmp"


Related Topics



Leave a reply



Submit