Zen Cart Logo
Forums / All Other Contributions/Addons / Google Base Feeder Support Thread [OLD]

Google Base Feeder Support Thread [OLD]

Locked

Views: 806,151

Results 481 to 500 of 3,556
This thread is locked. New replies are disabled.
29 Sep 2007, 7:33 AM
#481
bumba000 avatar

bumba000

Totally Zenned

Join Date:
Feb 2007
Location:
Pennsylvania
Posts:
856
Plugin Contributions:
0

Google Base Feeder Support Thread [OLD]

Okay, I was still getting the same error doing this all by hand. Heres what I came up with.
First you have to create a catalog and set it up for FTP uploading. Have to give the Exact file name being used n all.

Have to make sure that the .xml file is registered and set up with Live before uploading via Admin or FTP.

Also. I stopped having my FTP access via Admin denied when I put "ftp.productupload.live.com" up as the LSP Server.
Think its the same as what is default for the mod but somehow replacing it made the problems and bold red letters go away. . . .

. . . Now those same angry screens are using words like " Successful " !:clap:

Thanks for the help,
John

29 Sep 2007, 7:15 PM
#482
blessisaacola avatar

blessisaacola

Totally Zenned

Join Date:
Feb 2004
Location:
Georgia, USA
Posts:
1,875
Plugin Contributions:
1

Re: Google Base Feeder Support Thread [OLD]

It appears that in all the feeder generator (yahoo, msn and google), the script is trying to sanitize and clean up & to form an xhtml compliant & The conversion of & to & is actually creating a problem because the script is not smart enough to ignore situations where there is already a properly formed & instead of leaving it alone it turns and & into & amp; which not correct.

A good example of this situation is with categories where it's erroring because all our categories have been creating in Zen Cart admin properly using correct xhtml syntax for example Kids & Family is what we entered when creating that category which Zen Cart smartly formats and displays as Kids & Family on the shop side.

However, when the generator is creating the feed file, this becomes a problem because it converts the & in way that mess things up instead of just leaving that alone.

Any ideas on how to fix this short of changing everything that we already nicely formatted back to & so the script can convert it to & ?

Thanks!

29 Sep 2007, 11:09 PM
#483
motti avatar

motti

Zen Follower

Join Date:
Feb 2007
Location:
Los Angeles
Posts:
348
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

Hi

How can i tell what version i have now?

Thank you

30 Sep 2007, 4:40 AM
#484
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Google Base Feeder Support Thread [OLD]

When you run the script it will say, or simply open googlefroogle.php in the root and check the version number at the beginning of the file.

30 Sep 2007, 10:12 AM
#485
motti avatar

motti

Zen Follower

Join Date:
Feb 2007
Location:
Los Angeles
Posts:
348
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

Hi

Which of the file do I upload to google

I try the domain_products.xml and I got this error
domain_products
Processing bulk upload file
Bulk upload failure. 0 errors. None of these items are active.

I also have tiledepot.xml_products.xml and few new ones

I upgrade to 1.61 from 1.5.0 I run the sql 1.5.2 1.5.3 and googlefroogle.sql, no errors and all look ok.

Thank you

30 Sep 2007, 10:49 AM
#486
kiddykool1 avatar

kiddykool1

New Zenner

Join Date:
Sep 2007
Posts:
12
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

Help.

I have downloaded the latest version . when I create the xml file and upload to Google base uk . I get the following error when it trys to process.

I am uploading the xml from the bulk uploade page rather than through FTP

"We did not understand the header (first) row of your file. Please make sure that you are using valid attribute names - <?xml version="1.0" encoding="UTF-8" ?>:
1

I have checked the settings on the file upload so it is looking for UTF-8 rather than Latin-1.

Any help appreciated

Jimbo
http://kiddykool.com

My new zen cart site is due to go live this weekend

30 Sep 2007, 7:32 PM
#487
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Google Base Feeder Support Thread [OLD]

motti:

Hi

Which of the file do I upload to google

I try the domain_products.xml and I got this error
domain_products
Processing bulk upload file
Bulk upload failure. 0 errors. None of these items are active.

I also have tiledepot.xml_products.xml and few new ones

I upgrade to 1.61 from 1.5.0 I run the sql 1.5.2 1.5.3 and googlefroogle.sql, no errors and all look ok.

Thank you

Motti,

