Hi.
I am trying to debug my project in phpEd while using apache server in Xampp.
The reason for this is because I want to use the same php version for both project display and debugging.
(Xampp is 5.6.30 and phpEd is 5.5.26)
First I tried to debug it using internal srv, and it stopped at my first break point in index.php.
Then I execute the Settings Wizard in project properties and change/set:
- select second option (project file and Apache on same machine)
- the Web document to C:\xampp\htdocs
and check php installation and dgb script successfully.
Now, when I execute the debugger, it pass through my break point and send the page directly to Chrome without the standard debugging port (http://localhost:8080/index.php) but instead (http://localhost/index.php)
I receive a"waiting for debug session" window and an other one saying this:
---------------------------
Error
---------------------------
Failed to start debug session (timeout).
Please make sure that debugger module is installed on the server
that corresponds to http://localhost/p3/plateforme_source/index.php URL.
TIP: Please visit NuSphere site for further details on how to install debugger module.
---------------------------
This is what I found in xamp/php/php.ini, after letting PhpEd install the debugger
---------------------------
zend_extension="C:\xampp\php\ext\dbg-php-5.6.dll"
[debugger]
debugger.JIT_enabled=Off
debugger.JIT_level=3
debugger.hosts_deny=ALL
debugger.hosts_allow=127.0.0.1, localhost, ::1
debugger.ports=7869
---------------------------
Any clues will be more than welcome...
Thanks