Re: PHP Debugging in Quanta+
"Yevgeniy A. Viktorov" <[email protected]>
| Newsgroups | gmane.comp.kde.devel.quanta.user |
|---|---|
| Message-ID | <[email protected]> |
On Monday 03 December 2007 00:39:18 Alexander Yurchik wrote: > Finally I have a time to tell you: it still won't work with xdebug. > Since you did last changes regarding Xdebug in quanta - xdebug dont > crashing, but it still won't stop on breakponts. > > I have to compile it again to provide full backtrace. Well, this problem also appear on my side :) But only with some complex or specified files. Here is results of small research: //### sample1 <?php $a = 2+2; echo $a; // break1 $a = 2+1; echo $a; //break2 ?> //### end of sample1 Both breakpoints working fine! //### sample2 <?php $a = 2+2; echo $a; // break1 ?> <b>blablabla</b> <?php $a = 2+1; echo $a; //break2 ?> //### end of sample2 break1 - working fine break2 - missed/skipped That's was just small samples, actually I have some pure php files where breakpoints working fine and some others files where it's does not work at all... Alex, have you tried others clients with Xdebug? Thanks.