Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Thawte site seal in footer HELP


ecustomwheels

Recommended Posts

Posted

I got my thawte site seal and certificate installed. I have it in the footer. You can see my web page here Visit My Website.

but if you go to another page besides the index.php page the thawte site seal says it is invalid. Is there something I need to do so that It wil show valid on all pages.

Thanks for any help.

Doug

Posted

You have the exact same script code on all the pages:

 

   <script src="https://siteseal.thawte.com/cgi/server/thawte_seal_generator.exe"></script>

Contact customer support at Thawte.

 

I'm sure they can tell you what to do.

 

And check out my post entitled "Google-analytics and SSL" in the "Tips and Tricks" forum.

 

You'll need to do something with your script.

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

Check out this page:

 

Click Me

 

Especially the part under Step 2 starting with:

 

If you wish to display the Site Seal throughout the entire web site, ...

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

basically what is happening is you need to specify the web address you are going to use, when you registered your Site seal you did it under www.yoursite.com when it comes up invalid your site is just yoursite.com

 

You can specify this in your config file as well as, or contact thrawte and ask them to include both urls of your website.

Powered By osC 2.2RC2a STS 4.5.8 - HTC 2.6.3 - FP 1.5.9 - BCH 1.0.0

Posted

I just had a chat with thawte tech support. They said that the certificate is for www.ecustomwheels.com not for ecustomwheels.com. How do i change so that if someone types in ecustomwheels.com it automatically redirects to the www.

 

I clicked on some of my products and most of them have the ecustomwheels.com/product etc. How would I change this?

Posted

Change your configure.php files.

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

sorry i dont know what to change them too. so ive included them if you could tell me what to change.

 

Here is the from the catalog folder

<?php
 define('HTTP_SERVER', 'http://ecustomwheels.com');
 define('HTTP_CATALOG_SERVER', 'http://ecustomwheels.com');
 define('HTTPS_CATALOG_SERVER', 'http://ecustomwheels.com');
 define('ENABLE_SSL_CATALOG', 'false');
 define('DIR_FS_DOCUMENT_ROOT', '/hsphere/local/home/p47qtx77/ecustomwheels.com/');
 define('DIR_WS_ADMIN', '/admin/');
 define('DIR_FS_ADMIN', '/hsphere/local/home/p47qtx77/ecustomwheels.com/admin/');
 define('DIR_WS_CATALOG', '/');
 define('DIR_FS_CATALOG', '/hsphere/local/home/p47qtx77/ecustomwheels.com/');
 define('DIR_WS_IMAGES', 'images/');
 define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
 define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');
 define('DIR_WS_INCLUDES', 'includes/');
 define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
 define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
 define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
 define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
 define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
 define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/');
 define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
 define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
 define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
 define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');

 define('DB_SERVER', 'localhost');
 define('DB_SERVER_USERNAME', 'xxxxx');
 define('DB_SERVER_PASSWORD', 'xxxxx');
 define('DB_DATABASE', 'xxxxxx');
 define('USE_PCONNECT', 'false');
 define('STORE_SESSIONS', 'mysql');
?>

 

and this one is from admin side, but i think my admin side is ok.

 

<?php
 define('HTTP_SERVER', 'https://www.ecustomwheels.com');
 define('HTTP_CATALOG_SERVER', 'https://www.ecustomwheels.com');
 define('HTTPS_CATALOG_SERVER', 'https://www.ecustomwheels.com');
 define('ENABLE_SSL_CATALOG', 'true');
 define('DIR_FS_DOCUMENT_ROOT', '/hsphere/local/home/p47qtx77/ecustomwheels.com/');
 define('DIR_WS_ADMIN', '/admin/');
 define('DIR_FS_ADMIN', '/hsphere/local/home/p47qtx77/ecustomwheels.com/admin/');
 define('DIR_WS_CATALOG', '/');
 define('DIR_FS_CATALOG', '/hsphere/local/home/p47qtx77/ecustomwheels.com/');
 define('DIR_WS_IMAGES', 'images/');
 define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
 define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');
 define('DIR_WS_INCLUDES', 'includes/');
 define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
 define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
 define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
 define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
 define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
 define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/');
 define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
 define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
 define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
 define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');

 define('DB_SERVER', 'xxxx');
 define('DB_SERVER_USERNAME', 'xxx');
 define('DB_SERVER_PASSWORD', 'xx');
 define('DB_DATABASE', 'xxx');
 define('USE_PCONNECT', 'false');
 define('STORE_SESSIONS', 'mysql');
?>

 

thanks for you help

Posted

This in the catalog:

 

  define('HTTP_SERVER', 'http://ecustomwheels.com');
 define('HTTP_CATALOG_SERVER', 'http://ecustomwheels.com');
 define('HTTPS_CATALOG_SERVER', 'http://ecustomwheels.com');

Should be:

 

  define('HTTP_SERVER', 'http://www.ecustomwheels.com');
 define('HTTP_CATALOG_SERVER', 'http://www.ecustomwheels.com');
 define('HTTPS_CATALOG_SERVER', 'http://www.ecustomwheels.com');

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

if i go to my main web page and go to one of the wheel products posted there its still saying the same. ecustomwheels.com/etcccccc. Let me double check this one more time. Thanks for your help

Posted

You're absolutely correct.

 

I guess the CUSTOM TEMPLATE you have totally ignores that part of the configure file.

 

Contact the template maker.

 

Good luck.

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

Part of your problem is this:

 

<base href="http://ecustomwheels.com/">

Can you post the code form your index.php that calculates the base href value?

:unsure:

 

Other links in your code to html pages look "hard coded" to me.

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

This code looks correct:

 

<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">

And you changed the definition of HTTP_SERVER in your /includes/configure.php to include the www as I suggested, correct?

:unsure:

 

One thing to check, look to see if this file exists on your site:

 

/includes/local/configure.php

 

If it does, check it to be sure everything in it looks OK.

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

there is no configure.php in the local folder. i double check the configure.php in the catalog folder and it is correct like you suggested. Could it do something with the seo g install.

Posted

Probably since the configure files, and PHP code say otherwise.

 

But I wouldn't know how to fix that.

 

This:

 

<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">

Should appear on your page with the WWW in th URL.

 

Yet it says:

 

<base href="http://ecustomwheels.com/">

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

Well, the SEO works using the .htaccess file.

 

You could post the part of it that alters the URL.

 

We might see something...

:unsure:

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

In the root (main) folder of your site.

 

At least that's the one that does the rewrites for the SEO.

 

There are other .htaccess files on your site in other folders that do other things.

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

What are you using to try to find it?

:unsure:

 

In the UNIX environment it's a hidden file.

 

If you're using your site CPanel, you may have to "toggle something" to get it to show hidden files. I know I did.

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

I've never used it, so I can't help there.

 

How did you get SEO installed without being able to find/alter the .htaccess file?

:unsure:

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...