Prashant Shrivastava
Prashant Shrivastava

Reputation: 713

phpinfo() not working in apache2

I wanted to install php5.3 on ubuntu 14.04(its not natively available as ubuntu pkg), so I installed each apache2, mysql5.6 and php5.3 separately.

PHP5.3 is utmost important for my project.

Now i wanted to test if each of them was working fine together.

I created a info.php file in /var/www/html/ containing code as <?php phpinfo(); ?> but the output showed an output like an HTML rendered page.

enter image description here

Can anyone please tell me how to test/check if all three of them are working together fine?

I would be very thankful, if anyone can please give a link or detailed-description where I can read instructions on how to integrate all three of them together while not uninstalling any of them.

Upvotes: -1

Views: 14397

Answers (3)

IanNoz
IanNoz

Reputation: 21

Equivalent solution for PHP 7: install libapache2-mod-php:

sudo apt install libapache2-mod-php

Upvotes: 0

Adri&#225;n Prieto
Adri&#225;n Prieto

Reputation: 1

sudo apt-get install libapache2-mod-php5

This doesn't work because is obsolete:

sudo apt-get install libapache2-mod-php5

Reading package lists... Done Building dependency tree
Reading state information... Done Package libapache2-mod-php5 is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source

E: Package 'libapache2-mod-php5' has no installation candidate

Upvotes: 0

venca
venca

Reputation: 1222

Install sudo apt-get install libapache2-mod-php5 if you didnt before.

Upvotes: 3

Related Questions