Debug WordPress To See How It is Works

It’s no doubt that WordPress is one of the most powerful CMS for blogging. Beside it is free and open source, it also user friendly. But do you know how exactly WordPress executing it’s code? Well, this idea come up in my mind, so i would like to trace how WordPress executing it’s code.When visitors visit your WordPress blog, it only serve through index.php, even your visitors click any links in your blog (post, category, page, blogroll, archive, feed links), it will serve only from … Read more...

Debug Yor PHP Application With Xdebug

Debugging php code or php web application is not as easy as debugging asp.net web application using Visual Studio.Net. But still, we can. From my previous article, “See How PHP Web Application Work With XDebug“, you can debug and profiling a whole php code running or part of your php code using XDebug. Or use the old method with var_dump(), die(), echo, and print_r(). And debugging is not an easy job for most developer.As i state in the previous post, we can still do debuggin with Zend … Read more...

See How PHP Web Application Work With XDebug

The most common issue when we are developing web application using PHP is debugger. Debugging our web application is very important when we are developing and testing our project. Usually i’m using var_dump(), print_r() or echo to show the output of the variable or the result. The alternative is using Zend Studio, the PHP IDE (Integrated Development Environment), but it is too expensive and i couldn’t afford it now.So the alternatively to see how your web application works is using … Read more...