Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Secure Sever


Guest

Recommended Posts

Posted

My host has given me a shared SSL. E.g my domain is www.mydomain.co.uk and my host has given me https://vault.something.com/mydomain

 

I have entered this URL into the configure files. Each time I try to go to a secure page I get an error message - The directory name is invalid.

 

Is it better and/or simpler to purchase my own cert so that I am using https://www.mydomain.co.uk ???? If not what am I doing wrong?

 

 

Regards & thanks

OdleyArt

Posted
My host has given me a shared SSL. E.g my domain is www.mydomain.co.uk and my host has given me https://vault.something.com/mydomain

 

I have entered this URL into the configure files. Each time I try to go to a secure page I get an error message - The directory name is invalid.

 

Is it better and/or simpler to purchase my own cert so that I am using https://www.mydomain.co.uk ???? If not what am I doing wrong?

Regards & thanks

OdleyArt

 

Your own is better but you should be able to get osC working on a shared certificate.

 

Post your configure.php file ( minus your database info)

The Knowledge Base is a wonderful thing.

Do you have a problem? Have you checked out Common Problems?

There are many very useful osC Contributions

Are you having trouble with a installed contribution? Have you checked out the support thread found Here

BACKUP BACKUP BACKUP!!! You did backup, right??

Posted
Your own is better but you should be able to get osC working on a shared certificate.

 

Post your configure.php file ( minus your database info)

 

// define our webserver variables

// FS = Filesystem (physical)

// WS = Webserver (virtual)

define('HTTP_SERVER', 'http://gocoffee.co.uk'); // eg, http://localhost or - https://localhost should not be NULL for productive servers

define('HTTP_CATALOG_SERVER', 'http://gocoffee.co.uk/catalog');

define('HTTPS_CATALOG_SERVER', 'https://vault2.secured-url.com/gocoffee');

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

define('DIR_FS_DOCUMENT_ROOT', 'http://gocoffee.co.uk/catalog'); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs)

define('DIR_WS_ADMIN', '/donna/');

define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN);

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

define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG);

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

Archived

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

×
×
  • Create New...