PDA

View Full Version : E-commerce and secure server


rok0808
4-2-07, 08:05 PM
Greetings from Washington State USA,

First of all I would like to thank the forum for providing vaulable insights in getting my e-commerce site up and running...A lot of times my questions were already ask and answered, the store is almost ready.

I do have one concern.. which I haven't been to find the answer to. I did try searching for the answer but couldn't find anything. Perhaps I am using the incorrect search terms.

I have uploaded on my website Zencart, and have it functionaI. I can point the initial link to a secure server for my site https://myuserid.powweb.com. but the rest of the store goes to my the regular site including the payment sections http://mydomain.com.

Is it possible to have the store part of the website go to the secure server? and if so how do I this?

Thanks in advance for your help,

Rev Nic Cramer

YvetteKuhns
4-2-07, 08:30 PM
How do I configure my secure server (SSL) links? (http://www.powweb.com/knowledgebase/read_article.bml?kbid=2403)

rok0808
4-2-07, 10:23 PM
Thanks for your reply but I have seen that link and that link really didn't answer my question. What I want to know is how can I make zencart in all aspects of the store goto that secure server. Like I said I can make the web page go there intially but if when they change pages it goes to the non-secure url

Deskdirect
4-3-07, 01:08 PM
There are defines in both config. files that need to be set. I have Zen Cart running on three different stores and SSL is enable in the store from login to checkout.

The defines in the admin config. -
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');

The defines in the catalog config. -
//Use secure webserver for checkout procedure?"
define('ENABLE_SSL', 'true');

rok0808
4-4-07, 02:37 PM
There are defines in both config. files that need to be set. I have Zen Cart running on three different stores and SSL is enable in the store from login to checkout.

The defines in the admin config. -
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');

The defines in the catalog config. -
//Use secure webserver for checkout procedure?"
define('ENABLE_SSL', 'true');


Thanks for your help...I will give that a try....