that got distorted in the quote box, should read:
Warning: array_pop() [function.array-pop]: The argument should be an array in /home2/shabecom/public_html/craft-patterns-online.com/googlefroogle.php on line 158
that got distorted in the quote box, should read:
Warning: array_pop() [function.array-pop]: The argument should be an array in /home2/shabecom/public_html/craft-patterns-online.com/googlefroogle.php on line 158
still getting the error, please someone help, i cant see an error on the code,
Google Base Feeder v.1.6.7 05.12.2007 12:53:59 started 2008/03/03 04:20:22
Feed file - /home2/fire/public_html/feed/google_products.xml
Processing: Feed - No, Upload - Yes
Upload started...
First attempt (passive mode off): Upload Failed
Warning: ftp_put() [function.ftp-put]: Entering Passive Mode (72,14,200,3,50,75) in /home2/fire/public_html/googlefroogle.php on line 547
Second attempt (passive mode on): Upload Failed
Upload failed...
My FTP account isn't active yet, but when I try to upload the file manually, I get "We didn't understand the header (first) row of your file. Please make sure you're using valid attribute names."
Any ideas?
kitcorsa -
We had similar and found that altering the code, so passive mode was attemtped before port mode, allowed it to connect ok. It is the same with LPS feeder. I think it's just a firewall issue with the host.
Claire
how do i change this???
i have contacted my hosts regarding this but no change yet.
i have 2 site as seen in my siggy and both on the same host and have there own seporate server. one site works one dont!! its really anoying having to manually upload.
I've installed the .10 version. Still the same trouble with a manually uploaded file, however I am awaiting the results on the FTPed version.
Suddenly, it's not excluding my Gift Certificates category. The previous version was.
I posted on it before, have a look here..
http://www.zen-cart.com/forum/showth...aar#post445905
It is pretty much the same code in lps.php for the live product feeder ftp secion.
Hope it helps you!
Claire
that worked Claire thank you very much.
update!
to turn passive mode on and off in the current version of google base on on lines 540 - 545 find the code:
and replace with the followingCode:while ($attempt < 3 && !$success) { // two attempts, one with pasv off, one with on if ($attempt == 0) { ftp_pasv($cd, false); // on first attempt, turn pasv off } else { ftp_pasv($cd, true); // on second attempt, turn pasv on }
Code:while ($attempt < 3 && !$success) { // two attempts, one with pasv off, one with on if ($attempt == 0) { ftp_pasv($cd, true); // on first attempt, turn pasv on } else { ftp_pasv($cd, false); // on second attempt, turn pasv off }
Bookmarks