downgrade php from 5.6.9 to 5.3.3 debian jessie -


we have php application running on debian squeeze server.

when install on new server (debian jessie), doesn't run properly.

how can downgrade php 5.6.9 5.3.3?

thanks

the latest version of php used in squeeze 5.3.3.

add squeeze repos in source list:

deb http://archive.debian.org/debian/ squeeze main contrib non-free deb http://archive.debian.org/debian/ squeeze-lts main contrib non-free 

update package list:

apt-get -o acquire::check-valid-until=false update 

uninstall current php version:

dpkg -r --force-depends $(dpkg -l | grep php | awk '{print $2}') 

install same php packages using squeeze repo:

apt-get install -t "squeeze" $(dpkg -l | grep php | awk '{print $2}') 

note: use downgrade php squeeze-s php 5.3 lenny's php 5.2, should works jessie squeeze.


Comments

Popular posts from this blog

android - Pass an Serializable object in AIDL -

How to provide Authorization & Authentication using Asp.net, C#? -

How to use Authorization & Authentication in Asp.net, C#? -