BAJI26 Posted May 16, 2009 Share Posted May 16, 2009 Anyone having trouble with IE8 and their SSL Certificates? 0 Quote Link to comment Share on other sites More sharing options...
BAJI26 Posted May 16, 2009 Author Share Posted May 16, 2009 (edited) It seems like since I upgraded to V4 my ssl isn't working correctly. FF: Although this page is encrypted, the information you have entered is to be sent over an unencrypted connection and could easily be read by a third party. Are you sure you want to continue sending this information? IE8: Do you want to view only the webpage content that was delivered securely? this webpage contains content that will not be delivered using a secure HTTPS connection, which could compromise the security of the entire webpage. Opera and Chrome are sending out the similar message. Is there a script or program I can run my site through to see if I can locate the problem with the unsecured connection. I've checked my css my tpls and nothing. Edited May 16, 2009 by BAJI26 0 Quote Link to comment Share on other sites More sharing options...
tomdchi Posted May 17, 2009 Share Posted May 17, 2009 view the source on the pages you have this error and see if the links in the head are correct. 0 Quote Link to comment Share on other sites More sharing options...
sparky Posted May 17, 2009 Share Posted May 17, 2009 A URL may help us to help you!! 0 Quote Link to comment Share on other sites More sharing options...
ljesh Posted May 17, 2009 Share Posted May 17, 2009 Ah, last night I spent 3 hours fixing this problem on my website. I wanted my customers to not receive that warning (since it didn't had much with the security... some image isn't transfered throught https, big deal (right???)) I had done custom integration of WHMCS (basic, heder/footer) so I had to change all links from http to https. That fixed this problem. 0 Quote Link to comment Share on other sites More sharing options...
BAJI26 Posted May 17, 2009 Author Share Posted May 17, 2009 Well its fixed all of my images and js were all relative paths but found out that the problem is with WHMCS {if $systemurl}<base href="{$systemurl}" />{/if} and custom pages and probably rewrite rules. 0 Quote Link to comment Share on other sites More sharing options...
sparky Posted May 17, 2009 Share Posted May 17, 2009 Well its fixed all of my images and js were all relative paths but found out that the problem is with WHMCS {if $systemurl}<base href="{$systemurl}" />{/if} and custom pages and probably rewrite rules. Yes the fix for anyone else is to replace that base href line with this one {php}global $CONFIG;$this->assign('url', (($_SERVER['HTTPS'] == 'on') ? $CONFIG['SystemSSLURL'] : $CONFIG['SystemURL']));{/php} <base href="{$url}/" /> Then https will work correctly on custom pages 0 Quote Link to comment Share on other sites More sharing options...
BAJI26 Posted May 17, 2009 Author Share Posted May 17, 2009 Matt this should be implemented in Whmcs. 0 Quote Link to comment Share on other sites More sharing options...
markb1439 Posted May 18, 2009 Share Posted May 18, 2009 Where do I implement this fix? (New to this.) 0 Quote Link to comment Share on other sites More sharing options...
sparky Posted May 18, 2009 Share Posted May 18, 2009 Where do I implement this fix? (New to this.) in your header.tpl 0 Quote Link to comment Share on other sites More sharing options...
tomdchi Posted May 19, 2009 Share Posted May 19, 2009 What is odd is that I have only had this problem with an upgrade but not a fresh install. Anyone have an idea as to why? 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.