Loaded Commerce Community

Banner


Board index » CRE Loaded Support » CRE Loaded 6.4

All times are UTC - 5 hours




Post new topic Reply to topic  [ 12 posts ] 
Author Message
 Post subject: COMODO Secure seal install
PostPosted: Sun Jan 29, 2012 10:12 am 
Offline
CRE Freak
User avatar

Joined: Sat Aug 09, 2008 6:58 pm
Posts: 46
Hi guys,
has anyone installed a COMODO secure seal on their site?

You have to put ...

Code:
<script language="javascript" type="text/javascript">

//<![CDATA[

var tl_loc0=(window.location.protocol == "https:")? "https://secure.comodo.net/trustlogo/javascript/trustlogo.js" :

"http://www.trustlogo.com/trustlogo/javascript/trustlogo.js";

document.writeln('<scr' + 'ipt language="JavaScript" src="'+tl_loc0+'" type="text/javascript">' + '</scr' + 'ipt>');

//]]>

</script>


in the header.
Then...

Code:
<a href="http://www.instantssl.com" id="comodoTL"></a>

<script type="text/javascript">TrustLogo("https://www.my-domain.com/cot-seal.gif", "SC4", "none");</script>



where you want the seal to render.
I don't know where to start lol, any help would be much appreciated.
Thanks in advance for your help
Kind regards

Lloyd

_________________
| CRE 6.4.1 Pro | Ubuntu 8.04 | Plesk 10.4.4 |
| Apache 2.2.8-1ubuntu0.22 | PHP 5.2.4-2ubuntu5.19 |
| MySQL 5.0.51a-3ubuntu5.8 | PCI Compliant Server |


Top
 Profile  
 
 Post subject: Re: COMODO Secure seal install
PostPosted: Sun Jan 29, 2012 10:36 am 
Offline
CRE Freak
User avatar

Joined: Sat Aug 09, 2008 6:58 pm
Posts: 46
I just found this ..

http://www.oscommercesupport.net/oscomm ... 35633.html

but I'm not sure how relevant it is though.

_________________
| CRE 6.4.1 Pro | Ubuntu 8.04 | Plesk 10.4.4 |
| Apache 2.2.8-1ubuntu0.22 | PHP 5.2.4-2ubuntu5.19 |
| MySQL 5.0.51a-3ubuntu5.8 | PCI Compliant Server |


Top
 Profile  
 
 Post subject: Re: COMODO Secure seal install
PostPosted: Sun Jan 29, 2012 11:36 am 
Offline
CRE Talented

Joined: Thu Dec 25, 2008 5:09 pm
Posts: 489
Location: CO
In my opinion:
Put the javascript in the <head></head> section in your main_page.tpl.php file. (or to be cleaner you can put it in the javascript folder, in a javascript file, and the call in the head section in the main_page.tpl.php file)

Then exactly as you state put the other code "where you want the seal to render."

If you want it at the top of the page then maybe in the header file? header.php

Mike


Top
 Profile  
 
 Post subject: Re: COMODO Secure seal install
PostPosted: Sun Jan 29, 2012 1:42 pm 
Offline
CRE Freak
User avatar

Joined: Sat Aug 09, 2008 6:58 pm
Posts: 46
cheapo wrote:
In my opinion:
Put the javascript in the <head></head> section in your main_page.tpl.php file. (or to be cleaner you can put it in the javascript folder, in a javascript file, and the call in the head section in the main_page.tpl.php file)

Then exactly as you state put the other code "where you want the seal to render."

If you want it at the top of the page then maybe in the header file? header.php

Mike


That's great, thanks Mike.
One small issue, it won't work properly in IE9 lol
I created a new info box for it, shows exactly where i put it in chrome (bottom left above the footer), but flies around the top right in ie9 lol - night mare.
I'll try their floating one.
See if i can get this worked out :)
Thanks for the help so far.

_________________
| CRE 6.4.1 Pro | Ubuntu 8.04 | Plesk 10.4.4 |
| Apache 2.2.8-1ubuntu0.22 | PHP 5.2.4-2ubuntu5.19 |
| MySQL 5.0.51a-3ubuntu5.8 | PCI Compliant Server |


Top
 Profile  
 
 Post subject: Re: COMODO Secure seal install
PostPosted: Mon Jan 30, 2012 3:16 am 
Offline
CRE Legend
User avatar

Joined: Thu Jun 12, 2008 6:39 am
Posts: 2405
Location: New Zealand
The second code block could go in a div in the footer, rather than an infobox (which can take up a lot of real estate) eg:

Code:
// RCI global footer
echo $cre_RCI->get('global', 'footer');
?>      <div id="comodo-stuff">
         <a href="http://www.instantssl.com/" id="comodoTL">SSL</a>
            <script language="javascript" type="text/javascript">COT("/images/secure_site.gif", "SC2", "none");</script>
      </div>
   </body>
</html>

Simon

_________________
www.codemehappy.com
For Cre Loaded tips, how-to articles and more


Top
 Profile  
 
 Post subject: Re: COMODO Secure seal install
PostPosted: Mon Jan 30, 2012 9:44 am 
Offline
CRE Freak
User avatar

Joined: Sat Aug 09, 2008 6:58 pm
Posts: 46
Thanks Simon, I will give it a go, but which footer file do I put this in?

includes/runtime/global/GA_global_footer.php

or the one in the template folder?
Thanks for your help
Kind regards

Lloyd

EDIT: Oh, do u mean in the main_page.tpl.php file.

