how to point apache to different version of php
- by user1218776
I installed apache on ubuntu like so:
apt-get install apache2
I initially had installed PHP by doing:
apt-get install php5
That gave me php 5.3.x. Now I want to use the latest version php 5.4.x so I installed from source. Through the cli
$ php -v
outputs the correct version PHP 5.4.3
When I run phpinfo() through the web, I still get php5.3.x. How would I point apache to use my newly installed php instead?