news

Debugging and testing over PHPStorm - SSH - Vagrant tunnel

I am happy to publish handy vagrant plugin which makes debugging and testing easy if you use PhpStorm and Vagrant box. The main idea is to add concept of debugging over SSH tunnel. Currently only HTTP concept is supported by default so this is a workaround for a missing feature in PhpStorm (see here)

Why SSH:

  • running non WEB based application in the box
  • executing php code in the box
  • unit testing
  • debugging

Installation

vagrant plugin install vagrant-phpstorm-tunnel

More information on Rubygems and Github

Comments

Related posts

Art 3D/VR challenge - week 1 - abstract overview

Previous week Next week Introduction This article is continuation of Art 3D/VR challenge. Please note, I don't describe all possible technologies, knowledge, science, models, and approaches you can find on the search engine. Index Abstract segments The chart above shows the…

WebSocket very basic protocol debugging overview

1. Required tools netcat brew install netcat nodejs brew install node websocket tools npm install websocket-upgrade Chrome browse 2. Starting netcat as "server" on localhost, port 8080 $ nc -lcvv localhost 8080 3. Creating websocket using chrome developer console var…