bitpressio / docker-for-php-developers-errata

Reported errata for https://bitpress.io/docker-for-php-developers/
13 stars 0 forks source link

09-Laravel Xdebug - on Windows 10 #23

Closed avrahamm closed 4 years ago

avrahamm commented 4 years ago

Hi Paul! I am on Windows 10. I followed 09-Laravel Xdebug and watched 10-Laravel Xdebug lessons, yet xdebug doesn't work. I tried both 09 lesson and PHPStorm debug configuration yet it doesn't work. xdebug.ini files content is below. Thanks!

root@0831e10c26dd:/var/www/html# cat /usr/local/etc/php/conf.d/xdeb ug.ini [xdebug] xdebug.default_enable=1 xdebug.remote_autostart=1 ; remote_connect_back is not safe in production! xdebug.remote_connect_back=1 xdebug.remote_host = 10.0.75.1 ;172.17.68.49 xdebug.remote_port=9011 xdebug.remote_enable=1 xdebug.idekey=DOCKER_XDEBUG

; profiling xdebug.profiler_enabled = 0 xdebug.profiler_output_dir = /var/www/html/storage/logs

root@0831e10c26dd:/var/www/html# cat /usr/local/etc/php/conf.d/dock er-php-ext-xdebug.ini zend_extension=/usr/local/lib/php/extensions/no-debug-non-zts-20170 718/xdebug.so root@0831e10c26dd:/var/www/html#

avrahamm commented 4 years ago

xdebug.remote_connect_back=1 => xdebug.remote_connect_back=0 That's was my problem. I copied it from book fancy.pdp page 53.

Thanks!

paulredmond commented 4 years ago

@avrahamm I was just about to update this issue with the above change you already listed, sorry about the confusion!

I am in the process of updating the book to fix that very issue, you can see it (and other issues) in the errata doc:

https://github.com/bitpressio/docker-for-php-developers-errata/blob/master/errata.md#bug-listing-49-adding-an-xdebug-ini-file

paulredmond commented 4 years ago

Docker networking works changed a bit after I already released my course, so I am in the process of fixing the errors and in the meantime you can reference the errata.

avrahamm commented 4 years ago

Thanks!