How to install Apache together with PHP5 on Ubuntu?
|
|
|
|
|
Question: How to install Apache together with PHP5 on Ubuntu? This becomes very handy if you wish to do some PHP development on Ubuntu. Answer: - Open a new terminal window (CLI)
- Execute the following commands:
sudo apt-get install apache2
sudo apt-get install php5
sudo apt-get install libapache2-mod-php5
- Now we need to restart Apache so that our changes can take effect. There are two commands for you to choose from
sudo /etc/init.d/apache2 restart or
sudo service apache2 restart
|