It looks like you're new here. If you want to get involved, click one of these buttons!
Hello,
I have install Fuel CMS on fuel.anggitpuguh.my.id. I used **NGINX ** for Web server.
The problem is, the admin menu on my website when clicked appears loading doesn't stop (screenshot https://prnt.sc/Blczt-zLWbHE ). Do you have any suggestions?
application/config/config.php
$config['base_url'] = 'http://fuel.anggitpuguh.my.id';
$config['index_page'] = 'index.php?';
$config['encryption_key'] = 'My encryption key';
$config['sess_save_path'] = NULL;
application/config/MY_fuel.php
$config['admin_enabled'] = TRUE;
$config['fuel_mode'] = 'AUTO';
Do you have suggestions so i can use url http://fuel.anggitpuguh.my.id/fuel for url admin ?
thanks
Comments
Open up your browser's debug console (F12?) and reload the page. You should get some more clues as to what's going on. Your NGINX server logs should also give you some clues.
Thanks @almostcompletely .
I am found error 400 bad request https://prnt.sc/WrWwK73Y7q8K
https://fuel.anggitpuguh.my.id/index.php?/fuel/sitevariables/items/&search_term=&limit=50&view_type=list&offset=0&order=asc&col=name&fuel_inline=0
but I have not found a solution to solve it.
do you have any suggestions?
I had the same issue, and found the solution several minutes ago while trying to remember the details
In my case, I just went to config.php and set the
$config['base_url']='url of the nginx server with http or https set correctly';
because the nginx server is in https, the apache is in http, and it was incorrectly requesting in http on the same request as yours.
Good luck if it's not too late !
And anyway, it might be useful for someone else