Tag: Eclipse

  • Xdebug on Ubuntu for WordPress

    Turns out enabling Xdebug on Ubuntu for Eclipse PDT is easier than doing the same on Windows. The short version is installing the module as per this tutorial – http://ubuntuforums.org/showthread.php?t=525257[bash]sudo apt-get install php5-dev php-pearsudo pecl install xdebug sudo updatedblocate xdebug (this one finds the xdebug path)sudo gedit /etc/php/apache2/php.ini[/bash] Adding this line (/w the path):[bash]zend_extension=”/usr/lib/php5/20060613/xdebug.so”sudo /etc/init.d/apache2…