Whenever I try to change a setting in the control panel, it doesn't save and ends up on the home page after I hit save.
I was also getting 404 errors. So I did a fix I found
Open your config file in system/tastyigniter/config/config.php
On line 47 replace
$config['uri_protocol'] = 'AUTO';
with
$config['uri_protocol'] = "REQUEST_URI";
If that doesn't work, on line 29 replace
$config['index_page'] = '';
with
$config['index_page'] = 'index.php?';
Can anyone point me in the right direction to resolve this?