Although I use 1and1 I'm no great fan of theirs, and no computer genius, however I have just changed our web site hosted by them 1and1 to run using SSL without any real issues.
In Sellerdeck 2016 all I did was change the SSL/TLS setting to use 'Whole Site', on the Payment & Security page. On the Advanced Network Page made sure the store URL starts with https and also on the Company/Contact page made sure the Web Site Address starts with https.
I added the following lines to my .htaccess file:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.yourcompanyname\.com$ [NC]
RewriteRule ^(.*)$ https://www.yourcompanyname.com/$1 [R=301,L]
I then saved this my .htaccess file and then in Sellerdeck 2016 refreshed my website. The only issue I had was the the URL for the Logo, and Home link in the top bar using the HomePageURL variable didn't update to https. I simply removed the variable and pasted in the https path to my website and updated.
Everything appears to be working fine, and orders have come through OK since the update.
Kind regards
MAC.
In Sellerdeck 2016 all I did was change the SSL/TLS setting to use 'Whole Site', on the Payment & Security page. On the Advanced Network Page made sure the store URL starts with https and also on the Company/Contact page made sure the Web Site Address starts with https.
I added the following lines to my .htaccess file:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.yourcompanyname\.com$ [NC]
RewriteRule ^(.*)$ https://www.yourcompanyname.com/$1 [R=301,L]
I then saved this my .htaccess file and then in Sellerdeck 2016 refreshed my website. The only issue I had was the the URL for the Logo, and Home link in the top bar using the HomePageURL variable didn't update to https. I simply removed the variable and pasted in the https path to my website and updated.
Everything appears to be working fine, and orders have come through OK since the update.
Kind regards
MAC.
Comment