Setting up SSH Agent (pageant) in Windows

  • Download and Install PLink
    • copy plink.exe into C:\windows\
  • Download and intsall Pageant
    • copy pageant.exe to a safer place . C:\windows\ is recommended
  • Running Pageant
    • Double-click pageant to start it. It will start minimized on the task bar and looks like this: .
    • Double-click the pageant icon the the task bar. You will see a list of any keys that are already loaded.
    • Use puttygen.exe to generate the ssh key-pair
      • puttygen.exe can be used to convert the private key generated from ssh-keygen to PKCS format
    • Click  Add Key. You will be prompted to provide the private key file.
    • Browse the Internal key file & click on Load.
    • Click  Open.
    • Enter the passphrase you supplied on key creation. The key appears in the main window list when loaded.
    • Close the window.
      NOTE: You need to restart Pageant and reload your keys every time you reboot your machine.
  • To use Git with pageant
    • set environment variable GIT_SSH=C:\Windows\plink.exe
    • Trust the remote host one-time for each host
      • plink.exe -agent -v git@github.com

xDebug PHP CLI Applications in Eclipse

I have some phpunit test cases which I need to debug in my eclipse .
I’m trying to explain the debugging setup in the following situation

  • Run PHPUnit from Command Line
  • Debug from eclipse

Step 1 :  Install xDebug

more comprehensive guide to install xDebug is here https://xdebug.org/docs/install

Step 2 : php.ini Settings

[XDEBUG]
zend_extension = fullpathtoxdebugextension
xdebug.remote_enable=1
xdebug.remote_host="localhost"
xdebug.remote_port=9000
xdebug.remote_handler="dbgp"
xdebug.remote_autostart=On

Step 3 : Eclipse Setup

      Set up as the highlighted fields in below screenshots

Step 3.1 : Setup PHP and xDebug executables

php-eclipse-setup1

 

Step 3.2 : setup Debug

php-xdebug-eclipse2

 

php-xdebug-eclipse3