Rene van Dijk
Rene van Dijk

Reputation: 13

Wordpress is not installing from webbrowser

I have searched a lot, but i can't seem to find the answer to this. I'm setting up a Wordpress website on my VPS but Wordpress isn't loading correctly. I just get this on the homepage of the website :

<?php
/**
 * Front to the WordPress application. This file doesn't do anything, but loads
 * wp-blog-header.php which does and tells WordPress to load the theme.
 *
 * @package WordPress
 */

/**
 * Tells WordPress to load the WordPress theme and output it.
 *
 * @var bool
 */
define('WP_USE_THEMES', true);

/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . '/wp-blog-header.php' );

Any idea what could be the problem here? I found it could have something to do with file permissions but i can't find the problem.

(Sorry if this is a noob question)

Upvotes: 0

Views: 92

Answers (1)

Lee
Lee

Reputation: 4323

You need to install PHP on your webserver, you can do this via the terminal using:

apt-get install php5 

Upvotes: 0

Related Questions