Jump to content

Ie8 (pos) & ssl


BAJI26

Recommended Posts

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 by BAJI26
Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated