How to Enable Php In Apache

03-Apr-2023

.

Admin

Hi Guys,

In this tutorial,I will learn you how to use php code display in browser instead of executing it.you can easy and simply use php code display in browser instead of executing it.

If your PHP code is being displayed in the browser, it means that your server has not been setup to serve PHP scripts. Here are a list of things that you need to check in order to debug the issue.

Solution 1 :


First run php -v from command line to know if it return PHP version or any errors to make sure PHP is installed properly or not in your system.

If you don't have PHP installed then install PHP first in this case :

sudo apt-get install php libapache2-mod-php php-mcrypt php-mysql

If you have PHP installed but it is not enabled then enable by running following command :

sudo a2enmod php5

sudo service apache2 restart

If you have PHP installed and enabled both then restart your apache server by running following command:

sudo service apache2 restart

Solution 2 :

It might be PHP is not enabled in your apache configuration.

You can uncomment PHP module by removing '#' sign at the beginning from httpd.conf file. Save file and then restart the web server.

#PHP