Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Localhost/phpmyadmin/ returns php code

But however after changing the "httpd.conf" directory from index.html -> index.php I got this:

https://i.sstatic.net/pPR1e.png

Then I tried using XAMPP and even after that I've gotten that screen. Could someone tell me what I might be doing wrong?

Computer OS: Windows XP

Full Screen dump: http://pastebin.com/Zbbxvxib

like image 509
user2653511 Avatar asked Feb 13 '26 05:02

user2653511


1 Answers

Your problem is (as suggested in the comments) Apache has no idea "how" to run php, so it is just giving you the raw php files. You need to install PHP if you haven't, otherwise, if you have installed php you need to configure apache to use it.

If PHP is NOT installed

Go ahead and google it, there are a ton of resources out there explaining how to do it.

A good thing to look for is the WAMP stack. Which stands for Windows, Apache, MySQL & PHP. There are many places showing you how to install each of these individual components.

If PHP is installed

The httpd.conf file needs to be modified to include PHP.

Add the following line after all of the LoadModule statements:

LoadModule php5_module "[PathToPHP]/php5apache2_2.dll" 

Search for AddType, and add the following after the last AddType line:

AddType application/x-httpd-php .php 

Add the PHP location to the end of the httpd.conf file. For example, at the end of the file, add the following:

PHPIniDir "[PathToPHP]"
like image 64
Kirk Backus Avatar answered Feb 15 '26 19:02

Kirk Backus



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!