Hello, I installed xampp, changed php.ini to this:
[XDebug] zend_extension = "C:\xampp\php\ext\php_xdebug-2.2.3-5.3-vc9.dll" xdebug.profiler_append = 0 xdebug.profiler_enable = 1 xdebug.profiler_enable_trigger = 0 xdebug.profiler_output_dir = "C:\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 = "C:\xampp\tmp"
So, I created a php file:
<?php phpinfo(); ?>
Copy paste content and paste into xdebug wizard and get this output:
Tailored Installation Instructions Summary Xdebug installed: no Server API: Apache 2.4 Handler Apache Lounge Windows: yes - Compiler: MS VC9 - Architecture: x86 Zend Server: no PHP Version: 5.4.7 Zend API nr: 220100525 PHP API nr: 20100525 Debug Build: no Thread Safe Build: yes Configuration File Path: C:\Windows Configuration File: C:\xampp\php\php.ini Extensions directory: C:\xampp\php\ext Instructions Download Move the downloaded file to C:\xampp\php\ext Edit C:\xampp\php\php.ini and add the line zend_extension = C:\xampp\php\ext\ Restart the webserver If you like Xdebug, and thinks it saves you time and money, please have a look at the donation page.
This tells me that it is not installed, so I followed the instructions and restarted the server. I opened info php again, copied everything again and pasted it into the master again. Press a button and I get exactly the same result, I donβt know what I am doing wrong, can someone tell me what I am doing wrong?
source share