Setup XDebug in PhpStorm

PhpStorm is one of the good IDE for PHP application development available in current era. PHP Xdebug is a very strong tool for debugging, making the life easier for PHP developers to find out the logical mistakes. Integration of Xdebug into PhpStorm will ease the trouble of debugging for PHP developers. You can easily setup Xdebug in PhpStorm by following these steps. Requirements PhpStorm (get it from here) Xdebug (get it from here) Procedures Setup Xdebug (if you haven’t done already). Find the steps here. You should be able to see Xdebug while checking the php version. ...

May 25, 2016 · 4 min · Sanjeev Kumar Pandit

Setup XDebug in Ubuntu

Xdebug’s basic functions include the display of stack traces on error conditions, maximum nesting level protection and time tracking. Xdebug is a very powerful tool for finding out the errors and testing the implementation of logics using PHP. You can easily install Xdebug in your machine by following these instructions. Always run sudo apt-get update before installing any application. There are two sources for installation. Ubuntu: This will provide you the application compiled during the building of the OS you are using. Thus, you may get older version of the application and might not get updates frequently. PPA: You will get the latest version of the application and frequent updates on the application. [Optional] Add PPA to your Softwares List. Skip to step #4 if you don’t want to use PPA for installation. But, I recommend to use PPA for frequent updates. Enter these commands in your terminal. ...

May 24, 2016 · 3 min · Sanjeev Kumar Pandit