I wondering if somecould help me out with this. I followed instructions as stated above in the following link. I am recieving a line 6 error, here is the error as shown below;
Code:
Fatal error: require_once() [function.require]: Failed opening required '/home/usernamehere/public_html/blog/wp-admin/includes/upgrade.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/usernamehere/public_html/blog/wp-admin/upgrade.php on line 6
Now shown below , on line 6, where would this error occur, I am lost, still learning this php lingo as i go along,
Code:
<?php
define('WP_INSTALLING', true);
require('../wp-load.php');
timer_start();
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
if (isset($_GET['step']))
$step = (int) $_GET['step'];
else
Thankyou!