Table of Contents

TECH2018/S1/Install LAMP Package with PHP 5.6

Install Apache

   > sudo apt-get update 
   > sudo apt-get install apache2

Install Php

   > sudo apt-get install php5.6

Install PostgreSQL and Pgadmin

   > sudo apt-get install postgresql
   > sudo apt-get install pgadmin3

Install and enable php-mycrypt

   > sudo apt-get install mcrypt php5-mcrypt 
   > sudo php5enmod mcrypt 
   > sudo service apache2 restart

Install and enable php-gd

   > sudo apt-get install php5-gd
   > sudo service apache2 restart

https://www.digitalocean.com/community/questions/how-to-install-php-5-6-on-centos-7-0-x64

yum install php php-gd php-mysql php-mcrypt php-pgsql 

Back to installation page