Hi I’m using XDEBUG to debug my WordPress code, is it possible to view the page building up in the browser while debugging? At the moment the page just hangs until the debugging process is finished then displays the fully rendered page. Ideally I’d like to see the page building up bit by bit as I debug through the theme’s code.
Share
I don’t know much about the WordPress internals, but if it uses output buffering (which i guess it does) the output is sent to the client all at once. Maybe you can disable output buffering somehow. http://php.net/manual/en/book.outcontrol.php