In the configuration rename your file to "tiledepot"
Login to Google Base and register a bulk file as tiledepot_products.xml. The feed file will append _products.xml to whatever name you choose. The other options for downloads and documents are only relevent if you have these product types on your site.

1 Oct 2007, 7:21 AM
#488
fastserv avatar

fastserv

New Zenner

Join Date:
Mar 2005
Location:
Rheine, Germany
Posts:
22
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

Hi all,

I´ve got a problem with my german store using Zen Cart 1.3.7 and Google Base Feeder 1.6.1 (update from 1.3.x). Google Base needs localized attributes, so "currency" needs to be "währung" for the german Google Base.
The new Feeder doesen´t create the correct special char "ä" and makes it
unreadeble and i get this "währung".
The special chars inside the description are complete lost and i get instead of
"Qualitätsprodukt" this "Qualittsprodukt" .

Any help appreciated

Stefan

Apologize my bad english

1 Oct 2007, 6:50 PM
#489
blessisaacola avatar

blessisaacola

Totally Zenned

Join Date:
Feb 2004
Location:
Georgia, USA
Posts:
1,875
Plugin Contributions:
1

Re: Google Base Feeder Support Thread [OLD]

If anyone figure out the solution to the problem I described in post #482 above, please post your solution. Thanks!

1 Oct 2007, 11:49 PM
#490
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Google Base Feeder Support Thread [OLD]

Isaac,

you can add the following to the santizer function:

$str = str_replace('&amp', '&', $str);

This was discussed in an earlier post for another issue, but it would be relevent here as well.

2 Oct 2007, 4:58 AM
#491
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Google Base Feeder Support Thread [OLD]

V1.6.2 GOOGLE BASE FEEDER

  1. Reverted back to zen_get_products_actual_price to support both specials and sale pricing;
  2. Added ability to select top-level, bottom-level or full-path for product_type attribute;
  3. Removed downloads and added music, downloads, free-shipping product types to _product.xml feed;
  • feed=products and feed=documents;

This addresses both issues brought forward by BlessIsaacola which were the missing products that didn't fall into any of the feed types (music, free downloads) and the & issue.

It also solves the issues of bumba000 and now allows you to select the product_type category level as well as use the sales price/specials price/regular price for each product.

Finally, this update also includes the ability to set a starting and stopping point for the feed. For example, if you set the feed to start at 50, it will start at the 50th acceptable product. What this means is, if you've set restrictions, it will start at the 50th product had there been no starting point set. So if you want one feed with 1000 products starting from the beginning, set starting point to default (0) and max-products to 1000. To create another feed with the next 1000 products, set the starting point to 1001 and leave max-products at 1000.

Other Numinix Technology News:

I've added a link to the top of the downloads section so that Zen Cart members can subscribe to updates to the downloads section. Now you'll never miss a new module or bug fix! Simply click on the large RSS icon in the category description, or use the link from the footer.

2 Oct 2007, 5:43 AM
#492
blessisaacola avatar

blessisaacola

Totally Zenned

Join Date:
Feb 2004
Location:
Georgia, USA
Posts:
1,875
Plugin Contributions:
1

Re: Google Base Feeder Support Thread [OLD]

numinix:

V1.6.2 GOOGLE BASE FEEDER

  1. Reverted back to zen_get_products_actual_price to support both specials and sale pricing;
  2. Added ability to select top-level, bottom-level or full-path for product_type attribute;
  3. Removed downloads and added music, downloads, free-shipping product types to _product.xml feed;
  • feed=products and feed=documents;

This addresses both issues brought forward by BlessIsaacola which were the missing products that didn't fall into any of the feed types (music, free downloads) and the & issue.

It also solves the issues of bumba000 and now allows you to select the product_type category level as well as use the sales price/specials price/regular price for each product.

Finally, this update also includes the ability to set a starting and stopping point for the feed. For example, if you set the feed to start at 50, it will start at the 50th acceptable product. What this means is, if you've set restrictions, it will start at the 50th product had there been no starting point set. So if you want one feed with 1000 products starting from the beginning, set starting point to default (0) and max-products to 1000. To create another feed with the next 1000 products, set the starting point to 1001 and leave max-products at 1000.

Other Numinix Technology News:

I've added a link to the top of the downloads section so that Zen Cart members can subscribe to updates to the downloads section. Now you'll never miss a new module or bug fix! Simply click on the large RSS icon in the category description, or use the link from the footer.

Numinix,
I have not tested this but I wanted to thank you for this release especially for all the fixes and the new features introduced. I guess it's time for those of us who haven't contribute to start making contribution because this takes a lot of time.

