![]() |
|
|||||||
| Register | Projects | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| v3.1 Questions & Support Help and support for 68 Classifieds v3.1.x |
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Hello,
I've just installed a secure certificate on my site, have signed up for Authorize.net, and have set up the AIM method. When I go to a secure "https" page in my site, I get a warning asking if I want to display secure and unsecure data. If I answer "yes", the page loads fine, but no lock displays on the bottom of my browser (IE 7). I've been told that secure pages can't have any links to "http" pages. All links must be relative, or link to "https". When I go to the page in IE & view source, there are 5 hard coded "http" references. I'm concerned about 2 of them as follows: 1st http reference is http://www.w3.org/TR/html4/loose.dtd , I don't think this is the issue but I'm not sure 2nd hardcoded link is for the SEO module as I understand: <base href="http://www.domain.com/" /> Can anything be done with this to make it a relative or https link? Also, there are 2 hardcoded links that are commented out, but when I view source, I see them. Do you think these could be the problem? Any help would be appreciated! Thank you, Kelly Olsen v3.1.10 Dev |
|
#2
|
||||
|
||||
|
Hi Kelly,
You can try replacing the base href tag with this: Code:
{if $smarty.server.SERVER_PORT==443}
<base href="{$smarty.const.URLS}/" />
{else}
<base href="{$smarty.const.URL}/" />
{/if}
__________________
Eric Barnes 68 Classifieds Developer Customer Area | Issue Tracker | Knowledge Base | User Manuals | My Blog |
|
#3
|
|||
|
|||
|
Hi Eric,
Thanks for the quick reply! One more question, you say "images, style sheet, etc need to also be called through https" If the images/stylesheets/etc... are relative links, will that work, or do I have to duplicate each image/stylesheet/etc. with an "https" version? Thanks again, Kelly |
|
#4
|
||||
|
||||
|
Eric, how does altering the base href affect the SEO module??
__________________
Larry. |
|
#5
|
||||
|
||||
|
Quote:
Code:
{if $smarty.server.SERVER_PORT==443}
<base href="{$smarty.const.URLS}/" />
{else}
<base href="{$smarty.const.URL}/" />
{/if}
<link href="style.css" rel="stylesheet" type="text/css" />
Quote:
__________________
Eric Barnes 68 Classifieds Developer Customer Area | Issue Tracker | Knowledge Base | User Manuals | My Blog |
|
#6
|
||||
|
||||
|
Quote:
__________________
Larry. |
|
#7
|
||||
|
||||
|
Yea just add it to the layout file. The URLS will not be used until you click a link that takes you to https.
__________________
Eric Barnes 68 Classifieds Developer Customer Area | Issue Tracker | Knowledge Base | User Manuals | My Blog |
|
#8
|
||||
|
||||
|
Great, thanks for the clarification Eric.
__________________
Larry. |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| SSL Certificate | Syssh | v3.1 Questions & Support | 2 | 11-26-2006 11:08 PM |
| Upgrading to v3.1.3 issues again | GSP | v3.1 Questions & Support | 6 | 06-12-2006 08:03 AM |
| Certificate Installation | motoenth | News & Announcements | 0 | 04-27-2006 10:23 AM |
| Paypal issues | doug-gb | v3.0 Questions & Support | 9 | 04-03-2006 06:27 AM |