PhpStorm 2023.3 Help

Validate the configuration of a debugging engine

PhpStorm can validate your configuration of Xdebug or Zend Debugger and tell you if some setting is missing or inconsistent with other settings. When configuring the PHP interpreter for a project, PhpStorm informs you whether a debugger is installed in your local PHP development environment and reports on the Xdebug or Zend Debugger version used. For more information, refer to Configure a debugging engine manually, Configure local PHP interpreters, and Configure remote PHP interpreters.

You can also get more detailed information about the debugging engine on a local or remote web server with the Validate Debugger Configuration on Web Server dialog.

  1. Go to Run | Web Server Debug Validation.

  2. In the Validate Debugger Configuration on Web Server dialog that opens, choose the debugger validation method and specify the required parameters for it.

    Validate Debugger Configuration on Web Server dialog
    • Output phpinfo(). Choose to automatically verify the debugger installation in the PHP interpreter.

      Output phpinfo():

      In this field, copy and paste the output from the php -i CLI command or the rendered or source HTML output from phpinfo().

    • Local Web Server or Shared Folder. Choose to check the debugger associated with a local web server. PhpStorm creates a validation script, deploys it to the target environment, and runs it there.

      Path to create validation script

      In this field, specify the absolute path to the folder under the server document root where the validation script will be created. For web servers of the Inplace type, the folder is under the project root.

      The folder must be accessible through http.

      URL to validation script

      In this field, type the URL address of the folder where the validation script will be created. If the project root is mapped to a folder accessible through http, you can specify the project root or any other folder under it.

    • Remote Web Server. Choose to check the debugger associated with a remote server. PhpStorm creates a validation script, deploys it to the target remote environment, and runs it there.

      Path to create validation script

      In this field, specify the absolute path to the folder under the server document root where the validation script will be created. The folder must be accessible through http.

      Deployment server

      In this field, specify the server access configuration of the type Local Server or Remote Server to access the target environment. For more information, refer to Configure synchronization with a server.

      Choose a configuration from the list or click Browse the Browse button in the Deployment dialog.

    • Debug Validation Script. Choose to manually execute the PhpStorm Xdebug validation script on a running server and check the debugger configuration associated with it.

      Download script command

      Copy the CLI command to clipboard () and execute it on the server to download and unpack the script there.

      URL to validation script

      In this field, type the URL address of the folder where the validation script is deployed to. If the project root is mapped to a folder accessible through http, you can specify the project root or any other folder under it.

      To view Xdebug configuration parameters, open the phpstorm_index.php file from the downloaded script package in the browser.

      Xdebug Validation report
  3. Click Validate. PhpStorm displays the list of the debugger configuration checks with their status and description and suggests fixes for inconsistent settings where available.

    Xdebug configuration parameters

Troubleshoot validation results

Connection Refused

There has been a problem connecting to your web server. Make sure that the URL (and port) are correct; these are provided to your web server either in the URL to validation script option or within your deployment.

Please check that web path to validation script is correctly configured for

The Path to create validation script within the local project does not map to the URL to validation script or Deployment URL option. If you are using a framework or the PHP built-in web server, this is likely due to the framework sending a 404 response instead of sending the actual file in that directory.

A quick way to test this is to create a test.php file in the directory you have set as the Path to create validation script, and then check that file is callable from the URL to validation script or deployment url with test.php appended.

For example, if the Path to create validation script is set to /var/www/public, create a test.php file with the following contents in that folder:

<?php echo 'test works';

If your URL to validation script or Deployment URL is http://192.168.100.100:8080, then you should be able to call that script by visiting http://192.168.100.100:8080/test.php and see the "test works" output. If you are seeing a 404 generated by your framework, then your URL rewriting is wrongly configured, and you should consult your framework's documentation to ensure that the URL rewriting configuration will return real files if they exist before sending any other requests to your framework dispatcher.

If you're seeing a 404 and you are using PHP built-in web server, it's likely because you cannot configure this web server to serve files on the file system if they exist. You'll need to add the following code to the file you are sending all requests to (typically index.php) in order to send file system files if they exist:

if (PHP_SAPI == 'cli-server') { // To help the built-in PHP dev server, check if the request was actually for // something which should probably be served as a static file $file = __DIR__ . $_SERVER['REQUEST_URI']; if (is_file($file)) { return false; } }

Remote host is configured as 'localhost' despite server host is probably not local

The URL to validation script contains something different from localhost, but the xdebug.remote_host value is not set, and is therefore using the default value of localhost, or is set to localhost or 127.0.0.1.

Specified URL is not reachable, caused by: 'Request failed with status code 404'

The issue can happen in situations when the server document root is different from the project root, and deployment path mappings are not configured correspondingly.

Consider the following example:

  • The project is stored in the /MyProject folder.

  • The server document root is set to its public subfolder, that is /MyProject/public.

  • The URL to access the application is http://MyApp.test.

If the entire project root folder is mapped to the server document root, PhpStorm will attempt to access the validation script via the http://MyApp.test/public/_intellij_phpdebug_validator.php URL, which will result in a 404 error. To solve this, you need to set the explicit mapping between the public subfolder and the server document root.

  1. In the Settings dialog (Ctrl+Alt+S) , go to Build, Execution, Deployment | Deployment.

  2. Select your deployment server, and on the Mappings tab, click the Add New Mapping button.

  3. Add an additional entry that maps the /MyProject/public folder to the server document root /.

    Deployment Mappings for Debugger Validation

As a result, the URL to access the validation script becomes the correct http://MyApp.test/_intellij_phpdebug_validator.php.

Last modified: 04 March 2024