Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
development:php:xdebug [2020/03/03 10:44] kalenpw created |
development:php:xdebug [2021/06/29 15:15] (current) kalenpw |
||
---|---|---|---|
Line 11: | Line 11: | ||
Ensure you put the xdebug config in the correct '' | Ensure you put the xdebug config in the correct '' | ||
+ | |||
+ | <code ini> | ||
+ | [xdebug] | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | </ | ||
+ | |||
+ | Note: you likely need to restart php and nginx | ||
+ | <code bash> | ||
+ | #linux, if using fpm | ||
+ | sudo service php7.3-fpm restart | ||
+ | |||
+ | # mac | ||
+ | sudo brew services restart php@7.1 | ||
+ | </ | ||
+ | |||
+ | ---- |