Hello,
I just started using CodeIgniter and have a problem with updating the welcome_message view or any other view.
I changed the files (added some text), uploaded the file to the server and reloaded the page. I can not see the text I have added.
I have updated the config.php with these values:
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 0;
$config['sess_expire_on_close'] = TRUE;
$config['sess_encrypt_cookie'] = FALSE;
$config['sess_use_database'] = FALSE;
$config['sess_table_name'] = 'ci_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = TRUE;
$config['sess_time_to_update'] = 0;I have tried viewing the file in Chrome, Firefox and IE but the changes cannot be seen.
After some time I could see the changed text.
Question:
I want to update the files and see the changes ASAP, is there a configuration setting that I have missed? How can I see the new views/controllers a soon I have updated them?
Thank you in advance
/luc