Debugger and index.php

The1LT

Member
Hi guys,

I've really been banging my head on this. I'm trying to get the debugger working on my local install now for like 2 days solid and can't seem to get past this issue.

My set up is ZendServer Free edition running php 5.4 and ZendDebugger option turned on. I'm using Eclipse PDT latest version and have got Xenforo set up on a local test installation. Using Windows 7 and using Chrome for my browser. Got eclipse set to use External but have tried both External and interlal browsers.

So the trouble I have is that when I try to run a debug session, if I try to run it through the Index.php page it self terminates with the message. Terminated Exit Code 0.

Basically if I set it to break at the first line it does in fact break and I can step line by line ok but if I click continue, it runs and immediately terminates the debug session. If I switch off break at first line and try to run the debug session it just goes straight to the Terminated Exit Code 0. I've also tried 'start debug at this point' and chosen the index.php and continue option and still the same. Literally I've tried everything I can think of. Read all the questions on stack overflow looked at time out settings. Installed the same set up on another pc. You name it. I'm beginning to think there is something that is within index.php that's causing it to auto terminate.

Is there something wrong with my process? Are you meant to start the debugger from a different point or something? I get the same issue if I try to make the starting point admin.php. I notice that in Kier's video: http://xenforo.com/community/thread...at-variables-are-available-in-templates.6960/ he is using a Mac and Firefox but seems to break into the debugger by using a refresh and debug with eclipse listening rather than launching the full session from the very start at index.php. So i'm also pondering whether it's something to do with it not being logged in yet or something or perhaps trying to run the session from the very start through the ajax or something is not possible?.

I've tried a number of times also with the XDebug option but using that it doesn't terminate but doesn't seem to want to break on any of the break points, either.

I can't believe that something so simple should be so difficult. Any thoughts guys?

I can make a video if it would help to show the process I'm following?

Thanks for any help.

Ross
 
Couple of shots of the error and the setting on the debug run.
 

Attachments

  • Snap 2013-10-25 at 10.35.36.webp
    Snap 2013-10-25 at 10.35.36.webp
    19.2 KB · Views: 18
  • Snap 2013-10-25 at 10.36.31.webp
    Snap 2013-10-25 at 10.36.31.webp
    34 KB · Views: 14
Well I've managed to get it to work with phpStorm after a ton of messing about.

I'll stick with this for now and go back to Eclipse when I have more energy to look at it again.

There is so much weird stuff going on though that I have no clue about, it seems that if you have Taiga Chat running on the active style that you're debugging it will poll index.php every so many seconds and cause a break at the start of index.php every time it fires. Once this has happened a certain number of times. ZendServer falls over with a "too many open files error" at which point you need to restart. So I've turned it off during my debug session and it seems to work a bit better.

Also the use of this code inside of a template:

Code:
<script type="text/javascript">
<!--
window.location = "http://beast/community/index.php?products/9g-trading-software.3/"
//-->
</script>

seems to cause the debugger to drop it's session. I realise it's a redirect but maybe one that's not supposed to be used. In any case I've worked around it by avoiding that for now.

At least I have some form of debugging up now so I figure out how the process flow works.
 
Top Bottom