Page 1 of 1

Help me Installing the SSL certificate for my store

Posted: Mon May 02, 2011 6:35 pm
by kiran_kumar
Hi

I am having problem with installing ssl for my store. I purchased the ssl and host installed for my domain. I changed the setting use ssl in admin area. Also configured the https in config file in public_html/admin/config.php.

ssl works fine when go to https://yourdomain.com/admin ( it shows the green mark next to url as secured )

Same when i got to https://yourdomain.com/index.php ( it doesn't show green mark but all the images are loading fine ) Even the checkout area and user login area is not showing the encrypted, instead showing unsecure connection.

can anyone help me please.

thank you

Re: Help me Installing the SSL certificate for my store

Posted: Mon May 02, 2011 8:59 pm
by SXGuy
have you edited the config.php stored in your root directory ? (public_html/)

i see you said you edited the one in admin, but there is also another for the front end located at the root directory.

Re: Help me Installing the SSL certificate for my store

Posted: Mon May 02, 2011 9:48 pm
by Moggin
@kiran_kumar, another suggestion - try viewing your site in Firefox. Click the space in the address bar where the green bar/padlock should be > More information > Media tab. This will show if any images are unsecured. If that's not the problem, look in your source code to see if any scripts are coming from an external unsecured source - eg, http://ajax.googleapis.com/ajax/libs/jq ... ery.min.js

This is the best I can do without a link to your store - hope it helps.

Re: Help me Installing the SSL certificate for my store

Posted: Mon May 02, 2011 10:25 pm
by kiran_kumar
@Moggin

yes, two scripts are coming from http://

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jq ... "></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jq ... "></script>

and one image from http://.

can you tell me the solution

thank you

Re: Help me Installing the SSL certificate for my store

Posted: Mon May 02, 2011 11:18 pm
by Moggin
You can fix the google jquery scripts by removing the http: - for example-

Code: Select all

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
The non-secure image should be referenced with a relative URL if possible, eg

Code: Select all

<img src="images/mypic.png">
- hope this helps

Re: Help me Installing the SSL certificate for my store

Posted: Mon May 02, 2011 11:30 pm
by kiran_kumar
@ Moggin

Cheers, that worked. Thank you for the help.

Re: Help me Installing the SSL certificate for my store

Posted: Tue May 03, 2011 2:44 am
by Moggin
you're welcome, glad it worked : )