IntelliJ IDEA 2021.1 Help

Zero-configuration debugging

In case of zero-configuration debugging, you do not need to create any debug configuration. Instead, you open the starting page of your PHP application in the browser manually, and then activate the debugging engine from the browser, while IntelliJ IDEA listens to incoming debugger connections.

Initiate a debugging session

Before you start debugging, make sure that you have a debugging engine installed and configured properly. IntelliJ IDEA supports debugging with two most popular tools: Xdebug and Zend Debugger. These tools cannot be used simultaneously because they block each other. To avoid this problem, you need to update the corresponding sections in the php.ini file as described in Configure Xdebug and Configure Zend Debugger.

To initiating a zero-configuration debugging session, perform these general steps.

Validate the debugging engine installation

  • Do any of the following:

    • In the command line, run the php --version command. The output should list the debugging engine among the installed extensions:

      Xdebug extension installed
      Zend debugger extension installed
    • Create a php file containing the phpinfo(); function call. Then open this file in the browser. The phpinfo output should contain the section for your debugging engine:

      Debugging engine installed
      Debugging engine installed

Enable listening to incoming debugging connections

  • Toggle the Start Listen PHP Debug Connections button start listening php debug connections on the IntelliJ IDEA toolbar so that it changes to stop listening php debug connections. After that IntelliJ IDEA starts listening to the port of the debugging engine used in the current project. Debugging ports are set at the IntelliJ IDEA level on the PHP | Debug page of the Settings/Preferences dialog Ctrl+Alt+S. Start listening to debugging connections

Set breakpoints in your code

  • Set a breakpoint in your code by doing any of the following:

    • Click the left gutter area at a line where you want to toggle a breakpoint.

    • On the main menu, choose Run | Toggle Line Breakpoint.

    • Press Ctrl+F8.

    Set breakpoints

    Alternatively, select Run | Break at first line in PHP scripts to have the debugger stop as soon as connection with IntelliJ IDEA is established (instead of running automatically until the first breakpoint is reached).

Activate debugger on server

  • To enable starting and stopping the debugging engine from the browser, you need to set a special GET/ POST or COOKIE parameter. You can do it manually in the php.ini configuration file, or use one of the available browser debugging extensions. If you are using a browser for which an extension is not available, you can generate the Start Debugger/ Stop Debugger bookmarklets and add them to your browser's toolbar.

    Activate the debugging extension in your browser:

    Xdebug helper in Chrome

    For more details about setting the parameters manually, see Starting the Debugger for Xdebug and Zend Debugger GET Request Parameters for Zend Debugger.

Start the debugging session

  1. Reload the page in the browser and return to IntelliJ IDEA. In the Incoming Connection From <Debugging Engine> dialog, select the path mappings so that IntelliJ IDEA can map the remote files on the web server to the local files in your project. If you have a deployment configuration defined, IntelliJ IDEA will offer to configure the mappings based on the paths you've already set in that configuration.

    Incoming debugger connection Xdebug
  2. After reaching the breakpoint, the debugger is suspended. You can now investigate the application.

    Application stopped at breakpoint
  3. Continue running the program and examine its frames as soon as it is suspended again.

    • To control the program execution manually, step through the code using the commands under the Run menu or toolbar buttons: Step Into   F7, Step Out   Shift+F8, Step Over   F8, and others. For more details, see Step through the program.

    • To have the program run automatically up to the next breakpoint, resume the session by choosing Run | Debugging Actions | Resume Program or pressing F9.

Specify the scripts to skip requests to

You can also specify the scripts requests to which you want IntelliJ IDEA to ignore during debugging. This approach can be useful, when your application contains scripts that use AJAX. Suppose you have a menu-ajax-script.php that "reloads" a part of your web page. This script works properly so you do not need to debug it. However, this script is still requested during the debugging session. To have incoming connections to this script ignored, add the menu-ajax-script.php script to the skipped paths list.

  1. In the Settings/Preferences dialog Ctrl+Alt+S, go to Languages & Frameworks | PHP | Debug | Skipped Paths.

  2. On the Skipped Paths page that opens, configure an "ignore list" of scripts and folders with scripts not to be invoked if IntelliJ IDEA receives incoming connections to them.

    • To add a new entry to the list, click the the Add button or press Alt+Insert. Then click the Browse button and in the dialog that opens choose the file or folder to skip connections to.

    • To remove an entry from the list, select it and click the Remove button or press Alt+Delete. The script will be now executed upon receiving requests to it.

  3. To have IntelliJ IDEA inform you every time it receives a request to a script to be skipped, select the Notify about skipped paths checkbox.

Last modified: 08 March 2021