How to install x-debug and verify in ubuntu 14

Prakash Bharti

I have just purchased a new pc, and installed Ubuntu 14. PHP, Apache, Mysql. Everything is running good but x debug is not working on phpstorm. Please help me on how to install x-debug and integrate it with phpstorm.

Prakash Bharti

First, install XDebug, this assumes you already have a LAMP stack installed with Apache, PHP, MySQL:

sudo apt-get install php5-xdebug

Now update the options in PHP.INI - /etc/php5/apache2/php.ini

Added for xdebug

zend_extension="/usr/lib/php5/20121212/xdebug.so"
xdebug.remote_enable=1
xdebug.remote_handler=dbgp 
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1 
xdebug.remote_port=9000
xdebug.max_nesting_level=300

Restart Apache2, and you are ready to go!

sudo service apache2 restart

Now go to phpstorm -> settings -> Language & Frameworks -> PHP -> Debug

Make sure the debug port is 9000

now press the start listening for php debug connections button (a phone receiver icon)

enjoy the debugging... :)

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to install Netbeans 8.0.2 on ubuntu 14.x

From Dev

how to install mariasql with nodejs 4.x on ubuntu 14?

From Dev

How to install uTorrent 14 + Ubuntu

From Dev

How to install git-flow 1.9.1 AVH in Ubuntu 14?

From Dev

How to install Windows 7 in a PC running Ubuntu 14?

From Dev

How do I install Muvizu on Ubuntu 14,04 LTS?

From Dev

How to install gitolite3 on ubuntu server LTS 14

From Dev

How to install QtRuby + Qt4 on Ubuntu 14?

From Dev

How to create a local repository for HDP install on Ubuntu14?

From Dev

How to install DR14 T.meter on Ubuntu 19.10

From Dev

How to install Dropbox on Ubuntu 14 Server [GUI-less]?

From Dev

Java Install Fails On Ubuntu 14

From Dev

How to install Adobe Reader X in Ubuntu?

From Dev

How to install Adobe Reader X in Ubuntu?

From Dev

How to install LibreOffice 4.4.x in Ubuntu?

From Dev

How to restart process running on Ubuntu 14.x version

From Dev

Install Ubuntu on Dell Inspiron 14 7490

From Dev

Install Ubuntu on Dell Inspiron 14 7490

From Dev

Install Ubuntu 14 alongside Fedora 21

From Dev

failure to install many commands in ubuntu-14

From Dev

Install Ubuntu 14 LTS next to windows 10

From Dev

How do I install Ubuntu 14 with UEFI and software raid0 on GPT SDDs

From Dev

How to verify .iso from https://www.ubuntu.com (Official Site) from OS X mac

From Dev

How do I install mercurial on ubuntu without X

From Dev

How to install php 5.4.x on ubuntu 13.10 saucy salamander

From Dev

How to install Ubuntu on a Mac running OS X Lion?

From Dev

How to install php 5.4.x on ubuntu 13.10 saucy salamander

From Dev

How to Install OALD8 on Ubuntu 14.04 x64?

From Dev

How to install Ubuntu touch on X86 tablet with windows 8?

Related Related

HotTag

Archive