I try to configure my phpStorm for debugging according to this tutorial .
My entire project is located in C:\work\Projects\xampp\htdocs\myCode
In the phpStorm I did to follow -
Under File > PHP > Servers:
Name: myCodeDebug
Host:http://localhost/myCode
Port:80
Debugger:Xdebug
Absolute path on server: http://localhost/myCode (same as the project location).
I use Apache server in ports 80,443.
My PhpStrom version is 7.1.3
Now I mark some breakpoints, go to Chrome and navigate to http://localhost/myCode/ but no any phpStrom debugger is promted although the entire website is got loaded .
What is missed here and how to make it works with xDebug?
Update:
Following the suggested in the comments , I followed this tutorial and now I have the chrome extension - Xdebug .
In this manual I paste all the content of php -i and did all what it required .
As described in Xdebug generator , I added two bookmarks - start debug and stop debug for IDE key = PHPSTORM .
In my php.ini I have -
[XDebug]
xdebug.idekey = "PHPSTORM"
xdebug.remote_port = 80
I work with xampp port 80 .
Now I hit the start deebug bookmark , in the phpStrom press on start to listen to php debug and set any breakpoint in php scope, set the Xdebug extension on Debug mode , browse to localhost/myCode/index.php but no any debugging is occur in the phpStrom .
How to config it correctly ?
Update 2:
Under cmd php --version I have -
PHP 5.5.11 (cli) (built: Apr 8 2014 15:07:14)
Copyright (c) 1997-2014 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2014 Zend Technologies
with Xdebug v2.2.5, Copyright (c) 2002-2014, by Derick Rethans
Also all in File | Setting | php | servers was deleted .
Update 3:
[Here is my phpinfo();] (personal details had changed to XXXXXXXX) .


Settings | PHP | Servers-- you have configured it wrong way. 2) Use this manual -- once debug connection is established IDE will help set it up for you -- confluence.jetbrains.com/display/PhpStorm/… . Another useful link: blog.jetbrains.com/phpstorm/2013/07/…Settings | PHP | Serversscreen has "Validate remote environment" button -- have you tried it before? If you did not -- then ignore for now. For that to work you had to have this set up + configured Deployment entry. The problem with your original "PHP | Servers" entry was "Host" field -- it should be actual host and not URL (in other words it should be just "localhost"). 2) The information you have provided still does not prove that xdebug is enabled (yes, I see that it is installed .. but is it enabled?) Please show thexdebugsection ofphpinfo();outputxdebug.remote_port = 80-- WTF is this? Why on Earth it is80? Docs anyone? confluence.jetbrains.com/display/PhpStorm/…phpinfo()is in the post under "Update 3" .