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

Google Base Feeder Support Thread [OLD]

Locked

Views: 806,308

Results 621 to 640 of 3,556
This thread is locked. New replies are disabled.
14 Nov 2007, 2:32 AM
#621
itguru avatar

itguru

New Zenner

Join Date:
Aug 2006
Posts:
32
Plugin Contributions:
0

Google Base Feeder Support Thread [OLD]

hey numinix.
what about my problem.

please help

14 Nov 2007, 3:46 AM
#622
steveo3279 avatar

steveo3279

New Zenner

Join Date:
Nov 2007
Posts:
28
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

Having an interesting problem...

I'm hosted with GoDaddy and I don't think that I can upload via ftp from godaddy. So I created the file product_depot.xml, downloaded to my local machine and then manually uploaded via google. Everything appeared to be working properly, but I get this error from google base:------------

Outcome: Bulk upload failed. No items are live. There are too many formatting errors in your file. - help
Number of items processed: 0
Number of items succeeded: 0
Number of active items: 0
Uploaded at: Nov 13, 2007 5:27pm PST
Processed at: Nov 13, 2007 5:34pm PST

Errors:
Error Bad data Line #
We didn't understand the header (first) row of your file. Please make sure you're using valid attribute names. - help

We didn't understand the header (first) row of your file. Please make sure you're using valid attribute names. - help

<?xml version="1.0" encoding="UTF-8" ?>:

Any ideas?

Thanks,
Steve

14 Nov 2007, 5:44 AM
#623
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]

itguru:

installed the Google Base Feeder 1.5.3 into Zen Cart 1.3.7.1 with SEO URLs and Easy Populate as addons. First copied all the files and directories, set dir feed to 777, then did all the sql updates update_1_4_3.sql, update_1_4_9.sql, update_1_5_0.sql, update_1_5_2.sql, update_1_5_3.sql and then did the googlefroogle.sql all via copy and paste. went into Google Base Feeder config set the user / pass, store URL. Then went to execute the Google Base Feeder in the TOOLS menu and all I get is this: TEXT_GOOGLE_FROOGLE_STARTED
TEXT_GOOGLE_FROOGLE_FILE_LOCATION/home/bidet/public_html/store/feed/gotbidet.xml
Processing: Feed - No, Upload - No

please help:lookaroun

You are missing files.

steveo3279, is your feed file complete? i.e. </rss>

14 Nov 2007, 6:43 AM
#624
steveo3279 avatar

steveo3279

New Zenner

Join Date:
Nov 2007
Posts:
28
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

Got 'er fixed...I miss named the file google was looki ng for...I didn't put the .xml extension on it.

Uploads just fine now!

Thx

14 Nov 2007, 1:51 PM
#625
taf avatar

taf

New Zenner

Join Date:
Jun 2007
Posts:
58
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

Hi,

Just thought I'd trying adding a payment notes attribute here's my attempt at doing this. I haven't tested this(apart from looking to see if the xml looks correct) and if you don't know what you're doing i wouldn't try adding it.:smile:

SQL patch:

SET @configuration_group_id=0;
SELECT @configuration_group_id:=configuration_group_id
FROM configuration_group
WHERE configuration_group_title= 'Google Base Feeder Configuration'
LIMIT 1;

INSERT INTO configuration 
(configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added, use_function, set_function) 
VALUES 
(NULL, 'Show Payment Notes', 'GOOGLE_BASE_PAYMENT_NOTES_DISPLAY', 'false', 'Add payments Notes to XML feed', @configuration_group_id, 35, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
(NULL, 'Payment Notes', 'GOOGLE_BASE_PAYMENT_NOTES', 'We accept Google Checkout etc..', 'Add the text you want in your payment notes attribute', @configuration_group_id, 36, NOW(), NULL, 'zen_cfg_textarea(');
```PHP code added to googlefroogle.php

```php
if(GOOGLE_BASE_WEIGHT == 'true' && $products->fields['products_weight'] != '') {
     $content["weight"] = '<g:weight>' . $products->fields['products_weight'] . ' ' . GOOGLE_BASE_UNITS . '</g:weight>';
}

/*added by taf*/
if (GOOGLE_BASE_PAYMENT_NOTES_DISPLAY == 'true') {
     $content["payment_notes"] = '<g:payment_notes>' . GOOGLE_BASE_PAYMENT_NOTES . '</g:payment_notes>';    
}
14 Nov 2007, 10:58 PM
#626
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]

```php

'zen_cfg_textarea('

 
that looks like an error, what are the parameters 
 
should be zen_cfg_textarea( some_parameters )
14 Nov 2007, 11:17 PM
#627
taf avatar

taf

New Zenner

Join Date:
Jun 2007
Posts:
58
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

Yes, that does look a bit strange but i copied it from another parameter i saw in the database.(I think it was the store address) I've tried this on a local copy of zen cart and it seemed to work, but maybe the error (if it is one) is just not showing up?

15 Nov 2007, 2:41 PM
#628
mydanilo avatar

mydanilo

Totally Zenned

Join Date:
Dec 2004
Posts:
1,024
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

OK, I just stumbled across this thread and noticed that Numinix put a lot of work into updating this mod. Great, thank.

I am still using Froogle Data Feeder v.1.3.3 and did not have any problems with it on Zen 1.3.7.

Should I upgrade anyway? What would be the steps to take from this old version?
Do I have to do SQL update?
Will I have to enter Google account settings again?

Thanks for some input...

15 Nov 2007, 2:50 PM
#629
a_berezin avatar

a_berezin

Deceased

Join Date:
Aug 2004
Location:
Saint Petersburg, Russia
Posts:
1,782
Plugin Contributions:
5

Re: Google Base Feeder Support Thread [OLD]

numinix:

```php

