cancel
Showing results for 
Search instead for 
Did you mean: 

http to https (80 to 443)

http to https (80 to 443)

Hello

My name is Ernest. We hired a provider who works with magento to create our ecommerce site. tiendagnc.axera.com We dont have access to the servers nor the nginx nor magento because the service provider offers the whole service. The problem is when we open tiendagnc.axera.com url in chrome we got "No seguro" = Site "No secure" instead of "Secure Site" We requested our service provider to redirect from 80 port to 443 port but our service provider said it is something really difficult to do, they said it is a problem with google and chrome. As I mentioned before, our company does not have access to the servers and we dont know anything about magento so we dont have any argument to support our request. somebody knows if its possible or impossible to redirect from a insecure port 80 to a secure 443 port using magento and nginx? It very important for us to have a "Secure site"

4 REPLIES 4

Re: http to https (80 to 443)

Hello Ernest,

You site is available under https too: https://tiendagnc.axera.com/ but on home page it's still say not fully secure because it's load some content over http:// (images for example). But if you will open category https://tiendagnc.axera.com/otros/barras-alimentos-y-bebidas/alimento.html it's say secure because there are no content over https. 

 

You provider should make permanent redirect from HTTP to HTTPS in nginx and fix urls in static blocks on homepage I guess.

 

Google pagespeed say 46/100 for mobile and desktop. I'll recommend you improve it to make site better ranked. 

 

Kind Regards,
Art Malkovich - Onilab

Re: http to https (80 to 443)

Hi Art Malk

 

Exactly, the site is under https too.  the problem is that a common potential client does not know what is https, they will maybe type only tiendagnc.axera.com or htttp://tiendagnc.axera.com and this in theory should be redirected to https but the service provider says it is really hard to do that because if they redirect from 80 port to 443 port magento would have a loop or a lot of navigation problems ;(    they told me that if I know how to redirect from 80 to 443 in an easy way then they would consider make the configuration change.  So I need to figure out how to redirect from 80 to 443.   Thanks a lot. 

Re: http to https (80 to 443)

There are shouldn't be any issues with https on magento. They just should setup urls in magento admin with https and make all content load over https +make force redirect in nginx to https.  While you don't have access to your server/magento I can't help you more but it's 100% possible and there are no anything hard to do it.

 

 

Kind Regards,
Art Malkovich - Onilab

Re: http to https (80 to 443)

I took a look at your home page's source code and there are quite a few contents that were using HTTP instead of HTTPS:-

 

<input id="search"
                           data-mage-init='{"quickSearch":{
                                "formSelector":"#search_mini_form",
                                "url":"http://tiendagnc.axera.com/search/ajax/suggest/",
                                "destinationSelector":"#search_autocomplete"}
                           }'
                           type="text"
                           name="q"
                           value=""
                           placeholder="Introduzca una palabra clave o SKU"
                           class="input-text"
                           maxlength="128"
                           role="combobox"
                           aria-haspopup="false"
                           aria-autocomplete="both"
                           autocomplete="off"/>
<img class="product-image-photo"
                          src="http://tiendagnc.axera.com/media/catalog/product/cache/1/small_image/240x300/beff4985b56e3afdbeabfc89641a4582/1/0/100109021_womensmax_a.jpg"
             width="240"
             height="300"
             alt="GNC Women's Max"/>
<img class="product-image-photo"
                          src="http://tiendagnc.axera.com/media/catalog/product/cache/1/small_image/240x300/beff4985b56e3afdbeabfc89641a4582/1/0/100109062_a_1.jpg"
             width="240"
             height="300"
             alt="GNC Vitamina C one Gram"/>
<img class="product-image-photo"
                          src="http://tiendagnc.axera.com/media/catalog/product/cache/1/small_image/240x300/beff4985b56e3afdbeabfc89641a4582/1/0/100109100_megamensport_a.jpg"
             width="240"
             height="300"
             alt="GNC Mega Men Sport"/>
<img class="product-image-photo"
                          src="http://tiendagnc.axera.com/media/catalog/product/cache/1/small_image/240x300/beff4985b56e3afdbeabfc89641a4582/1/0/100103079_a.jpg"
             width="240"
             height="300"
             alt="GNC Herbal Plus St. JohnS Wort  500 Mg"/>
<img class="product-image-photo"
                          src="http://tiendagnc.axera.com/media/catalog/product/cache/1/small_image/240x300/beff4985b56e3afdbeabfc89641a4582/1/0/100103002_a.jpg"
             width="240"
             height="300"
             alt="GNC Nature Brand Ginkgo Biloba plus"/>

You must change them all from HTTP to HTTPS first. 

 

Once they are changed, you can then have your provider redirect "http://tiendagnc.axera.com/" to "https://tiendagnc.axera.com/".