Difference between revisions of "Configuring Xdebug for PHP development"

From Joomla! Documentation

 
(Some capitalization and phrasing changes.)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
#REDIRECT [[Configuring Xdebug for PHP development/Windows]]
+
XDebug is an extension that provides debugging and profiling capabilities. It runs in the server side and sends the debugging information to any client capable of receiving and reading it. For this article we will install XDebug in our local server and use Eclipse IDE as the client which will receive and interpret the debugging information. With XDebug you will be able to study the behavior of your code step by step and also inspect the value of the any variable at every execution step.
 +
=Linux OS=
 +
{{:Configuring Xdebug for PHP development/Linux}}
 +
=Windows OS=
 +
{{:Configuring Xdebug for PHP development/Windows}}
 +
=Mac OS=
 +
{{:Configuring Xdebug for PHP development/Mac}}
 +
[[Category:Development]]

Latest revision as of 12:28, 29 June 2023

XDebug is an extension that provides debugging and profiling capabilities. It runs in the server side and sends the debugging information to any client capable of receiving and reading it. For this article we will install XDebug in our local server and use Eclipse IDE as the client which will receive and interpret the debugging information. With XDebug you will be able to study the behavior of your code step by step and also inspect the value of the any variable at every execution step.

Linux OS[edit]

Theses instructions should work fine on any Debian based distribution such as Debian, Ubuntu, Linux Mint, Xubuntu, Kubuntu and others.

Installation[edit]

There are several ways to download and install XDebug to your Linux box, you can do it from your software center, terminal or manual download.

Method 1: From a Linux Repository[edit]

A Tip!

This is the recommended method because you will get updates and security patches automatically.

Option 1: Terminal[edit]

  • Open your terminal and type
 sudo apt-get install php5-xdebug 
  • Wait until the installation process finishes

Option 2: Software Center[edit]

  • Open the software center that comes with your distribution
  • Type in the search box "Eclipse IDE"
  • Select "Eclipse IDE" in the search result list
  • Click on the "install" button
  • Wait until installation processes finishes

Method 2: From a Downloaded Copy[edit]

  • Visit this page here and download the most recent version available
  • Do a double click on the downloaded file, your package manager should do the rest of the work automatically

Configuring XDebug[edit]

Open your terminal and type:

sudo gedit /etc/php5/mods-available/xdebug.ini

If the file is empty try this location:

sudo gedit /etc/php5/conf.d/xdebug.ini

That command should open the text editor with the XDebug configuration file.

At the end of the file content append the following text:

xdebug.remote_enable=on

xdebug.remote_handler=dbgp

xdebug.remote_host=localhost

xdebug.remote_port=9000

Save changes and close the editor.

In your terminal, type:

sudo service apache2 restart

Note: You can set a different port number if you need to.

Configuring Eclipse IDE[edit]

  • Open Eclipse IDE.
  • On Eclipse go to: Toolbar  Window  Preferences  PHP  Debug
  • Find the option: "PHP Debugger" and set it to "Xdebug"
  • On Eclipse go to: Toolbar  Window  Preferences  PHP  Debug  Installed Debugger
  • In the list make sure the port the "Xdebug" option is set to the value "9000"
  • Save changes.

Note: You can set a different port number if necessary.

When you debug a PHP project, Xdebug stops the code execution of the current page and Eclipse IDE by default pops out a perspective with 2 views containing the internal Eclipse IDE web browser and a view with the current HTML output. If you don't like the internal web browser, you can use any other external web browser installed in your computer, such as Google Chrome, Chromium, Firefox and so on.

To set up a different web browser, follow these steps. If you are okay with the Eclipse internal browser, skip this part.

  • On Eclipse, go to: Toolbar  Window  Preferences  General  Web Browser
  • Make sure the option "Use external browser" is selected.
  • If your preferred browser is on the list, select it and save changes. Skip the rest of this part.
  • If your preferred browser is not on the list, press the button "New"
  • Set a name for your new browser, that is "chrome".
  • Set the location of your new browser, that is "/usr/bin/google-chrome"
  • If you don't know the location of the browser, open a terminal and use the command "whereis browsername" to display the browser location. Note: Replace browsername with the name of your preferred browser, that is "whereis google-chrome". Copy one of the locations if there is more than one.
  • Save all changes.

Testing XDebug and Eclipse IDE[edit]

