Site on live server goes to 'start' and with an error
I have a working site on my local machine.
I uploaded everything to the live server but on the live server it redirects to mysite/start and I get this error:
The page isn’t redirecting properly
Why is that?
Comments
Check the server logs, you might get more clues about what the web server service is complaining about
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/.+) - [F,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [L]
# Prevents access to dot files (.git, .htaccess) - security.
RewriteCond %{SCRIPT_FILENAME} -d
RewriteCond %{SCRIPT_FILENAME} -f
RewriteRule "(^|/)\." - [F]
Options -Indexes
The error:
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
I don't see anything on the server's logs from today.
I'm waiting to hear from my host if rewrite_mod is on.
I checked the php version, it was 5.6, changed it to 7, deleted the fuel folder and uploaded it again.
Now I just get a blank page
Type: RuntimeException
Message: Unable to locate the model you have specified: Forms_model
Filename: /home/noahscheeseco/public_html/fuel/codeigniter/core/Loader.php
Line Number: 348
But the forms_model is in the fuel/modules folder
I changed the file name to: Forms_model, now I get this error:
Message: require_once(/home/noahscheeseco/public_html/fuel/application/../../fuel/modules/fuel/models/base_module_model.php): failed to open stream: No such file or directory
Filename: models/Forms_model.php
Line Number: 3
But the file exists
$config['modules_allowed'] = array(
'user_guide',
And now it works but I would like to know how to solve the problem if I do want to use the 'forms' module