Posts

Showing posts with the label apache

WSL IP Address and vise versa

WSL IP Address and vise versa WSL IP:  wsl -d <DistributionName> hostname -I Windows IP from WSL: ip route show | grep -i default | awk '{ print $3}' additional useful docs here:   https://learn.microsoft.com/en-us/windows/wsl/networking if you have backend service on your windows side for example Apache server with many virtual hosts and you want to address it from WSL just refer to it on your WSL side just as localhost (without naming the virtual host name or its 127.0.0.x address) , windows will make the rest and you will get access to your windows backend

Исчезают переменные в окне отладки PhpStorm приблизительно через 1 минуту дебаггинга (Dissapeared variables in PhpStorm after about one minute of debug session)

Image
Исчезают переменные в окне отладки PhpStorm приблизительно через 1 минуту дебаггинга Данная ситуация специфична для связки Apache + FastCGI. мне помогла вот эта ссылочка  https://intellij-support.jetbrains.com/hc/en-us/community/posts/206999685-xdebug-result-in-variables-window-is-removed-after-aprox-30-secs a именно, установка этого парамтера FcgidIOTimeout 640 на большее значение (было 64) )) в httpd-fastcgi.conf Спасибо за внимание! Всем удачного дебага! )