Skip to content

Instantly share code, notes, and snippets.

@aleron75
Created November 19, 2015 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aleron75/7c159d7eef532e3b0cac to your computer and use it in GitHub Desktop.
Save aleron75/7c159d7eef532e3b0cac to your computer and use it in GitHub Desktop.
XEBUG on/off alias
alias xdebugon='export XDEBUG_CONFIG="idekey=phpstorm-xdebug" && sudo mv /etc/php5/mods-available/xdebug.ini.no /etc/php5/mods-available/xdebug.ini && sudo service apache2 restart'
alias xdebugoff='sudo mv /etc/php5/mods-available/xdebug.ini /etc/php5/mods-available/xdebug.ini.no && sudo service apache2 restart'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment