Problems to install xdebug for sublime text 3 on windows 10

1

The error that returns to me is this:

  

Failed loading C: \ xampp \ php \ ext \ php_xdebug.dll

I do not know if the error is per file dll or is something else. And in my file phoinfo.php , it does not show me that it is enabled. For this reason I can not test if the xdebug client of SublimeText3 works.

This message gives me the console:

  • Xampp version V3.2.2 for windows 10
  • Version of php 7.0.13
  • the installation of the xdebug was already installed link

use this code:

import urllib.request,os,hashlib;
h = '6f4c264a24d933ce70df5dedcf1dcaee' + 'ebe013ee18cced0ef93d5f746d80ef60'; 
pf = 'Package Control.sublime-package'; 
ipp = sublime.installed_packages_path(); 
urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); 
by = urllib.request.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); 
dh = hashlib.sha256(by).hexdigest(); 
print('Error validating download (got %s instead of %s), please try manual install' % (dh, h)) if dh != h else open(os.path.join( ipp, pf), 'wb' ).write(by)
  • For the browser use the ** xdebug helper *
asked by lcaraves 12.01.2018 в 18:19
source

0 answers