I've uploaded Wordpress and got it installed, I can access the Dashboard, but I cannot view the blog on the root of the website. I've deleted index.html and all that's there now for an index file is index.php. I got the SQL server and user set up and working (I think?).
I do have an .htaccess file, currently in it is just says:
# BEGIN WordPress
# END WordPress"
And here's the contents of index.php:
<?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('./wp-blog-header.php');
?>
What am I doing wrong, why isn't it coming up? :(