_________________
| CRE 6.4.1 Pro | Ubuntu 8.04 | Plesk 10.4.4 |
| Apache 2.2.8-1ubuntu0.22 | PHP 5.2.4-2ubuntu5.19 |
| MySQL 5.0.51a-3ubuntu5.8 | PCI Compliant Server |


Top
 Profile  
 
 Post subject: Re: COMODO Secure seal install
PostPosted: Mon Jan 30, 2012 1:39 pm 
Offline
CRE Freak
User avatar

Joined: Sat Aug 09, 2008 6:58 pm
Posts: 46
I tried that Simon, in theory it should work ... but no, I then tried it on a html page and that didn't work.
Having it in the footer I thought their "Corner of trust" one would be better but it doesn't want to work at all.
I'll try the normal static seal tomorrow.

_________________
| CRE 6.4.1 Pro | Ubuntu 8.04 | Plesk 10.4.4 |
| Apache 2.2.8-1ubuntu0.22 | PHP 5.2.4-2ubuntu5.19 |
| MySQL 5.0.51a-3ubuntu5.8 | PCI Compliant Server |


Top
 Profile  
 
 Post subject: Re: COMODO Secure seal install
PostPosted: Tue Jan 31, 2012 1:10 am 
Offline
CRE Legend
User avatar

Joined: Thu Jun 12, 2008 6:39 am
Posts: 2405
Location: New Zealand
When you say 'it doesn't work' , can you narrow it down a bit more? Eg the logo doesn't appear anywhere, wrong place ... ? Screenshot? Checked what sort of SSL cert you've bought ? Tried adding some css positional code in with the div ? Many options.

Simon

_________________
www.codemehappy.com
For Cre Loaded tips, how-to articles and more


Top
 Profile  
 
 Post subject: Re: COMODO Secure seal install
PostPosted: Tue Jan 31, 2012 6:40 am 
Offline
CRE Freak
User avatar

Joined: Sat Aug 09, 2008 6:58 pm
Posts: 46
Yeah, sorry ... if I install both the header part and the logo part in the main_page.tpl.php it doesn't show at all. example of what I'm trying to do at the COMODO site ..

http://www.comodo.com/

I'll have another look at it shortly,

_________________
| CRE 6.4.1 Pro | Ubuntu 8.04 | Plesk 10.4.4 |
| Apache 2.2.8-1ubuntu0.22 | PHP 5.2.4-2ubuntu5.19 |
| MySQL 5.0.51a-3ubuntu5.8 | PCI Compliant Server |


Top
 Profile  
 
 Post subject: Re: COMODO Secure seal install
PostPosted: Wed Feb 01, 2012 3:57 am 
Offline
CRE Legend
User avatar

Joined: Thu Jun 12, 2008 6:39 am
Posts: 2405
Location: New Zealand
This shouldn't be difficult to add in - it all goes in the main_page.tpl.php. No need to get creative.
If the css you're adding isn't working with the div tag then you're in the wrong stylesheet. The one next door to main_page.tpl.php should work.

Unless of course you have a very modified cart or running one of those whacky algozone templates that control many things out of the template_main.php file.

Simon

_________________
www.codemehappy.com
For Cre Loaded tips, how-to articles and more


Top
 Profile  
 
 Post subject: Re: COMODO Secure seal install
PostPosted: Wed Feb 01, 2012 6:30 am 
Offline
CRE Freak
User avatar

Joined: Sat Aug 09, 2008 6:58 pm
Posts: 46
Yeah I'm using an Algozone template, cre63_ats.
Like u suggest when I put the parts of the seal in main_page.tpl.php file, when I look at the view source in IE/Chrome both parts of code are where they should be (before </head> and before </body>), it just doesn't show.

Saying that when I put the seal in a html page .. it didn't work either.
Their standard (not EV) trust logo works, I'll see what I can do with that later.

Thanks for the help Simon :)

_________________
| CRE 6.4.1 Pro | Ubuntu 8.04 | Plesk 10.4.4 |
| Apache 2.2.8-1ubuntu0.22 | PHP 5.2.4-2ubuntu5.19 |
| MySQL 5.0.51a-3ubuntu5.8 | PCI Compliant Server |


Top
 Profile  
 
 Post subject: Re: COMODO Secure seal install
PostPosted: Thu Feb 02, 2012 2:52 am 
Offline
CRE Legend
User avatar

Joined: Thu Jun 12, 2008 6:39 am
Posts: 2405
Location: New Zealand
The cre63_ats template is indeed from Algozone but it was supplied by them to cre as a stock template. I was referring to regular Algozone templates that have their own az template folders.

The only logo that would work would be the match for the SSL cert you purchased. If you're clear on what sort of logo you have purchased and you're adding in the code they suggest for that SSL cert, this'd be a quick job.

Happy to take a look for free in you PM me.

Simon

_________________
www.codemehappy.com
For Cre Loaded tips, how-to articles and more


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 12 posts ] 

Board index » CRE Loaded Support » CRE Loaded 6.4

All times are UTC - 5 hours


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
It is currently Thu May 24, 2012 4:32 pm
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group

Login

Forums Latest Activity

Top Listing

1. Cart2Cart - Shopping...
    Category: Shopping Cart Database Conversion Scripts
    
2. Points & Rewards PLUS!...
    Category: Add-Ons
    
3. Configuration Server...
    Category: Fixes
    
4. Credit Card with CCV
    Category: Payment Modules
    
5. CC7333_ATS
    Category: Templates
    
Show more...

© CRE Loaded is a product of Chain Reaction Ecommerce, Inc. Usage & Privacy Policy