Hello,
I'm playing with this great debugger and I have a problem:
Environment: Windows + Delphi + PHP 5 + CGI
-If I use it to debug step by step through a single .php file, everything works OK
-If I add include() inside that file, then I'm informed that a new module number is going to be loaded, that's also OK
-But when I use the IPhpDbgDocRequestor to get the full path to the new module, I get an empty string
-This happens even with scripts in the same path as the running script, for example:
test.php
<?php
echo "bbb";
include "pepe.php";
echo "aaa";
echo "ccc";
?>
|
pepe.php
<?
echo "pepe.php";
?>
|
I run test.php and the code in pepe.php is executed, but I cannot get the path to the script from the DocRequestor.
Any hints to solve this problem?
Regards.