Error 500 when accessing and navigating CMS
Hello.
We have recently inherited a web site and now that the site is in place on our server we are unable to use the CMS.
When we navigate to '
http://www.site.com/site-admin' we receive error 500.
Any insight you are able to provide will be appreciated.
Thank you!
relevant settings as they were inherited:
Config files:
$config['fuel_path'] = 'site-admin/'
$config['index_page'] = "";
htaccess:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
Order Deny,Allow
Deny From All
# Allow asset folders through
RewriteRule ^(fuel/modules/(.+)?/assets/(.+)) - [L]
# Protect application and system files from being viewed
RewriteRule ^(fuel/install/.+|fuel/crons/.+|fuel/data_backup/.+|fuel/codeigniter/.+|fuel/modules/.+|fuel/application/.+|\.git.+) - [F,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php?/$0 [NC,L,QSA]
Options -Indexes
Comments
RewriteRule .* index.php/$0 [L]