This site is moving over to www.joomlagooglebase.com, please sign up there from now on.
Many thanks
 
logo

New World Designs

Froogle Virtuemart RSS Feed

New World Designs
image
Froogle Feed Home

Virtuemart Froogle Forum
Welcome, Guest
Please Login or Register.    Lost Password?
Re:SSL site no longer fully SSL after installing : (1 viewing) (1) Guest
Go to bottom Post Reply Favoured: 0
TOPIC: Re:SSL site no longer fully SSL after installing :
#197
RCheesley (User)
Fresh Boarder
Posts: 8
graphgraph
User Offline Click here to see the profile of this user
SSL site no longer fully SSL after installing :(
Posted 6 Months, 4 Weeks ago
Karma: 0  
Hi folks,

Just a quicky but a fairly urgent one.

I've just installed the mambot and set up according to the tutorials, first lot has uploaded (woohoo!). Just noticed a problem though! The site is SSL (the entire site, not just the shop) and since putting the mambot on, the site is no longer fully SSL but is coming up with the dreaded "there is some unsecure content" message.

Any ideas how to fix this? I've set the URL in google to be the https: url.

Need to fix this ASAP to ensure we don't lose any customers (makes me laugh that people think having an ssl cert means a "safe" and "secure" site .. hehe)

Cheers

Ruth
 
Report to moderator   Logged Logged  
  You must be logged in to post here.
#198
da8iwr (Admin)
Admin
Posts: 152
graph
User Online Now Click here to see the profile of this user
Re:SSL site no longer fully SSL after installing :(
Posted 6 Months, 4 Weeks ago
Karma: 5  
Have you got the domain name please, so i can see the problem
 
Report to moderator   Logged Logged  
 
Please visit some of my other sites............................. http://www.NewWorldDesigns.co.uk (My company)........... http://www.BulletTimePhotography.com (My new project)...... http://www.QuickTimeVirtualReality.com (My personal photography site) http://www.VirtuemartFroogleFeed.com
  You must be logged in to post here.
#200
RCheesley (User)
Fresh Boarder
Posts: 8
graphgraph
User Offline Click here to see the profile of this user
Re:SSL site no longer fully SSL after installing :(
Posted 6 Months, 4 Weeks ago
Karma: 0  
Sure thing, the domain is www.meditate-in-minutes.co.uk

Not sure if it's relevant but the all_products one failed saying no items were live, but the latest products uploaded successfully??

Ruth
 
Report to moderator   Logged Logged  
  You must be logged in to post here.
#201
RCheesley (User)
Fresh Boarder
Posts: 8
graphgraph
User Offline Click here to see the profile of this user
Re:SSL site no longer fully SSL after installing :(
Posted 6 Months, 4 Weeks ago
Karma: 0  
Hmm, actually, they didn't upload entirely successfully:

Errors:
Error Bad data Line #
We did not understand some of the XML formatting in your file. You may be missing a tag or have a nesting or formatting error. - help

114
We did not understand some of the XML formatting in your file. You may be missing a tag or have a nesting or formatting error. - help

198
We did not understand some of the XML formatting in your file. You may be missing a tag or have a nesting or formatting error. - help

282
 
Report to moderator   Logged Logged  
  You must be logged in to post here.
#202
da8iwr (Admin)
Admin
Posts: 152
graph
User Online Now Click here to see the profile of this user
Re:SSL site no longer fully SSL after installing :(
Posted 6 Months, 4 Weeks ago
Karma: 5  
Hmm im not sure about the errors

Line 114 = <g:mpn>XMAS</g:mpn>
Line 198 = <g:id>15</g:id>
Line 282 = <grice>3.50</grice>

They all look perfect from here. Can you drop an email to Google and ask what the problem is, as i cant see anything at all http://base.google.co.uk/support/bin/request.py?contact_type=error&hl=en_GB

Also i think your error on the SSL part is based around the Google Analytics, but im not 100% sure.

<script language="JavaScript" type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
<script type="text/javascript">
_uacct = "UA-4119985-1";
urchinTracker();
</script>


The best way to check is just unpublish the mambot, and then try and see if the SSl is working ok, if it is, then its my Mambot, but if there is still an issue then its not my mambot.

I have added this Mambot to many sites with SSL including www.spot-ontv.co.uk and never had any problems at all from it.

but i have had to comment out the google analytics to make it work without the SSL popup, im just about to have some food, and ill see if i can find a fix for it when i get back, as i need to know the answer as well.

Regards
Ian
 
Report to moderator   Logged Logged  
 
Please visit some of my other sites............................. http://www.NewWorldDesigns.co.uk (My company)........... http://www.BulletTimePhotography.com (My new project)...... http://www.QuickTimeVirtualReality.com (My personal photography site) http://www.VirtuemartFroogleFeed.com
  You must be logged in to post here.
#203
da8iwr (Admin)
Admin
Posts: 152
graph
User Online Now Click here to see the profile of this user
Re:SSL site no longer fully SSL after installing :(
Posted 6 Months, 4 Weeks ago
Karma: 5  
I have found that google have a special tag that you add if you use SSL certs on your site.

<script src="https://ssl.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "XX-XXXXXXXX-X";
urchinTracker();
</script>


Replace your code of your Google Analytics in your template, with of course your account number in the XXXX's.
and it will fix that issue.

Be carefull though, as the SSL site will be spidered as a seperate site, to the non SSL part of your site, so your content will then be classed as duplicate content and you will be thrown off Google. So make all of your site SSL, or non of it to be SSL but definetly make it one or the other.

An easy to way to always redirect the user to secure connection (https://) can be accomplished with a .htaccess file containing the following lines:

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]


Please, note that the .htaccess should be located in the web site main folder.

In case you wish to force HTTPS for a particular folder you can use:

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} somefolder
RewriteRule ^(.*)$ https://www.domain.com/somefolder/$1 [R,L]


The .htaccess file should be placed in the folder where you need to force HTTPS.

Regards
Ian
 
Report to moderator   Logged Logged  
 
Please visit some of my other sites............................. http://www.NewWorldDesigns.co.uk (My company)........... http://www.BulletTimePhotography.com (My new project)...... http://www.QuickTimeVirtualReality.com (My personal photography site) http://www.VirtuemartFroogleFeed.com
  You must be logged in to post here.
Go to top Post Reply
Powered by FireBoardget the latest posts directly to your desktop
sub menu


Froogle Feed Home
Froogle Feed FAQs
Froogle Feed Information
Froogle Feed Forum
Froogle Feed Comparisons
Froogle Feed Intro Video
Froogle Feed Live Sites
Languages
Contact Us
T&Cs
Version V4 Feeds
Version V2 & V3 Feeds








Lost Password?

Produced by
New World Designs

© New World Designs, Sunderland, Tyne and Wear, North East, England 1998 - 2007

Site Map
Part of the Joomla Google Base Project