Debian Wheezy mise à niveau PHP 5.4 à 5.5

[résolu]

J'ai installé Debian Wheezy avec php 5.4.18.
Je voulais le mettre à niveau à 5.5.x, mais la procédure standard ne fonctionne pas.

C'est mon /etc/apt/sources.liste des fichier de:

# deb cdrom:[Debian GNU/Linux 7.0.0 _Wheezy_ - Official amd64 NETINST Binary-1 20130504-14:43]/wheezy main
deb http://ftp.pl.debian.org/debian/wheezy main
deb-src http://ftp.pl.debian.org/debian/wheezy main

deb http://security.debian.org/wheezy/updates main
deb-src http://security.debian.org/wheezy/updates main

# wheezy-updates, previously known as 'volatile'
deb http://ftp.pl.debian.org/debian/wheezy-updates main
deb-src http://ftp.pl.debian.org/debian/wheezy-updates main

#php 5.5
deb http://packages.dotdeb.org wheezy-php55 all
deb-src http://packages.dotdeb.org wheezy-php55 all

J'ai mis à jour les sources avec

apt-get update

et installé php5

apt-get install php5

mais après httpd restart j'ai encore la vieille version de php.

php -v

retourne:

root@xxx:/# php -v
PHP 5.4.18 (cli) (built: Aug 19 2013 04:03:40)
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies
    with Xdebug v2.2.1, Copyright (c) 2002-2012, by Derick Rethans

quand je recherche php

find /-name php5

Je vois juste installé les fichiers

root@xxx:/usr/bin# ls -l php*
lrwxrwxrwx 1 root root      21 Dec 11 00:15 php -> /etc/alternatives/php
-rwxr-xr-x 1 root root 8956912 Nov 17 02:37 php5
root@xxx:/usr/bin# ./php5 -v
PHP 5.5.19-1~dotdeb.1 (cli) (built: Nov 17 2014 01:24:08)
Copyright (c) 1997-2014 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2014 Zend Technologies
    with Zend OPcache v7.0.4-dev, Copyright (c) 1999-2014, by Zend Technologies
    with Xdebug v2.2.6, Copyright (c) 2002-2014, by Derick Rethans
root@xxxx:/usr/bin# ./php -v
PHP 5.5.19-1~dotdeb.1 (cli) (built: Nov 17 2014 01:24:08)
Copyright (c) 1997-2014 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2014 Zend Technologies
    with Zend OPcache v7.0.4-dev, Copyright (c) 1999-2014, by Zend Technologies
    with Xdebug v2.2.6, Copyright (c) 2002-2014, by Derick Rethans

Mon phpinfo retourne la Version de PHP 5.4.18

Ce que je fais mal?

//edit:
J'ai mis à jour par directadmin/custombuild

root@xxxx:/usr/local/directadmin/custombuild# vim options.conf

j'ai changé de ligne:

php1_release=5.4

à

php1_release=5.5

et suivant:

root@xxxx:/usr/local/directadmin/custombuild# ./build update_data
# [..]
root@xxxx:/usr/local/directadmin/custombuild# ./build php d
# [..]

Maintenant, j'ai php 5.5.19, et je peux l'utiliser password_hash ();)

source d'informationauteur marcin110987 | 2014-12-11