I just upgraded my test site from 1.55 to 1.66 after the upgrade, the site would not work and i see that the issue is all the urls are httpss://bla. i have ssl'd my whole site and did not have this issue on 1.55. i did see a trick in another post and made the following change:
Code: Select all
#Document root as seen from the webserver. No slash at the end
#If page is requested with https use https as root url
#e.g. http://blah.com
$config['root_url'] = 'https://stage.ultra-fei.com';
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on')
{
#$config['root_url'] = str_replace('http','https',$config['root_url']);
}
the site seems to work now, so i guess i am ok, but it seems that this is a bug...right? I am not clear how to report a bug. any help would be ...er....helpful.
thanks