I will report back after testing this release if I run into any issues.

2 Oct 2007, 6:51 AM
#493
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Google Base Feeder Support Thread [OLD]

Isaac,

You are very welcome :smile:

3 Oct 2007, 12:21 AM
#494
tj1 avatar

tj1

Totally Zenned

Join Date:
Mar 2005
Location:
California
Posts:
628
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

I just upgraded to 1.6.2 and the file being generated is much smaller than what was generated before.

The older file had 381689 lines and was 20MB.
The file generated now has only 121776 lines and is 6.3MB. It's missing a lot of items. Is this normal, perhaps a bug?

Another question, I only started using this mod starting with version 1.6, reading some of the previous posts, I think I deduct the mod use to generate a tab delimited text file before, is this correct? If so, what was the last version to use the tab delimited text files?
I couldn't get this mod generate a valid file for one of my sites so I've done a few minor edits to easypopulate to correspond with Google Base new attribute names and it works just fine.
I kind of like tab delimited files better, smaller size and easy to manipulate using a spreadsheet program.

3 Oct 2007, 12:29 AM
#495
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Google Base Feeder Support Thread [OLD]

Anything before v1.5 (1.3 to 1.4) uses tab delimited, v1.5 uses XML, and v1.6 creates multiple files based on product_type.

I'm not sure why your products are missing, I would need more details about why that product would be left out? How is it different from the ones that were included?

3 Oct 2007, 12:57 AM
#496
tj1 avatar

tj1

Totally Zenned

Join Date:
Mar 2005
Location:
California
Posts:
628
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

I have three websites, this mod worked on two of them, but on one of them Google gave the following error.

Error Bad data Line #6
We found a mismatched XML tag. - help

This is what line 6 has for this file:```
<description>Sells fine solid gold jewelry.</description>r-jewelry.com/images/large/gld/r3248_LRG.jpg</g:image_link>


There are obviously broken tags on this line. I wasn't able to figure out why this happened. This was with v1.6.0 and 1.6.1.
I just tried v1.6.2 and I no longer have the problem reported above; however, now the file generated is missing more than half the items.

I'll wait and see if anyone else has this issue or if it could be an issue on my server.

BTW, do you have a link where I can download the last version that created tab delimited files. Old links in this thread don't seem to work. I'd like to take a look at it and see if I can integrate some of its features to EasyPopulate.
3 Oct 2007, 1:15 AM
#497
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Google Base Feeder Support Thread [OLD]

You can find older versions in the Zen Cart Downloads section of this website.

You still haven't said what is different about the missing products. Perhaps they were inactive, some custom product type, etc.

The Google Base Feeder only supports the 5 product types found in Zen Cart by default. To add additional customized product types, you would add the following line to the SQL query for your feed type:

OR p.products_type = #

Where # is the product_type id.

3 Oct 2007, 2:34 AM
#498
tj1 avatar

tj1

Totally Zenned

Join Date:
Mar 2005
Location:
California
Posts:
628
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

Thanks, I found and downloaded the older versions.

There's is nothing different about the missing products. They're all general products.

Actually, after opening the file generated I'm seeing it's missing the the closing tags as well, so this might indicate a time out, correct?

3 Oct 2007, 2:56 AM
#499
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Google Base Feeder Support Thread [OLD]

Yes, it's timing out then.

3 Oct 2007, 2:33 PM
#500
tonybenedetti avatar

tonybenedetti

Zen Follower

Join Date:
Apr 2004
Posts:
79
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

Some of our product names include a percent sign -- e.g., "100% Kona Coffee (1 Pound Bag)". That percent sign is important to our "branding" ... no blend of beans grown other than on the Kona Coast of the Big Island of Hawaii may use the "100% Kona Coffee" appellation.

But the percent sign (which shows up just fine on our Zen Cart pages) disappears from the XML file which we send to Google Base. BTW, the same "disappearing act" is true of the Windows Live Product Search file. We aren't using the Yahoo feeder, but I would guess that similar code is used there as well.

I tried to look at the code but I must admit that my eyes glazed over when I got to the "sanitizer" function.

Numinix, is there a chance that you could look at the Google / Live (and Yahoo!) code to see if the percent signs could be preserved in the output? Or, perhaps, is there a workaround that I should use in the original ZC product entries?

We really need those little percent sign devils to show up in the product search results.

TIA