'zen_cfg_textarea('

>  
> that looks like an error, what are the parameters 
>  
> should be zen_cfg_textarea( some_parameters )
you are wrong.
15 Nov 2007, 9:45 PM
#630
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]

a_berezin:

you are wrong.

and? we've already established that it is fine as it was...

19 Nov 2007, 4:05 PM
#631
scootaman avatar

scootaman

New Zenner

Join Date:
Nov 2007
Posts:
74
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

Hello,

I need a little help with this module. I keep getting a connection failed message.

I confirmed that my google ftp account is active

I double checked that my user name and password are correct and in the right fields.

I use Hostmonsters for my host and I checked with them and they said they allowed php ftp. However, the person chatted with wasn't real familiar with php ftp.

I did set the feeder folder chomd to 777

What am I missing? Do I need a dedicated port or IP. What else could be causing a connection error?

Thanks

19 Nov 2007, 7:03 PM
#632
scootaman avatar

scootaman

New Zenner

Join Date:
Nov 2007
Posts:
74
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

I checked with my Host and they said I would need to pay for a dedicated IP in order to have connections out. Looks like the only options I have is to pay the extra monthly cost for the dedicated IP or to manually upload the file.

Are there any other choices?

20 Nov 2007, 1:27 AM
#633
lankeeyankee avatar

lankeeyankee

Totally Zenned

Join Date:
Jan 2007
Posts:
1,514
Plugin Contributions:
1

Re: Google Base Feeder Support Thread [OLD]

ScootaMan:

I checked with my Host and they said I would need to pay for a dedicated IP in order to have connections out. Looks like the only options I have is to pay the extra monthly cost for the dedicated IP or to manually upload the file.

Are there any other choices?

Unless it's pretty cheap to add a dedicated IP you might want to just download the file to your computer and then upload it to Google using their FTP and save yourself a few $. It doesn't take long to upload it from your computer, I have a really really slow dialup and it still doesn't take too long. I'd only get a dedicated IP if you need to get a dedicated SSL certificate or if you need it for a merchant account.

Matt

20 Nov 2007, 1:35 AM
#634
scootaman avatar

scootaman

New Zenner

Join Date:
Nov 2007
Posts:
74
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

lankeeyankee:

Unless it's pretty cheap to add a dedicated IP you might want to just download the file to your computer and then upload it to Google using their FTP and save yourself a few $. It doesn't take long to upload it from your computer, I have a really really slow dialup and it still doesn't take too long. I'd only get a dedicated IP if you need to get a dedicated SSL certificate or if you need it for a merchant account.

Matt

Thanks, I will just manually upload for now and wait on a dedicated IP. This module still has value even if I can't auto upload. It's great to have the feed created so easy :smile:

21 Nov 2007, 9:44 PM
#635
sirbuck avatar

sirbuck

Zen Follower

Join Date:
Jan 2007
Location:
Carlsbad, CA
Posts:
161
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

I have looked around in this thread but can't seem to find a similar problem.

Admin->Configuration.. doesn't display Google Froogle Config...

I didn't get any errors when installing the Sql patch or anything. I'm sure its just something I have overlooked.

Any takers?

thanks,

22 Nov 2007, 2:03 AM
#636
sirryche avatar

sirryche

New Zenner

Join Date:
Feb 2007
Posts:
48
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

using newest google feeder program and it creates the xml files. when i upload to google thru google it always fails now. keeps telling me i dosn't understand the header (first ) row file. only been having this problem ufter upgading to current version. any suggestions?

22 Nov 2007, 10:03 AM
#637
andyman23 avatar

andyman23

New Zenner

Join Date:
Sep 2006
Location:
North Carolina
Posts:
2
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

SirBuck-
Do you have the Admin Settings with permissions module installed by chance? That could hiding it.

22 Nov 2007, 11:42 AM
#638
taf avatar

taf

New Zenner

Join Date:
Jun 2007
Posts:
58
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

SirBuck:

I have looked around in this thread but can't seem to find a similar problem.

Admin->Configuration.. doesn't display Google Froogle Config...

I didn't get any errors when installing the Sql patch or anything. I'm sure its just something I have overlooked.

Any takers?

thanks,

if you've got phpmyadmin you can check in your database to see if the sql patch is applied.

go to configuration_group table and do a search: should see something like:

33 Google Base Feeder Configuration Set Google Base Options 33

at the bottom of the search results.

24 Nov 2007, 1:48 AM
#639
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

Join Date:
Apr 2005
Posts:
853
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

The feed produced a with my regular xml file but with product_xml attached to it would I chose product feed. Basically I am getting cooltech.xml_products.xml why am I getting this?

24 Nov 2007, 5:26 AM
#640
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]

ctcentralinfo:

The feed produced a with my regular xml file but with product_xml attached to it would I chose product feed. Basically I am getting cooltech.xml_products.xml why am I getting this?

You need to first register a new feed with Google if you're using the XML feed for the first time. On the admin site enter something like cooltech for your feed name and the script will create a file cooltech_product.xml and you will register cooltech_product.xml as you need feed with Google Base. You can substitute for cooltech whatever you want but it will help to not add the .xml to the name since Google Base will append _product.xml to whatever name you put there.