Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

1&1 / shared SSL or dedicated SSL


Ragga

Recommended Posts

If anyone has 1&1 as there host did they set up the Shared SSL or the Dedicated SSL ? ... i tried to set up the shared one initially but when i clicked on the shopping basket to check out it sent me to a dead link ...

 

 

I rang 1&1 and asked about setting up a dedicated SSL but was told i need to change from my subdomain to a domain ... after talking to the operator i was still none the wiser ...

 

Has anyone experienced anything similar ?

Link to comment
Share on other sites

Oh I see, you're using frame forwarding, that kinda sucks.

 

anyway, you'll have to take the www off in front of

 

www.s106956496.websitehome.co.uk/catalog

 

That's wrong.

 

Post the configure.php file without the database details.

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

Why don't you just point www.plumbingukshop.co.uk to that directory?

 

Why use frame forwarding, I don't get it.

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

Catalog / includes.config:

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://www.s106956496.websitehome.co.uk'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://www.s106956496.websitehome.co.uk'); // eg, https://localhost - should not be empty for productive servers

define('ENABLE_SSL', true); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', 'www.s106956496.websitehome.co.uk');

define('HTTPS_COOKIE_DOMAIN', 'www.s106956496.websitehome.co.uk');

define('HTTP_COOKIE_PATH', '/catalog/i');

define('HTTPS_COOKIE_PATH', '/catalog/i');

define('DIR_WS_HTTP_CATALOG', '/catalog/');

define('DIR_WS_HTTPS_CATALOG', '/catalog/');

define('DIR_WS_IMAGES', 'images/');

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

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/');

 

Catalog / Admin / Includes.config:

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://www.s106956496.websitehome.co.uk'); // eg, http://localhost - should not be empty for productive servers

define('HTTP_CATALOG_SERVER', 'http://www.s106956496.websitehome.co.uk');

define('HTTPS_CATALOG_SERVER', 'https://www.s106956496.websitehome.co.uk');

define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module

define('DIR_FS_DOCUMENT_ROOT', '/kunden/homepages/34/d106956477/htdocs/catalog/'); // where the pages are located on the server

define('DIR_WS_ADMIN', '/catalog/admin/'); // absolute path required

define('DIR_FS_ADMIN', '/kunden/homepages/34/d106956477/htdocs/catalog/admin/'); // absolute pate required

define('DIR_WS_CATALOG', '/catalog/'); // absolute path required

define('DIR_FS_CATALOG', '/kunden/homepages/34/d106956477/htdocs/catalog/'); // absolute path required

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/');

Link to comment
Share on other sites

Go into the control panel, select domains, and set that domain to point to catalog.

 

It will take a little while for that change to take, maybe a couple hours, sometimes only a few minutes.

 

Then the config files need to be changed like so:

 

Let's worry about catalog only for now, admin later.

 

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
define('HTTP_SERVER', 'http://www.plumbingukshop.co.uk'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://ssl.dontknow.net/plumbingukshop.co.uk');
define('ENABLE_SSL', true); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'www.plumbingukshop.co.uk');
define('HTTPS_COOKIE_DOMAIN', 'ssl.dontknow.net/plumbingukshop.co.uk');
define('HTTP_COOKIE_PATH', '/);
define('HTTPS_COOKIE_PATH', '/');
define('DIR_WS_HTTP_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
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/');

 

I forget the address of the ssl proxy for UK servers but it will be in the control panel somewhere or we can find it in these forums. That's why I set the dontknow stuff. You will have to set that in the control panel. Somewhere in there they let you set the shared ssl to point to one domain.

 

Poke around and you will find it.

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

So where you typed 'ssl.dontknow.net .... that i have to change to something like 'https://sslrelay.com/s106956496.websitehome.co.uk/plumingukshop.co.uk ? ...

 

this info was found in Shared SSL Encryption Setup ..

Link to comment
Share on other sites

I went to the 'Control Panel' and then to domains - destination and changed it from ....../.......... to ........./catalog.........

 

Also i changed the Catalog/includes.config (copy and pasted)

 

the shop has gone a bit strange (i have a backup)

 

plumbingukshop

Link to comment
Share on other sites

I went to the 'Control Panel' and then to domains - destination and changed it from ....../.......... to ........./catalog.........

 

Also i changed the Catalog/includes.config (copy and pasted)

 

the shop has gone a bit strange (i have a backup)

 

plumbingukshop

 

The change hasn't taken effect yet. It's still frame fowarding, wait a while.

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

So where you typed 'ssl.dontknow.net .... that i have to change to something like 'https://sslrelay.com/s106956496.websitehome.co.uk/plumingukshop.co.uk ? ...

 

this info was found in Shared SSL Encryption Setup ..

Yep.

 

define('HTTPS_SERVER', 'https://sslrelay.com/plumbingukshop.co.uk);

define('ENABLE_SSL', true); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', 'www.plumbingukshop.co.uk');

define('HTTPS_COOKIE_DOMAIN', 'sslrelay.com/plumbingukshop.co.uk');

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

New config file:

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://www.plumbingukshop.co.uk'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://sslrelay.com/s106956496.websitehome.co.uk/plumingukshop.co.uk);

define('ENABLE_SSL', true); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', 'www.plumbingukshop.co.uk');

define('HTTPS_COOKIE_DOMAIN', 'sslrelay.com/s106956496.websitehome.co.uk/plumingukshop.co.uk');

define('HTTP_COOKIE_PATH', '/);

define('HTTPS_COOKIE_PATH', '/');

define('DIR_WS_HTTP_CATALOG', '/');

define('DIR_WS_HTTPS_CATALOG', '/');

define('DIR_WS_IMAGES', 'images/');

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

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/');

Link to comment
Share on other sites

Im popping out with my wife for dinner.. hopefully when im back the frames have taken effect ... i really appreciate your time and effort Alan ...

 

Mibble we have changed the domain direction and are waiting for it to take effect on the site .... it could take upto 3hrs :'(

 

wife is screaming will be back soon :blush:

Link to comment
Share on other sites

Go back into the control panel and make sure the destination is set as a home directory and not a forward.

 

Like so:

 

destination.gif

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

In 1&1 Control Panel in the 'Instant Domains Registration' the 'Plumbingukshop.co.uk' is set to 'Forwarded' with no option of unforwarding ...

 

Alan would it make it easier if i PM you access to to my 1&1 host ?

Link to comment
Share on other sites

In 1&1 Control Panel in the 'Instant Domains Registration' the 'Plumbingukshop.co.uk' is set to 'Forwarded' with no option of unforwarding ...

 

Alan would it make it easier if i PM you access to to my 1&1 host ?

 

If you want.

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

I don't have any names registered through 1&1, I use someone else that I've used for years.

 

But in the FAQ they show also fowarding under DNS settings. I don't have the options they show because they don't control the domain names I use.

 

So there's two different places you can select forwarding. Check under DNS.

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...