Xdebug installation with php 5.6 and Ubuntu

MacBook avec code sur un bureau

First of all you have to install the xdebug package for PHP 5.6 sudo apt-get install php-xdebug Then you have to enable it so it is accessible from PhpStorm for example Edit the file sudo nano /etc/php/5.6/mods-available/xdebug.ini and add the following lines xdebug.remote_enable xdebug.remote_connect_back xdebug.idekey – "vagrant" The PHP service needs to be restarted sudo … Read more

Docker: How to use XDebug with docker-compose

MacBook avec code sur un bureau

Docker In the docker-compose.yml file create an images/php image Import: build: images/php Ports: – 80:80 Volumes: – .. /..:/ var/www find your IP address (ifconfig / ipconfig) – in my example (10.1.0.133) Create a Dockerfile in the images/php folder FROM php:7.0.1-apache RUN yes pecl install -o -f xdebug rm -rf /tmp/pear "zend_extension/usr/local/lib/php/extensions/no-debug-non-zts-20151012/xdebug.so" – /usr/local/etc/php/conf.d/xdebug.ini echo … Read more

Docker: How to use nano

MacBook Pro affichant un éditeur de code

To use nano in Docker, you have to update apt-get and install nano. When trying to open a file you may face the error Error opening terminal: unknown. No worries, just export the TERM=xterm variable apt-get update apt-get install nano export TERM-xterm

Git how to check only a folder – Sparse checkout

MacBook Pro affichant un éditeur de code

Since git 1.7.0 it is possible to use a technique called sparse checkout The steps for cloning are: Mkdir<repo></repo> Cd<repo></repo> git init git remote add -f origin<url></url> This creates an empty folder, runs the fetches but without checking out the files. Then you have to configure git to use sparseCheckout. git config core.sparseCheckout true Then … Read more