LoginSignup
0
0

More than 3 years have passed since last update.

Magento2+Vagrant+xdebug remote debug

Last updated at Posted at 2020-01-03

Xdebug

Xdebug's (remote) debugger allows you to examine data structure, The Xdebug extension provides debugging
and profiling capabilities for PHP scripts.
Xdebug supports PHP 5.4, 5.5, 5.6, 7.0, 7.1, 7.2, and 7.3.
You can debug your PHP coding using built functions like print_r() or var_dump() or using log file however this is not enough and it will slow you down during developing.
by using Magento2+xdebug it will speed you up during developing and it will make your life easier

Installing Xdebug

Preconditions

  1. you have Magento2+Vagrant environment
    ※ If you don't have Magento2+Vagrant environment you can follow this tutorial magento2:開発環境構築 Vagrant
  2. PHP version is 7.1~
  3. you already install PHPSTORM

install Xdebug (inside Vagrant)

inside-vagrant
sudo pecl install xdebug

On my server, I got the following output.

inside-vagrant-output
Build process completed successfully
Installing '/usr/lib/php/20151012/xdebug.so'
install ok: channel://pecl.php.net/xdebug-2.6.1
configuration option "php_ini" is not set to php.ini location
You should add "zend_extension=/usr/lib/php/20151012/xdebug.so" to php.ini

Next, we need to enable the xdebug extension by modifying the php.ini configuration file
/etc/php/7.1/fpm/php.ini or /etc/php/7.1/fpm/conf.d/20-xdebug.ini

inside-vagrant
sudo vim /etc/php/7.1/fpm/php.ini
/etc/php/7.1/fpm/php.ini
zend_extension=/usr/lib/php/20151012/xdebug.so
xdebug.remote_host=192.168.33.10
xdebug.remote_enable=1
xdebug.remote_port=9900
xdebug.idekey="PHPSTORM"
xdebug.remote_log="/tmp/xdebug.log"

xdebug.remote_host You can set it to a specific domain or a IP address. im my case I set 192.168.33.10 because it is my vagrant private network IP
xdebug.remote_port You can set it to a specific port by default it will be 9000 In case I set to 9000 since my 9000 port is listen to something else.
xdebug.idekey since I use PHPSTORM ID I setted to PHPSTORM
xdebug.remote_log it is used as filename to a file to which all remote debugger communications are logged.

after setting you to need to restart your web server.
in case you Apache

inside-vagrant
sudo /etc/init.d/apache2 restart

in case you Nginx

inside-vagrant
sudo /etc/init.d/nginx restart

To verify if xdebug successfully enable. You can add phpinfo() into [magento-folder]/pub/index.php
in my case, it was /var/www/html/pub/index.php
you should get output like this.
xdebug-enabled-successfully.png

Configuring XDebug client

In my case, I will Configure PHPStorm IDEA
open your project in phpstorm
you will set the port as you set it in php.ini of xdebug.remote_port

phpstorm
PHPSTORM -> Preference -> Languages & Frameworks -> PHP -> Debug

phpstorm-preferance-xdebug.png

PHPstorm configuration

Deployment configure

phpstorm
phpstorm -> Preference -> Build, Execution, Deployment -> Deployment

add a new remote server by click on [+] icon

phpstorm-preferences-Deployment.png

host You can set it to a specific domain or an IP address
username remote server username since we use vagrant username will be vagrant
password remote server password since we use vagrant password will be vagrant
root path vagrant Magento folder absolute location /var/www/html/

Servers configure

phpstorm
PHPSTORM -> Preference -> Languages & Frameworks -> PHP -> Servers

add a new server by click on [+] icon

phpstorm-preferences-Servers.png

host You can set it to a specific domain or an IP address
Use path mapping check the checkbox
under project files set the vagrant Magento folder absolute location /var/www/html/

Run/debug configure

phpstorm
PHPSTORM ->Toolbar ->Edit Configurations
  1. add a new debug by click on [+] icon
  2. select PHP Remote Debug

phpstorm-run:debug-edit.png

phpstorm-run:debug.png
Server selected Server we already create it on the last step.
IDE key you will set the IDE key as you set it in php.ini of xdebug.idekey

Browser Configuration

  1. Install xdebug chrome extension Xdebug helper
  2. after install extension set IDE key

    1. on chrome -> toolbar-> xdebug chrome extension icon right click

    cheome-Xdebug-helper-options.png
    2.select Phpstorm set IDE key you will set the IDE key as you set it in php.ini of xdebug.idekey
    chrome-Xdebug-helper-idekey.png
    3.click on save button

  3. enable xdebug chrome extension

    1. on chrome -> toolbar-> xdebug chrome extension icon left click

    cheome-Xdebug-helper-enable.png
    2. click on debug

debug Time!

phpstorm
PHPSTORM -> toolbar 
  1. On the PhpStorm toolbar, toggle the Start Listening for PHP Debug Connections button to start listening for incoming PHP debug connections, or choose Run | Start Listening for PHP Debug Connections from the main menu.
    phpstorm-toolbar-listen.png

  2. Set a breakpoint in your code. Breakpoints can be set in the PHP context inside we set on Magento pub/index.php
    phpstorm-breakpoint.png
    3.on browser refresh website it automatically redirects to PHPstorm
    https://gyazo.com/c11de6afa9e6b666a5ff3ef7b983a37d

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0