
Learn how to set up Xdebug for PhpStorm and Laravel Valet
I’ve been developing web applications for about 15 years, but somehow Xdebug is still challenging to set up. Follow along and learn how to find Xdebug settings and configure it for local development with PhpStorm.
If you are using PHP-FPM locally, you might have run into an annoying issue that no matter what you do Xdebug won’t work! I might have an answer for you in this video.
Here are my Xdebug settings from the video so you can easily copy and paste them if you want:
[xdebug]
zend_extension="/usr/local/opt/php71-xdebug/xdebug.so"
xdebug.remote_autostart=1
xdebug.default_enable=1
xdebug.remote_port=9001
xdebug.remote_host=127.0.0.1
xdebug.remote_connect_back=1
xdebug.remote_enable=1
xdebug.idekey=PHPSTORM
If you find this video useful, the best thing you can do is follow our YouTube channel and share this article on your favorite social networks!
Filed in: Laravel Tutorials / PhpStorm / Valet / XdebugNewsletter

Join 31,000+ others and never miss out on new tips, tutorials, and more.
Laravel Jobs

- Full Stack PHP (Mid-Level/Senior) Programmer
-
Remote
PhoneBurner - Software Developer
-
Remote, (US & Canada Only)
Patient Prism - Web Application Developer
-
Chicago Loop
Leading Real Estate Companies of the World - Multiple Laravel Developers (Part-Time)
-
Remote, USA Only
The Great Escape Room - Software Developer
-
Remote (US & Canada)
Alley
Watch the Laracon US Keynote by Taylor Otwell
StreamACon just released the first Laracon US conference video and it’s Taylor’s keynote. During this tal…
Writing Custom Laravel Artisan Commands
Learn how you can create some kick-butt custom commands for your Laravel applications using the artisan console.…