To test our new debugging tool, we need to create an Eclipse PHP project, set the debug configuration for our project and write a few lines of PHP code. This example assumes 3 things:

  1. You understand the Eclipse IDE concepts of "workspace" and "projects". If not, please read this article: Configuring Eclipse IDE for PHP development/Linux#Understanding the folder structure
  2. You already have a working web server. If not, please read this article: Configuring a LAMPP server for PHP development/Linux desktop
  3. Your Eclipse workspace is located at the server's web root folder.

Configuring the Workspace[edit]

  • If your current workspace is located at your server's web root, skip this part.
  • Open Eclipse IDE.
  • On Eclipse, go to: Toolbar  File  Switch  Workspace  Other
  • Press the button "browse" and browse to the location of your server's web root folder. For example, "/home/youruser/lamp/public_html/"
  • Press "OK" and wait until Eclipse IDE restarts and load the new workspace.

Configuring the Test Project[edit]

  • On Eclipse go to: Toolbar  File  New  Other  PHP  PHP Project
  • Set the project name to "xdebug-test" or anything you like.
  • Press "Ok" to continue.
  • After this Eclipse IDE will automatically create a project folder like this "/home/youruser/lamp/public_html/xdebug-test/". Also you should be able to visualize the new project at the Eclipse IDE Project Explorer view or Navigation view.
  • On Eclipse go to: Toolbar  File  New  Other  PHP  PHP File
  • Set the file name to "index.php".
  • Press "Ok" to continue.
  • After this Eclipse IDE will automatically create a PHP file like this "/home/youruser/lamp/public_html/xdebug-test/index.php". Also you should be able to visualize the new file at the Eclipse IDE Project Explorer view or Navigation view.
  • Find the new "index.php" file at the Eclipse IDE project explorer and open it by double clicking on it.
  • Place the following content to that file:
<?php
    $X = 5;
    $X = 8;
    $Y = 2;
    $Z = $X + $Y;
    $Z = $Z + 1;
    echo "Z value is: " . $Z;
?>
Z value is: 11

Configuring the Test Project Debug Information[edit]

  • On Eclipse, go to: Toolbar  Run  Debug configuration...
  • On the left list, find PHP Web Application and do a double click on it to create a new configuration element.
  • Select the new configuration element to display its contents.
  • Set the name to xdebug-test or anything you like.
  • Make sure the option "Server debugger" is set to "XDebug".
  • Make sure the option "Break at first Line" is not checked.
  • In the option "File" press the button "Browse". Find your project "xdebug-test" and expand its contents. Then find and select the file "index.php".
  • Make sure that option URL looks something like this "http://localhost/xdebug-test/index.php"
  • Press "Apply" and "Close" to save changes and continue.

Debugging the Test Project[edit]

As you can see, our "index.php" file has several lines of code. With the debugger, we can study how those lines of code are executed one by one. To stop the execution, we need to set something called "Breakpoint". A Breakpoint is a "mark" in our lines of code that indicate to the debugger to stop the execution and poll the var values. To set a Breakpoint on our code and test the debugger, follow these simple steps.

  • Open the "index.php" of our test project.
  • Locate the line of code "$X = 8;" and do a click on it to place the blinking cursor there.
  • On Eclipse go to: Toolbar  Run  Toggle Breakpoint. You can also used the hotkey "shift+ctrl+B" or simply do a double click on the line number of the line of code at the left side of your editor to toggle a Breakpoint.
  • When a Breakpoint is set, you should see it represented as a little circle next to the line number at the left side of your editor.

Now is the time to execute our project to see how the debugger helps us.

  • On Eclipse, go to: Toolbar  Run  Debug. You can also used the hotkey "F11" or simply do a click in the "little bug icon" located at the second toolbar from the top.
  • Eclipse will open the configured web browser and change to the "Debug perspective". The debug perspective contains a set of pre-configured views useful to do debugging tasks. Among them we have:
    • Debug view: It displays buttons to control the current running debug session. This view contains the current call stack.
    • Breakpoint view: display all your set breakpoints on any project file.
    • Variables view: It's basically a "var dump" of all the PHP variables of your actual session. This view lets you easily navigate through any variable and child members of those variables.
    • Expressions view: here you can set custom expressions, for instance, "$X+$Y+$Z" and see the outcome of each expression without changing the code.
    • Internal browser view and output view: optional if you not configured an external browser, Eclipse IDE will display this view with the current page and the current page HTML output.
  • At this point our web page should look stopped and most likely the browser will show a blank page "waiting" to load the rest of it.
  • Note that the current breakpoint has a "little arrow" over the circle and the line of code is highlighted. This indicates the next line of code to be executed, also know as the "current step".
  • If you take a look at the "variables view", the current value of "$X" should be "5".
  • Go to the "Debug view" and press the button "step over" or use the hotkey "F6" to go one step forward in the code execution.
  • Take another look at the "variables view". The current value of "$X" should be now "8".
  • This way you can neatly study how your code and values changes step by step. You can also hover your mouse pointer over the variables names in the editor. Eclipse will pop up the current values.
  • Keep going forward until the end of the lines of code. At that point the web browser should display the final web page output.

