php - Xdebug not working in PHPStorm IDE -



php - Xdebug not working in PHPStorm IDE -

i trying setup xdebug in phpstorm ide , followed steps mentioned in 1 document

i followed document :"http://www.mysolutions.it/phpstorm-server-xdebug-configuration/".

but getting 1 error "port 9000 busy " , if run debug ,it quitting.i share config settings

the steps have done

in xdebug.ini

zend_extension="/usr/lib/php5/20090626/xdebug.so" xdebug.default_enable = 1 xdebug.idekey = "vagrant" xdebug.remote_enable = 1 xdebug.remote_autostart = 0 xdebug.remote_port = 9000 xdebug.remote_handler=dbgp xdebug.remote_log="/var/log/xdebug/xdebug.log" xdebug.remote_host="myip"

in php storm

file->settings->phpservers host : ip virtual machine(ip added in host file) port:80 debugger:xdebugger

i checked checkbox (use pathmappings)

under project files (absolute path on server : /var/www/myproj)

file->settings->deployment

connection:

type : ftp ftp host :my virtual machine ip port :80 root path:/var/www

mappings:

local path: /users/m1019238/dev/myproject/myproj

web path on server : /var/www/myproj

i share if missed settings have done other this. sorry english.

i've alter port on "build,execution, deployment" -> "debugger" else 9001 , set 9000. weird because phpstorm using port.

php vagrant virtualbox

Comments

Popular posts from this blog

php - Android app custom user registration and login with cookie using facebook sdk -

django - Access session in user model .save() -

php - .htaccess Multiple Rewrite Rules / Prioritizing -