Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How to install SSL on OSC: A Simple 1-2-3 Instruction


jpweber

Recommended Posts

I followed your install however I am getting address that do not find pages in the address on https pages like this

 

https://www.mysite.comlogin.php/ (no slash)

 

and my home like looks like this

 

https://www.mysite.com//login.php/ (2 slashes)

includes/config

 

(when I added slashes at the end of the define https address it worked .. but then some of my address has 2 slashes. www.mysite.com//admin/ etc

// Define the webserver and path parameters

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

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

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

define('HTTPS_SERVER', 'https://www.mysite.com'); // eg, https://localhost - should not be empty for productive servers

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

define('HTTP_COOKIE_DOMAIN', '.mysite.com');

define('HTTPS_COOKIE_DOMAIN', '.mysite.com');

Admin config

 

// Define the webserver and path parameters

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

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

define('HTTP_SERVER', 'https://www.mysite.com/'); // eg, http://localhost - should not be empty for productive servers

define('HTTP_CATALOG_SERVER', 'https://www.mysite.com/');

define('HTTPS_CATALOG_SERVER', 'https://www.mysite.com/');

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

define('DIR_FS_DOCUMENT_ROOT', '/home/essence/public_html/'); // where the pages are located on

Any help you can offer thanks :)

 

I know it is some time ago but looking at some other files, should

 

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

 

be

 

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

Need help installing add ons/contributions, cleaning a hacked site or a bespoke development, check my profile

 

Virus Threat Scanner

My Contributions

Basic install answers.

Click here for Contributions / Add Ons.

UK your site.

Site Move.

Basic design info.

 

For links mentioned in old answers that are no longer here follow this link Useful Threads.

 

If this post was useful, click the Like This button over there ======>>>>>.

Link to comment
Share on other sites

  • Replies 485
  • Created
  • Last Reply

Thanks for this tutorial, but think i'm still having a couple issues.

 

I got the SSL installed and it appears to be working. All my checkout/login pages have the lock icon in browsers and are on https urls. But in my admin panel, it still is saying i'm not protected by an SSL connection.

 

Also, if a user clicks on any html pages (including my home page) after visiting a secure page, they are getting errors saying there are both secure and non-secure items (in internet explorer). I've made all the links relative except for some stat counter code i have as well as a link to our stores myspace page. I've tried adding https in the links, but then they don't work. How can i deal with this without having to remove the code entirely? I also have other areas throughout my site where i have need to link externally (not on any pages that need to be secure). Is there a way i can make users return to http pages after leaving secure areas of my site?

 

Here is my site: http://www.punkbabyclothes.net

 

Thanks!

 

Oh, and I can post my configuration files if anyone needs to see those.

Link to comment
Share on other sites

Relevant post:

 

Click Me

 