Windows OS[edit]

Quill icon.png
Content is Incomplete

This article or section is incomplete, which means it may be lacking information. You are welcome to assist in its completion by editing it as well. If this article or section has not been edited in several days, please consider helping complete the content.
This article was last edited by Cmb (talk| contribs) 9 months ago. (Purge)

Configuring XDebug is split into two parts: Server-side and Client-side.

Server-side (Extension in PHP)[edit]

Installation[edit]

First check if this extension is already installed. Create a new file with the content <?php phpinfo(); ?>, save it in your web folder (e.g. C:\xampp\htdocs\phpinfo.php) and call it using your browser (https://localhost/phpinfo.php). The command phpinfo will show you the information about installed plugins and their configuration. If you see a headline called XDebug, it is already downloaded and enabled.

To get the extension for a Windows system, you have to download the DLL file from https://xdebug.org/download that fits your PHP version, move it into the ext folder of your PHP installation. If the file php_xdebug.dll exists, leave it there. It's most likely the right version, just that it's not enabled.

Enable XDebug[edit]

On Windows systems you most likely just have one php.ini file for all configuration whereas on several Linux distributions you have a directory called conf.d in addition. If you have installed XDebug on a Linux-based system, you'll probably find a file xdebug.ini. Use this file instead if you have it.

Enable the plugin by adding (or uncommenting) the following line in your config file:

; Example for XAMPP
zend_extension = "\xampp\php\ext\php_xdebug.dll"

; Example on Mac OS X for XAMPP
zend_extension="/Applications/XAMPP/xamppfiles/lib/php/php-5.3.1/extensions/no-debug-non-zts-20090626/xdebug.so"

Make sure you use zend_extension instead of extension which requires the full path to the extension-file.

Configuration[edit]

Also read this introduction for configuration details: https://xdebug.org/docs/step_debug

Here is an example configuration:

; location of my configuration-file
zend_extension=/usr/lib/php5/20090626/xdebug.so

; Enables colors if you use XDebug on the console
xdebug.cli_color=1

; Enable profiler by a trigger (f.e. cookie or GET-param)
xdebug.profiler_enable_trigger=1
xdebug.profiler_output_dir=/var/www/log/

; Debugger will try to connect back to the machine sending the HTTP-Request
xdebug.remote_connect_back=1

; Enables the debugger
xdebug.remote_enable=1

Client-side (Configure Your IDE)[edit]

If your IDE is not listed on https://xdebug.org/docs/step_debug#clients, you'll probably find a tutorial in the manual of your IDE. Feel free to add helpful tutorials here.

Mac OS[edit]

Configuring XDebug with MAMP[edit]

Prerequisites[edit]

These instructions are for Mac OS X (actually tested on version 10.9.2 Mavericks) with installed MAMP Application (actually tested on MAMP version 3.0.4).

Configuration Instructions[edit]

  • Open finder and navigate to
 /Applications/MAMP/conf/<selected php version>/

(NOTE: <selected php version> is the PHP version that you have selected in the MAMP configuration)

  • Open the file php.ini with a text editor such as TextWrangler
  • Find the section [xdebug]
  • Uncomment the line
 
 [xdebug]
 ;zend_extension="/Applications/MAMP/bin/php/<selected php version>/lib/php/extensions/no-debug-non-zts-20121212/xdebug.so"

by removing the semicolon character at the beginning of the line.

  • Add after the line the following text, if not already existing
 
 xdebug.remote_enable=on
 xdebug.remote_handler=dbgp
 xdebug.remote_host=localhost
 xdebug.remote_port=9000
  • Save changes and close the editor
  • Restart your MAMP Server

Note: You can set a different port number if you need.