Dear Dave,
So I’ve been trying to get ftp access to our site and just now as able to log on. Upon doing so I saw that we have both an .htcaccess file and a .htcaccess1 file.
This is what the .htcaccess file had in it
AddType x-mapp-php5 .php
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
and this is what the .htcaccess1 had in it
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
After adding the line of code to the .htcaccess file on the bottom, I tried to go to the admin page of our WordPress and got the following page:
<?php
/**
* Dashboard Administration Panel
*
* @package WordPress
* @subpackage Administration
*/
/** Load WordPress Bootstrap */
require_once(‘admin.php’);
/** Load WordPress dashboard API */
require_once(ABSPATH . ‘wp-admin/includes/dashboard.php’);
wp_dashboard_setup();
wp_enqueue_script( ‘dashboard’ );
wp_enqueue_script( ‘plugin-install’ );
wp_enqueue_script( ‘media-upload’ );
wp_admin_css( ‘dashboard’ );
wp_admin_css( ‘plugin-install’ );
add_thickbox();
$title = __(‘Dashboard’);
$parent_file = ‘index.php’;
require_once(‘admin-header.php’);
$today = current_time(‘mysql’, 1);
?>
<div class=”wrap”>
<?php screen_icon(); ?>
<h2><?php echo esc_html( $title ); ?></h2>
<div id=”dashboard-widgets-wrap”>
<?php wp_dashboard(); ?>
<div class=”clear”></div>
</div><!– dashboard-widgets-wrap –>
</div><!– wrap –>
<?php require(ABSPATH . ‘wp-admin/admin-footer.php’); ?>
So I’m kind of stuck now, and due to my lack of knowledge of WordPress, don’t know where to go from here. Thanks so much again for helping.