From a507ff532d79fec5640b2d84438427b581fa6d64 Mon Sep 17 00:00:00 2001 From: Damien Robillard <drobillag@gmail.com> Date: Tue, 17 Nov 2015 11:40:34 +0100 Subject: [PATCH] Update xhprof and phpunit install --- INSTALL.fr.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/INSTALL.fr.md b/INSTALL.fr.md index f53c07dd14a..3245bc6cf58 100644 --- a/INSTALL.fr.md +++ b/INSTALL.fr.md @@ -10,9 +10,9 @@ apt-get install python-software-properties php5 php5-gd php5-imagick php5-xdebug ## Debian Wheezy-Jessie ``` -apt-get install php5 php5-gd php5-imagick php5-xdebug php-pear php5-mysql graphviz apache2 mysql-server libapache2-mod-php5 git php5-mcrypt php5-curl yaz -``` +apt-get install php5 php5-gd php5-imagick php5-xdebug php-pear php5-mysql graphviz apache2 mysql-server libapache2-mod-php5 git php5-mcrypt php5-curl yaz php5-xhprof +``` ## ArchLinux ``` yaourt -S php php-gd php-imagick xdebug php-pear apache mariadb php-apache php-xhprof graphviz git php-mcrypt binutils automake autoconf gcc make fakeroot @@ -28,11 +28,12 @@ Il est nécessaire de compiler Imagick extension à partir des sources. # Installer PHPUnit (en compte root / sudo): +Rechercher le numéro de la dernière version *phpunit-x.x.x.phar* sur [https://phar.phpunit.de](https://phar.phpunit.de) ``` cd /usr/local/bin - wget https://phar.phpunit.de/phpunit.phar - mv phpunit.phar phpunit + wget https://phar.phpunit.de/phpunit-x.x.x.phar + mv phpunit-x.x.x.phar phpunit ``` # Récupération des sources @@ -82,6 +83,8 @@ Dans /etc/php5/apache2/php.ini (ArchLinux: /etc/php/php.ini), configurer les var post_max_size = 10M upload_max_filesize = 10M error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED +extension = xhprof.so +xhprof.output_dir = /chemin/vers/bokeh/temp ``` Activez les extensions suivantes si elles ne le sont pas déjà (elles devraient l'être) : -- GitLab