cox1e Posted July 8, 2008 Posted July 8, 2008 Hi, A recent project has seemed to go a bit wayward over . The Site is fully functional in Firefox (including images and CSS styling) but in IE it does not! http://twickenham-hospitality.co.uk/catalog Could any shed some light on this? Thanks Dave
cox1e Posted July 8, 2008 Author Posted July 8, 2008 Working fine for me in both FF2 and IE7 Yeah managed to find the problem. It to do with the SSl config in application_top.php Different server check for different answers when checking for SSL's Change: $request_type = (getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL'; to: $request_type = (getenv('HTTPS') == '1') ? 'SSL' : 'NONSSL'; This.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.