I wish to share my experience with running PHP 5.6 on Debian 12. As you all probably know, Debian 12 is comming with OpenSSL 3 and PHP 5.6 is not going to run with it. Therefore you need to run two Open SSL installations. Here is how to do it:
1. Download openssl 1.1.1 tar.gz from the official website (https://www.openssl.org/source/openssl-1.1.1u.tar.gz). Untar and ungz it. Then do configure it the following way:
Read more
1. Download openssl 1.1.1 tar.gz from the official website (https://www.openssl.org/source/openssl-1.1.1u.tar.gz). Untar and ungz it. Then do configure it the following way:
Code:
./config --prefix=/openssl-1.1.1 --openssldir=/openssl-1.1.1
make...
Read more