Skip to content

Instantly share code, notes, and snippets.

@s-belichenko
Last active October 14, 2017 18:32
Show Gist options
  • Save s-belichenko/d88b7572b77c30a490ab8ba9e597c9cb to your computer and use it in GitHub Desktop.
Save s-belichenko/d88b7572b77c30a490ab8ba9e597c9cb to your computer and use it in GitHub Desktop.
xdebug for php7
<IfModule mod_php7.c>
php_flag xdebug.default_enable on
php_flag xdebug.remote_autostart on
php_flag xdebug.remote_enable on
php_value xdebug.remote_handler "dbgp"
php_value xdebug.idekey "PHPSTORM"
php_value xdebug.remote_host "192.168.1.x"
php_value xdebug.remote_port "9000"
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment