Thanks,
This article has a bit different dialog of printscreens in comparison with my PhpStorm 2019.2.3.
Alsdo for my app I use appache hosting defined in /etc/apache2/sites-available/local-hostels3.com.conf
as :
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /_wwwroot/lar/hostels3/public
ServerName local-hostels3.com
ServerAlias local-hostels3.com
<Directory /_wwwroot/lar/hostels3/public>
AllowOverride All
Order Deny,Allow
Allow from all
Require all granted
</Directory>
Options FollowSymLinks
DirectoryIndex index.php
ErrorLog /_wwwroot/lar/hostels3/storage/logs/error.log
CustomLog /_wwwroot/lar/hostels3/storage/logs/access.log combined
</VirtualHost>
@petrogromovo are you now looking at how to you use it?
we use it by appending the following query on a url
?XDEBUG_SESSION_START=PHPSTORM
and then click on the old telephone handset icon in phpstorm to turn it green and start listening for a connection.
until you have breakpoints set up set 'break at first line in php' checkbox in xdebug config and you should get a response from xdebug when you hit your url.
Could you please to modify xdebug.remote_port, as I read :
xdebug.remote_port = <port_number>
By default, Xdebug listens on port 9000.
I work with lamp on ubuntu 18 locally on my laptop and on Digital Ocean server.
I read next :
Debug port field, select the Can accept external connections checkbox.
Select the Force break at the first line when no path mapping is specified checkbox to
I do not see these options. On which config page have I to search them ?
What is "10.0.2.2" in you code? If that is local server have it be "local-hostels3.com" from /etc/apache2/sites-available/local-hostels3.com.conf (I wrote above) ?