can't install XDEBUG on windows?

后端 未结 5 1639
轻奢々
轻奢々 2020-12-06 07:26

my php version is PHP Version 5.3.6.

Xdebug setting in php.ini:

[Xdebug]

 zend_extension_ts=\"D:\\php\\ext\\php_xdebug-2.1.2.dll\"
xde         


        
相关标签:
5条回答
  • 2020-12-06 07:38

    Looks like you just need to download the correct version of xdebug for your version of Windows / PHP. There are VC9 builds here, just select the appropriate one for 32 or 64 bit.

    0 讨论(0)
  • 2020-12-06 07:41

    [http://nepuzz.com/index/detail/18][1]

    You can check the above link and install xdebugger in sublime 3 with wamp server easily.

    0 讨论(0)
  • 2020-12-06 07:53

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

    cheers, Derick

    0 讨论(0)
  • 2020-12-06 07:55

    Instead of attempting to mix 'n match modules, try a stock download from Apache Friends. http://www.apachefriends.org/en/xampp-windows.html

    XAMPP comes with xdebug right out of the box.

    0 讨论(0)
  • 2020-12-06 08:00

    If you don't use Xamp.

    1. Download windows binary corresponding your php version: https://xdebug.org/download
    2. (optional) move downloaded file (php_xdebug.......dll in common location and rename it: for example xdebug.dll in C:\phpextensions\
    3. Run php --ini in cmd to know where is the php.ini file (p.ex: C:\php\php.ini)
    4. Edit C:\phpextensions\xdebug.dll and add following line:
    zend_extension = C:\globally\debug.dll
    xdebug.remote_enable = 1
    xdebug.remote_handler = dbgp
    xdebug.remote_host = localhost
    xdebug.remote_autostart = 1
    xdebug.remote_port = 9000
    xdebug.show_local_vars = 1
    
    0 讨论(0)
提交回复
热议问题