Skip to content

Instantly share code, notes, and snippets.

@wluisi
Last active September 25, 2016 22:39
Show Gist options
  • Save wluisi/c04509c269e10f8d93b81fe99fc8c1f1 to your computer and use it in GitHub Desktop.
Save wluisi/c04509c269e10f8d93b81fe99fc8c1f1 to your computer and use it in GitHub Desktop.
Setup Xdebug with Acquia DD and Atom

Setup Xdebug with Acquia Dev Desktop/MAMP and Atom

Xdebug settings

Can be added to php.ini, but should go in xdebug config, what happens when dev desktop gets updated?

xdebug.remote_enable=1
xdebug.remote_host=127.0.0.1
xdebug.remote_connect_back=1

Atom config

"php-debug":
    ServerPort: 9000

Add xdebug Chrome extension

Watchpoints

Enter a variable name and hit enter.

Further Reading

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment