daylightstudio / FUEL-CMS

A CodeIgniter Content Management System
http://www.getfuelcms.com
1.02k stars 453 forks source link

Start file missing on FUEL_CMS 1.4.1 #577

Closed 3ct0s closed 4 years ago

3ct0s commented 4 years ago

Hi There,

I acknowledge the fact that this version is not the latest and greatest but I need this specific one. Once I finished the set-up process a went ahead on the http://IP/fuelcms/fuel/start the file does not exist (404). And yes I have admin_enabled on MY_fuel.php

Can anyone help? Thanks.

daylightstudio commented 4 years ago

Did you update your .htaccess file to the following since you have it in a fuelcms subfolder?

RewriteBase /fuelcms/
3ct0s commented 4 years ago

Yes I did, but I am still getting 404 on /fuelcms/fuel/start What else can I do?

daylightstudio commented 4 years ago

Does /fuelcms/index.php/fuel/login and/fuelcms/fuel/login work? If it doesn't recognize the latter, it sounds like an Apache configuration issue where it's not recognizing the mod_rewrite rules.

3ct0s commented 4 years ago

Ok so http://192.168.10.132/fuelcms/fuel/login does not work But http://192.168.10.132/fuelcms/index.php/fuel/login does work and when I enter admin admin the dashboard does not load.

3ct0s commented 4 years ago

I have to add index.php to every request, how do I fix that? What changes do I have to make?

daylightstudio commented 4 years ago

Not necessarily. If the above works with index.php but it doesn't without it, it sounds like it may be an Apache mod_rewrite issue on the server which FUEL is initially setup to work with. There is a CodeIgniter file at fuel/application/config/config.php that has a configuration key of 'index_page' which is blank but you can add 'index.php' so that the URLs will work.

3ct0s commented 4 years ago

After I changed that it finally worked, thank you for your help!