Home > Article > Backend Development > A brief analysis of how to install PHP5.2.0 on the Pagoda Linux panel
Pagoda Linux is a very excellent website management panel, which makes the management of Linux systems easy and simple. However, during use, we inevitably need to use different versions of PHP, and the default PHP version of Pagoda Linux may not be what we need. This article will introduce how to install PHP5.2.0 on Pagoda Linux, providing developers with more PHP version choices.
1. Preparatory work
Before installing PHP5.2.0, you need to install Pagoda Linux first. For the specific process, please refer to the official documentation for installation and configuration. At the same time, it should be noted that before performing the following operations, the system with yum source installed needs to upgrade the yum source first. The method is as follows:
wget http://download.bt.cn/install/update.sh chmod +x update.sh ./update.sh
2. Download the PHP5.2.0 source code package
On the Pagoda Linux page, select "Website" → "PHP Version" → "Customized Version" → "Download" to enter the download page, and enter the following address in the "PHP Download Address":
http://museum.php.net/php5/php-5.2.0.tar.gz
Then Click the "Download" button and wait for the download to complete.
3. Unzip the PHP5.2.0 source code package
After the download is completed, return to the Pagoda Linux page, select "File Management" → "Upload File" to upload what you just downloaded "php-5.2.0.tar.gz" source code package. After uploading, select "File Management" → "Decompression" to perform the decompression operation.
4. Install the compilation tools
On the Pagoda Linux page, select "Software Management" → "Install Software" and enter the following command to install the dependent tools:
yum -y install gcc bison bison-devel ncurses-devel libxml2-devel libjpeg-devel libpng-devel freetype-devel libmcrypt-devel libxslt-devel openssl-devel curl-devel gdbm-devel db4-devel libXpm-devel libicu-devel libldb-devel libzip-devel –y
5. Compile and install PHP5.2.0
Open the SSH tool, connect to the server (you can skip it if you are already connected), execute the following command and enter the source package directory:
cd /www/server/php/5.2.0/php-5.2.0
Next, execute the following command to configure PHP5.2.0:
./configure --prefix=/www/server/php/5.2.0 --enable-fastcgi --enable-fpm --enable-mysqlnd --with-mysql=mysqlnd --with-pdo-mysql=mysqlnd --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --with-curlwrappers --enable-mbregex --enable-fpm --enable-mbstring --with-mcrypt --with-gd --with-xsl --with-gettext --with-xmlrpc --with-zip --enable-soap --disable-fileinfo --enable-opcache --with-openssl
After execution, execute the following command to compile and install PHP5.2.0:
make make install
After the installation is successful, execute the following command , copy the configuration file of PHP5.2.0 to the corresponding location:
cp php.ini-development /usr/local/lib/php.ini
6. Add PHP5.2.0 to Pagoda Linux
Return to the Pagoda Linux page and select "Website ” → “PHP Version” → “Add”, in the pop-up window, enter the following:
Name:php5.2.0 Version:5.2.0
and click “Confirm” to complete the addition.
7. Configure the website to use PHP5.2.0
On the Pagoda Linux page, select "Website" → "Add Website", and select just now in "PHP Version" Add "php5.2.0", then perform other configurations and save.
8. Test
Enter the website address in the browser and open the website to test PHP5.2.0. If the PHP page appears, the installation is successful.
Summary:
Through the above steps, we can easily install PHP5.2.0 on Pagoda Linux. I hope this article will be helpful to everyone, make it easier for you to manage your website, and provide you with more PHP version choices.
The above is the detailed content of A brief analysis of how to install PHP5.2.0 on the Pagoda Linux panel. For more information, please follow other related articles on the PHP Chinese website!