php showing source code in localhost

61,428

Solution 1

I can think of 3 possibilities:

  1. You don't have PHP installed. In that case run:

    sudo apt-get install php php-mysql
    
  2. You have PHP installed but not enabled. You can try running:

    sudo a2enmod php7  
    sudo service apache2 restart  
    
  3. You have PHP installed and enabled but you haven't restarted apache.

    sudo service apache2 restart
    

Solution 2

you need to install libapache2-mod-php sudo apt-get install libapache2-mod-php it is no longer pulled by other packages as a dependency in 14.04 it named libapache2-mod-php5, in 16.04 they dropped the number at the end for a meta package

Solution 3

For Ubuntu 20.04, I had to run:

sudo a2dismod mpm_event    

It tells you to restart Apache2, but you don't need to at this point. Then enable php 7.4 using:

sudo a2enmod php7.4

Then restart Apache2: sudo systemctl restart apache2

Hope this helps!

Solution 4

After Upgrading to Ubuntu 17.10 this morning my answer was a combination of Sledge Hammer's and GM-Script-Writer-62850's answer. The exact commands I needed were:

sudo apt-get install libapache2-mod-php
sudo a2enmod php7.1
systemctl restart apache2
Share:
61,428

Related videos on Youtube

Anuj TBE
Author by

Anuj TBE

I am a software engineer persuing B.Tech with Computer Science. Like to write and deploy softwares,programs and website/web programs for windows,android and many...

Updated on September 18, 2022

Comments

  • Anuj TBE
    Anuj TBE over 1 year

    i have apache2 (Server version: Apache/2.4.7 (Ubuntu) Server built: Mar 10 2015 13:05:59), mysql and phpmyadmin.

    While accessing php file by http://localhost/ or http://ipaddress

    It shows up source code instead of executing.

    Ubuntu 14.04 LTS

    enter image description here

    • muru
      muru about 7 years
    • Anuj TBE
      Anuj TBE about 7 years
      @muru that question is different from this. This displays the source code while that question specifies that file is downloaded instead of executing.
    • muru
      muru about 7 years
      that just depends on the media type set for the file, the core problem is the same.
  • Anuj TBE
    Anuj TBE almost 9 years
    none of them worked for me. Here are the results: 1 . E: Unable to locate pachage php I tried with php5 which gives php5 is already the newest version. 2 . ERROR: Module php5 does not exist!. I tried with php which gives same error. 3 The apache2 configtest failed.
  • Sledge Hammer
    Sledge Hammer almost 9 years
    It seems you don't have modphp installed... Try the following sudo apt-get install libapache2-mod-php5 and then restart apache... if it still doesn't work try running sudo a2enmod php5 again.
  • Anuj TBE
    Anuj TBE almost 9 years
    I didn't helped me. Now I am left with one solution and that is to reinstall Ubuntu. But, if php starts working prior to this, it will be life saver to me.
  • Sledge Hammer
    Sledge Hammer almost 9 years
    In tat case you might want to completely reinstall apache, php & mysql. In terminal do the following: sudo apt-get purge apache2 php5 mysql-server This will completely remove the packages including their configuration files so if you have made any important changes better make a backup of /etc/apache2 , /etc/mysql and /etc/php5 first. After that do the following: sudo apt-get install apache2 php5 mysql-server . Note that it is important to install them all at once because otherwise modphp doesn't always get installed.
  • DSP
    DSP over 3 years
    Thanks finally I found your answer to make it work
  • Vincent Decaux
    Vincent Decaux almost 3 years
    Worked like a charm on fresh install with ubuntu 20.04. Thanks a lot !
  • Kiran RS
    Kiran RS over 2 years
    @FlyGuy - What if server is using map_event mode?