Quote: |
Can you tell me what I need to use instead of F4 to get the behaviour I need? |
Press F9, or click the "Run in debugger" button on the toolbar (green arrow). Execution will then continue to the next breakpoint or end of script.
Quote: |
2) When I have found a bug, I was expecting to be able to modify the code line (whilst in debug mode), and then re-execute the line to see the difference it has made on the fly. This does not seem to work very well at all - am I meant to enable some kind of setting perhaps? I am using FTP for uploading to a 3rd Party web server (Apache) with DBG setup on. |
I think is due of the way PHP itself is working -- it loads the whole script into memory first, and then communicates with DBG as you to step through the script. The only way to change the image of the script that PHP has in memory, would be to reload the script into PHP, and that means a starting new debug session. I agree that it would have been way cool if code changes were possible on the fly during a debugging session