Using a shared SSL certificate and page layout??

  • Posts: 3
  • Thank you received: 0
13 years 6 months ago #16084

I am looking at a host who has a shared SSL certificate for its users. Is there a way to specify that when customers are checking out, and are entering credit card info, that it uses the SSL certificate?

How would this be done?

Also, when I look at my page of innerelement.cloudaccess.net/shop/catego...d-10/name-books.html how can I get a space between grey sections on both the vertical and horiz. layout?

Please Log in or Create an account to join the conversation.

  • Posts: 82867
  • Thank you received: 13374
  • MODERATOR
13 years 6 months ago #16097

You first need to configure your SSL certificate on your server (there is some more information on other threads about shared certificates www.hikashop.com/en/support/forum/4-how-...ssl-certificate.html ). Once you can access your website with https, you can just turn on the "Force SSL on checkout" option in the tab checkout of the configuration.

Regarding the grey boxes, you need to edit your modules in the menu Display->Content modules (even the unpublished ones) and set a margin in the options of each of your modules.

Please Log in or Create an account to join the conversation.

  • Posts: 3
  • Thank you received: 0
13 years 6 months ago #16099

I saw the posting about editing the files:


Display->Views and edit the file step of the view checkout for your template and add the code below after the first <?php in order to automatically redirect to your https URL:
Code:

if(strtolower($_SERVER) != "on"){
$app =& JFactory::getApplication();
$requestUri = $_SERVER;
if (!empty($_SERVER)) $requestUri = rtrim($requestUri,'/').'?'.$_SERVER;
$app->redirect('https://my_shared_ssl_url'.$requestUri);
}

Where is the template name that is being used defined in the settings? Since there are 2 different templates? And which file regarding the checkout needs to be modified???

Thanks

Please Log in or Create an account to join the conversation.

  • Posts: 82867
  • Thank you received: 13374
  • MODERATOR
13 years 6 months ago #16101

It's the file called "step" as written in my message.
For the template, it's of course the template you're using on your website. If you have the templates beez and milkyway and that you use the template beez, then you need to edit the views for the beez template.

Please Log in or Create an account to join the conversation.

Time to create page: 0.056 seconds
Powered by Kunena Forum