The stat counter code (I don't know if it was the same as yours) was killing his SSL.

 

If you can pin down the code that doesn't want to display in SSL mode, you can surround it with a PHP "if" statement like this:

 

<?php
if ( $request_type == 'NONSSL' ) {
?> 

<!--
begin "non-secure" code
-->

PUT ALL THE CODE THAT YOU WANT TO DISPLAY ONLY WHEN NOT IS SECURE MODE HERE.

<!--
end "non-secure" code
-->

<?php
}
?>

With code like this, it only gets displayed when on NONSSL (http) mode, and not when in SSL (https) mode.

 

Sometimes doing something like this can play havoc on your page alignment, so if you venture down this road, you'd better make backups before you start...

:blush:

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 >

Link to comment
Share on other sites

  • 4 weeks later...

Thank you jpweber. Even a year+ later, your topic is still helping people. I set mine up easily thanks to your post.

 

This s wasn't there with mine and i had to add it.

 

define('HTTP_SERVER', 'http://www.yoursite.com');

define('HTTPS_SERVER', 'https://www.yoursite.com');

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

define('HTTP_COOKIE_DOMAIN', '.yoursite.com');

define('HTTPS_COOKIE_DOMAIN', '.yoursite.com');

Link to comment
Share on other sites

I have a little error i would like fixed.

 

After you access the shopping cart, it is automatically secure. But lets say there is a product in the shopping cart that you would like to remove. When you remove it the url goes from https://...shoppingcart to http://...shoppingcart. It is no longer secure and the user gets and error saying unsecure info can be sent.

 

even though personal info isnt being sent at that moment, i dont want that error to be seen it lowers trust.

 

So how can i edit the files so that when i update shopping cart, it keeps me using SSL?

Link to comment
Share on other sites

  • 2 weeks later...
Includes/Configure.php:

define('HTTP_SERVER', 'http://www.yoursite.com');

define('HTTPS_SERVER', 'https://secure.bluehost.com/~username');

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

define('HTTP_COOKIE_DOMAIN', '.yoursite.com');

define('HTTPS_COOKIE_DOMAIN', 'secure.bluehost.com/~username');

 

Admin/Includes/Configure.php:

define('HTTP_SERVER', 'https://www.yoursite.com');

define('HTTP_CATALOG_SERVER', 'https://www.yoursite.com');

define('HTTPS_CATALOG_SERVER', 'https://secure.bluehost.com/~username');

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

 

I don't have these last three lines in my admin.includes.config file. Mine looks like this- what would I change for a shared SSL?

 

// Define the webserver and path parameters

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

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

define('HTTP_SERVER', 'http://mywebsite.co.nz/osc'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://mywebsite.co.nz/osc'); // eg, https://localhost - should not be empty for productive servers

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

define('HTTP_COOKIE_DOMAIN', 'mywebsite.co.nz');

define('HTTPS_COOKIE_DOMAIN', 'mywebsite.co.nz');

define('HTTP_COOKIE_PATH', '/osc/');

define('HTTPS_COOKIE_PATH', '/osc/');

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

 

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');

define('DIR_FS_CATALOG', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/');

 

define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

// define our database connection

define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers

define('DB_SERVER_USERNAME', 'myname_osc1');

define('DB_SERVER_PASSWORD', 'LpPxu4p2Hc');

define('DB_DATABASE', 'myname_osc1');

define('DB_TABLE_PREFIX', 'osc1_');

define('USE_PCONNECT', 'false'); // use persistent connections?

define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql'

?>

Link to comment
Share on other sites

  • 3 weeks later...
  • 4 weeks later...
Laura ... in you /includes/languages/english.php file, you have whitespace before the first <?php or most likely after the last ?> ... eliminate this and you will fix the error.

 

I Followed all step above to setup SSL with dedicated IP. I got these warning message as below:

 

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/meoestor/public_html/includes/configure.php:1) in /home/meoestor/public_html/includes/functions/sessions.php on line 102

 

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/meoestor/public_html/includes/configure.php:1) in /home/meoestor/public_html/includes/functions/sessions.php on line 102

 

Warning: Cannot modify header information - headers already sent by (output started at /home/meoestor/public_html/includes/configure.php:1) in /home/meoestor/public_html/includes/functions/general.php on line 33

 

I did remove the whitespace on session.php but can not solve the problem. I can not login to my admin account unless I put the backup configure.php in admin/included/configure.php

 

Thank you inadvance

Link to comment
Share on other sites

Your problem is here:

 

/includes/configure.php (line 1)

 

Not in sessions.php

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 >

Link to comment
Share on other sites

  • 2 weeks later...

Hi,

I was reading your post and I tried to change the Enable SSL to true in the 2 configure files you mentioned and I was able to change the SSL to true in the admin/includes/configure one but not the other one. In the includes/configure file it wont let me write to it. I get an error at the top that says,

 

Error: I can not write to this file. Please set the right user permissions on:

 

 

what should I do?

Thanks for the help.

Link to comment
Share on other sites

Hi,

I was reading your post and I tried to change the Enable SSL to true in the 2 configure files you mentioned and I was able to change the SSL to true in the admin/includes/configure one but not the other one. In the includes/configure file it wont let me write to it. I get an error at the top that says,

 

Error: I can not write to this file. Please set the right user permissions on:

what should I do?

Thanks for the help.

Change the file permission (chmod 644) of includes/configure.php through your webhost cpanel or ftp program.

That will allow you to write to that file. After making the changes on the file, set the permission of that file back to 444.

Link to comment
Share on other sites

Change the file permission (chmod 644) of includes/configure.php through your webhost cpanel or ftp program.

That will allow you to write to that file. After making the changes on the file, set the permission of that file back to 444.

 

 

 

Thanks. I changed the permissions and made the changes and now the login and my account buttons for the customers don't work . What did i do wrong?

Link to comment
Share on other sites

Thanks. I changed the permissions and made the changes and now the login and my account buttons for the customers don't work . What did i do wrong?

 

 

Hi I fixed this problem and now the only problem I have now is that none of the payment modules are working. Can someone help with that.

Thanks.

Link to comment
Share on other sites

nowadays the most respectable and cost effective choice seems to be geotrust quick ssl premium.

 

not only it provides the all recognized quickssl, but also allows you to put up a clickable verified seal at your site. most of our client stores prefer that one. and i advise that too. gotta put that seal in some visible place to ensure customer confidence in the site.

Link to comment
Share on other sites

hello!!

 

I have the same problem somebody asked about in some post during this thread, but i havent found the solution anywhere in this thread or other forums:

 

I have installed OSC some times before, but never with SSL security. Now i have SSL installed, and i followed all the steps in the first post in the thread, but anytime OSC calls a secured page, it loads it from the https_docs folder, instead of from http_docs. The thing is, if the installation was done as explained in the first post, that folder is empty, and so it reports a 404 error.

 

I've tried to copy the whole catalog folder into that https_docs, and it seems to work ok, BUT it doesnt let me acceed to the images or backups folders (OSC just says they dont exist, but they do, and its not a problem of privileges).

 

Anyone can help me?? Ive been fighting against this OSC installation for several days now, and im running out of time. Any idea will be appreciated.

Link to comment
Share on other sites

  • 3 weeks later...
This is as simple as it gets -- how to install SSL, which is a mandate on every e-commerce site, easily and effectively on OSC:

 

(1) Inform your host. Tell your host you're going to install SSL through another company. They shouldn't charge you, but they might ... 10 bucks or whatever. They'll e-mail you a CSR (certificate signing request), which is really just a big clump of mumble-jumbled coding.

 

(2) Find an SSL Company. A popular one seems to be the RapidSSL by Geotrust, 'cause it's cheap, but there are plenty. Many people use Geotrust, Verisign, Networksolutions, GoDaddy, and others. A Simple Google Search can give you plenty of other options. Make sure it has at least 128-bit data encryption, and is compatible with all browsers. Make sure it has a trusted root. Make sure it puts a padlock in your browser. These are all questions you'll ask the SSL company.

 

(3) Purchase the SSL. E-mail the SSL company your CSR that your host gave to you. Be sure that both your host and the SSL company are on the same page -- assign your SSL to either http://www.yoursite.com, or http://yoursite.com -- but make sure the host and the SSL company are on the same page, and both do the same thing.

 

(4) Go back to your host. You'll receive an SSL Certificate Key from the SSL company once purchased. This will be more mumble-jumbled coding in your e-mail. E-mail the SSL Certificate Key back to your host. They'll install it for you.

 

(5) Alter your config files. All you need to do now is to alter your configure.php files. They're located in (path to catalog)/includes/configure.php, and (path to catalog)/admin/includes/configure.php. OSC is designed to protect the pages that require data encryption, and altering your config files will do this for you. These pages include login, create_account, checkout, etc,. and any other pages that require data-input by the end-user.

 

(6) In includes/configure.php, set the SSL to "true"; it should look something like this near the top, if you assigned the SSL to www.yoursite.com:

define('HTTP_SERVER', 'http://www.yoursite.com');

define('HTTPS_SERVER', 'https://www.yoursite.com');

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

define('HTTP_COOKIE_DOMAIN', '.yoursite.com');

define('HTTPS_COOKIE_DOMAIN', '.yoursite.com');

 

(7) In admin/includes/configure.php, set the SSL to "true" and add an "s" after all the http's. So it'll look something like this, if assigned to www.yoursite.com:

define('HTTP_SERVER', 'https://www.yoursite.com/');

define('HTTP_CATALOG_SERVER', 'https://www.yoursite.com/');

define('HTTPS_CATALOG_SERVER', 'https://www.yoursite.com/');

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

 

(8) Save and upload your configure.php files to their appropriate directories, perhaps using your FTP tool, or other upload tool of choice, and your SSL should be running smoothly and efficiently.

 

I have purchased a certificate myself - but I dont not know what to do next - I am hosting Oscommerce on inhouse server..any suggestion to how to install

Link to comment
Share on other sites

  • 2 weeks later...
Special note to shared SSL users, in particular bluehost users. Now I don't really recommend Shared SSL, although it's worked for many. I'd prefer the real thing. Anyway, with bluehost, your config files would look like this (note: "username" refers to the username given to you by Bluehost):

 

Includes/Configure.php:

define('HTTP_SERVER', 'http://www.yoursite.com');

define('HTTPS_SERVER', 'https://secure.bluehost.com/~username');

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

define('HTTP_COOKIE_DOMAIN', '.yoursite.com');

define('HTTPS_COOKIE_DOMAIN', 'secure.bluehost.com/~username');

 

Admin/Includes/Configure.php:

define('HTTP_SERVER', 'https://www.yoursite.com');

define('HTTP_CATALOG_SERVER', 'https://www.yoursite.com');

define('HTTPS_CATALOG_SERVER', 'https://secure.bluehost.com/~username');

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

 

As is any case with Shared SSL, you'll have to contact your host for the proper configure files, but a simple google search will help, seeing as that many users using the same Shared SSL have already installed OSC beforehand, and have posted about it. So search the web, or call your host -- but if you're going through Bluehost, you already know now. Good luck!

 

Hi Jason

 

I would please like to highlight the problem I am having. Having setup SSL on my webhosts shared SSL platform, whenever I try to create an account or go to checkout the cookie usage page keeps appearing and I can not bypass this. I am using IE 6.0 and have enabled cookie use.

 

I followed your instructions and added the appropriate settings and username provided by my webhost. But it hasn't solved anything. My webhost has advised the SSL settings are https://www1.securesiteserver.co.uk/reconnectingu/ or https://www1.securesiteserver.co.uk/reconnectingu

 

I would greatly appreciate your advice on my settings below:-

 

includes/configure.php

 

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

 

admin/includes/configure.php

 

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
 define('HTTP_SERVER', 'https://www.reconnectingu.co.uk'); // eg, http://localhost - should not be empty for productive servers
 define('HTTP_CATALOG_SERVER', 'https://www.reconnectingu.co.uk');
 define('HTTPS_CATALOG_SERVER', 'https://securesiteserver.co.uk/reconnectingu');
 define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module
 define('DIR_FS_DOCUMENT_ROOT', '/domains/r/e/reconnectingu.co.uk/public_html/'); // where the pages are located on the server
 define('DIR_WS_ADMIN', '/myadmin313/'); // absolute path required
 define('DIR_FS_ADMIN', '/domains/r/e/reconnectingu.co.uk/public_html/myadmin313/'); // absolute pate required
 define('DIR_WS_CATALOG', '/'); // absolute path required
 define('DIR_FS_CATALOG', '/domains/r/e/reconnectingu.co.uk/public_html/'); // 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/');

 

Thank you,

Jeff

Link to comment
Share on other sites

Hi,

 

Sorry I need some help with my SSL. Somehow my account, login, checkout pages aren't directing to https. Ive followed your instructions and the admin page is working fine with https.

 

I have a dedicated ip address and the SSL was installed on www.d3bakery.com

 

Here is the code in my .htaccess files:

catalog/.htaccess

 

# $Id: .htaccess 1739 2007-12-20 00:52:16Z hpdl $
#
# This is used with Apache WebServers
#
# For this to work, you must include the parameter 'Options' to
# the AllowOverride configuration
#
# Example:
#
# <Directory "/usr/local/apache/htdocs">
#   AllowOverride Options
# </Directory>
#
# 'All' with also work. (This configuration is in the
# apache/conf/httpd.conf file)

# The following makes adjustments to the SSL protocol for Internet
# Explorer browsers

<IfModule mod_setenvif.c>
 <IfDefine SSL>
SetEnvIf User-Agent ".*MSIE.*" \
		 nokeepalive ssl-unclean-shutdown \
		 downgrade-1.0 force-response-1.0
 </IfDefine>
</IfModule>

# If Search Engine Friendly URLs do not work, try enabling the
# following Apache configuration parameter

# AcceptPathInfo On

# Fix certain PHP values
# (commented out by default to prevent errors occuring on certain
# servers)

# php_value session.use_trans_sid 0
php_value register_globals 1

RewriteEngine on
RewriteCond %{HTTP_HOST} ^d3bakery.com$
RewriteRule ^(.*)$ http://www.d3bakery.com/$1 [R=301,L]

 

catalog/admin/.htaccess

# $Id: .htaccess 1739 2007-12-20 00:52:16Z hpdl $
#
# This is used with Apache WebServers
#
# For this to work, you must include the parameter 'Options' to
# the AllowOverride configuration
#
# Example:
#
# <Directory "/usr/local/apache/htdocs">
#   AllowOverride Options
# </Directory>
#
# 'All' with also work. (This configuration is in the
# apache/conf/httpd.conf file)

# The following makes adjustments to the SSL protocol for Internet
# Explorer browsers

<IfModule mod_setenvif.c>
 <IfDefine SSL>
SetEnvIf User-Agent ".*MSIE.*" \
		 nokeepalive ssl-unclean-shutdown \
		 downgrade-1.0 force-response-1.0
 </IfDefine>
</IfModule>

# If Search Engine Friendly URLs do not work, try enabling the
# following Apache configuration parameter

# AcceptPathInfo On

# Fix certain PHP values
# (commented out by default to prevent errors occuring on certain
# servers)

# php_value session.use_trans_sid 0
php_value register_globals 1

 

Here are my config files

catalog/includes/configure.php

  define('HTTP_SERVER', 'http://www.d3bakery.com');
 define('HTTPS_SERVER', 'https://www.d3bakery.com');
 define('ENABLE_SSL', true);
 define('HTTP_COOKIE_DOMAIN', '.d3bakery.com');
 define('HTTPS_COOKIE_DOMAIN', '.d3bakery.com');
 define('HTTP_COOKIE_PATH', '/');
 define('HTTPS_COOKIE_PATH', '/');
 define('DIR_WS_HTTP_CATALOG', '/');
 define('DIR_WS_HTTPS_CATALOG', '/');

 

catalog/admin/includes/configure.php

   define('HTTP_SERVER', 'https://www.d3bakery.com');
 define('HTTP_CATALOG_SERVER', 'https://www.d3bakery.com');
 define('HTTPS_CATALOG_SERVER', 'https://www.d3bakery.com');
 define('ENABLE_SSL_CATALOG', true);

 

If anyone could get back to me soon it would be much appreciated.

 

Thanks alot

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...