-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable xdebug only when starting server with --xdebug
#609
Conversation
We're going to disabled the xdebug extension in production in humanmade/docker-wordpress-php#190 This re-enables it. It would be better to also only do this on `--xdebug`, so will follow up with that actually.
--zdebug
--zdebug
--xdebug
--xdebug
--xdebug
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub.
git fetch
# Create new working tree.
git worktree add .worktrees/backport v13-branch
# Navigate to the new directory.
cd .worktrees/backport
# Cherry-pick all the commits of this pull request and resolve the likely conflicts.
git cherry-pick 457a2de6b1f809ab1c0fa619efbd1a5b9ee5d68f f74b16892737c7af405cec033582a900ea33162b 8d7dbd0fb57e2031ed4daf8b8d45c796fa6c8d5a
# Create a new branch with these backported commits.
git checkout -b backport-609-to-v13-branch
# Push it to GitHub.
git push --set-upstream origin backport-609-to-v13-branch
# Go back to the original working tree.
cd ../..
# Delete the working tree.
git worktree remove .worktrees/backport Then, create a pull request where the |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub.
git fetch
# Create new working tree.
git worktree add .worktrees/backport v14-branch
# Navigate to the new directory.
cd .worktrees/backport
# Cherry-pick all the commits of this pull request and resolve the likely conflicts.
git cherry-pick 457a2de6b1f809ab1c0fa619efbd1a5b9ee5d68f f74b16892737c7af405cec033582a900ea33162b 8d7dbd0fb57e2031ed4daf8b8d45c796fa6c8d5a
# Create a new branch with these backported commits.
git checkout -b backport-609-to-v14-branch
# Push it to GitHub.
git push --set-upstream origin backport-609-to-v14-branch
# Go back to the original working tree.
cd ../..
# Delete the working tree.
git worktree remove .worktrees/backport Then, create a pull request where the |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub.
git fetch
# Create new working tree.
git worktree add .worktrees/backport v15-branch
# Navigate to the new directory.
cd .worktrees/backport
# Cherry-pick all the commits of this pull request and resolve the likely conflicts.
git cherry-pick 457a2de6b1f809ab1c0fa619efbd1a5b9ee5d68f f74b16892737c7af405cec033582a900ea33162b 8d7dbd0fb57e2031ed4daf8b8d45c796fa6c8d5a
# Create a new branch with these backported commits.
git checkout -b backport-609-to-v15-branch
# Push it to GitHub.
git push --set-upstream origin backport-609-to-v15-branch
# Go back to the original working tree.
cd ../..
# Delete the working tree.
git worktree remove .worktrees/backport Then, create a pull request where the |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub.
git fetch
# Create new working tree.
git worktree add .worktrees/backport v16-branch
# Navigate to the new directory.
cd .worktrees/backport
# Cherry-pick all the commits of this pull request and resolve the likely conflicts.
git cherry-pick 457a2de6b1f809ab1c0fa619efbd1a5b9ee5d68f f74b16892737c7af405cec033582a900ea33162b 8d7dbd0fb57e2031ed4daf8b8d45c796fa6c8d5a
# Create a new branch with these backported commits.
git checkout -b backport-609-to-v16-branch
# Push it to GitHub.
git push --set-upstream origin backport-609-to-v16-branch
# Go back to the original working tree.
cd ../..
# Delete the working tree.
git worktree remove .worktrees/backport Then, create a pull request where the |
We're going to disabled the xdebug extension in production in https://github.com/humanmade/docker-wordpress-php/pull/190
This re-enables it. The extension now is also only enabled when starting the server with
--xdebug
.