Page 1 of 1
Problem with Google Base Feed
Posted: Wed Aug 18, 2010 1:44 am
by damian
I have a problem with google base feed, I have 130 products but google base picks up only 10, I have installed improved google base feed from Jay but that didn't help. When I open feed link in IE this is the message I get:
Code: Select all
This feed contains code errors.
Go back to the previous page.
More information
Reference to undefined entity 'Acirc'.
Line: 321 Character: 116
<description><ul><li>Speed:10 <li>Control:7 <li>Plies:3+2 <li>Thickness:7.4±0.2mm <li>Weight:86±3g <li>Type:OFF+ <p> <b>Butterfly Schlager Carbon substitute</b> <p> The Blade is of 3-ply wood and 42-ply Carbon Fibre materials! This is a VERY FAST (OFF+) all-out attack style blade. The 2 layers of high grade carbon fibre provide a HUGE sweetspot.
and this is what I see in source code for the product description for this particular product:
Code: Select all
<ul>
<li>
Speed:10</li>
<li>
Control:7</li>
<li>
Plies:3+2</li>
<li>
Thickness:7.4±0.2mm</li>
<li>
Weight:86±3g</li>
<li>
Type:OFF+
<p>
<b>Butterfly Schlager Carbon substitute</b></p>
<p>
The Blade is of 3-ply wood and 42-ply Carbon Fibre materials! This is a VERY FAST (OFF+) all-out attack style blade. The 2 layers of high grade carbon fibre provide a HUGE sweetspot.</p>
</li>
</ul>
<p>
Galaxy T-1 Table Tennis Carbon Blade</p>
There is no reference to any "Acirc"...
Re: Problem with Google Base Feed
Posted: Wed Aug 18, 2010 9:37 am
by JAY6390
Well it's definitely a real character
http://www.w3.org/MarkUp/html3/latin1.html
not sure why you are getting the character in the first place though

Re: Problem with Google Base Feed
Posted: Wed Aug 18, 2010 9:02 pm
by damian
Any idea on how to get it fixed? I need to get my products into google base really badly?
ANY suggestions would be really welcomed...
Re: Problem with Google Base Feed
Posted: Wed Aug 18, 2010 9:09 pm
by JAY6390
Open
/catalog/controller/feed/google_base_improved.php
find this
htmlentities($value)
around line 131 and change it to
str_replace('Â','',htmlentities($value))
Not sure if it's going to work, but it might
Re: Problem with Google Base Feed
Posted: Thu Aug 19, 2010 12:36 am
by damian
OK I've done what you've suggested, now waiting for 6pm to check if it helped.. I guess there is no way to get the feed into google faster than setting upload schedule to next full hour?
Just wondering, if changing any settings in feed options would help? I have file format, encoding, delimeter all set to auto detect and "Use Quoted Fields" to "no"
Re: Problem with Google Base Feed
Posted: Thu Aug 19, 2010 2:38 am
by JAY6390
You could save the feed and upload it directly, that would do it, but I'm guessing 6pm has now passed so it should have given you the result by now
Re: Problem with Google Base Feed
Posted: Thu Aug 19, 2010 5:34 am
by damian
Hi,
Acirc problem disappeared after I've done what you've suggested! Thanks.
Re: Problem with Google Base Feed
Posted: Thu Aug 19, 2010 6:08 am
by JAY6390
Great

Re: Problem with Google Base Feed
Posted: Sat Oct 23, 2010 3:16 pm
by PoXiE
I have a question with this Acirc fix, I use
in my description which google does not like this how would i go about replacing it in the feed to a "-"
Code: Select all
str_replace('Â','',htmlentities($value))
Would it just be?
Code: Select all
str_replace('•','-',htmlentities($value))
You can view the Google Base Feed here:
http://bafumba.com/index.php?route=feed/google_base
And the Google Base Improved Feed here:
http://bafumba.com/index.php?route=feed ... e_improved
Re: Problem with Google Base Feed
Posted: Sat Oct 23, 2010 6:00 pm
by JAY6390
That sounds like it's probably the best way yeah. I am going to release a newer version which should get rid of all the Acirc problems for good in the next couple of days. If you've got the google base feed off my site you will be notified when it's released
Re: Problem with Google Base Feed
Posted: Tue Mar 01, 2011 10:35 pm
by ultraspoon
im getting this error with Jays version
error on line 7652 at column 52: Entity 'pound' not defined
Before i downloaded Jays version i had the Aciric error but it fixed that.
Re: Problem with Google Base Feed
Posted: Tue Mar 01, 2011 10:39 pm
by JAY6390
That means you have a £ symbol in one of your titles. you'll need to remove it
Re: Problem with Google Base Feed
Posted: Tue Mar 01, 2011 10:44 pm
by ultraspoon
what do you mean in one of my titles?
Thanks Jay
Re: Problem with Google Base Feed
Posted: Tue Mar 01, 2011 10:47 pm
by JAY6390
One of your products will have a £ sign in the title. If you open your feed with an editor that has line numbers you should be able to quickly find that line and the bad product title. Then edit the title, save and try the feed again
Re: Problem with Google Base Feed
Posted: Tue Mar 01, 2011 11:02 pm
by ultraspoon
Copied my feed into notepadd++ did a search for '£' nothing was found, did a search for '£' found two products, deleted the pound sign from the description tabs, but im still getting the error.
Strange.
Can i not add the £ sign to the google feed code so it will recognize it?
Thanks Jay
Re: Problem with Google Base Feed
Posted: Tue Mar 01, 2011 11:08 pm
by JAY6390
No, it's not allowed in the titles. I did actually think you were going to look in the feed for the £ which would show visually, but yes they will be £ in the feed html
Please paste your link to your feed here or PM if you'd rather
Re: Problem with Google Base Feed
Posted: Sun Mar 13, 2011 8:54 pm
by anitawos
Have you gotten this to work?