<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: How To : Google Base XML Feed Auto-Submission</title>
	<link>http://www.slickricky.com/designers_central/how-to-google-base-xml-feed-auto-submission/</link>
	<description>Professional and Affordable Web Site Graphic Design and Programming for Web, Print, and Advertising on the Internet.</description>
	<pubDate>Sat, 19 Jul 2008 23:46:36 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: Richard Kersey</title>
		<link>http://www.slickricky.com/designers_central/how-to-google-base-xml-feed-auto-submission/#comment-1453</link>
		<dc:creator>Richard Kersey</dc:creator>
		<pubDate>Sat, 26 Jan 2008 17:01:45 +0000</pubDate>
		<guid>http://www.slickricky.com/designers_central/how-to-google-base-xml-feed-auto-submission/#comment-1453</guid>
		<description>Thanks Kevin.  Did you try that and it worked?</description>
		<content:encoded><![CDATA[<p>Thanks Kevin.  Did you try that and it worked?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kevin</title>
		<link>http://www.slickricky.com/designers_central/how-to-google-base-xml-feed-auto-submission/#comment-1452</link>
		<dc:creator>kevin</dc:creator>
		<pubDate>Sat, 26 Jan 2008 16:38:31 +0000</pubDate>
		<guid>http://www.slickricky.com/designers_central/how-to-google-base-xml-feed-auto-submission/#comment-1452</guid>
		<description>$host = ‘http://ftp.uploads.google.com’;

shouldn't it just be 

$host = ‘uploads.google.com’;</description>
		<content:encoded><![CDATA[<p>$host = ‘http://ftp.uploads.google.com’;</p>
<p>shouldn&#8217;t it just be </p>
<p>$host = ‘uploads.google.com’;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Kersey</title>
		<link>http://www.slickricky.com/designers_central/how-to-google-base-xml-feed-auto-submission/#comment-1275</link>
		<dc:creator>Richard Kersey</dc:creator>
		<pubDate>Sat, 05 Jan 2008 01:10:53 +0000</pubDate>
		<guid>http://www.slickricky.com/designers_central/how-to-google-base-xml-feed-auto-submission/#comment-1275</guid>
		<description>This is a connection problem, and the connection is returning false.  The script should be updated to include some type of... 

IF (Connect = true) 

...statement, but it will be some time before I can update it. If you update and fix it, please let me know and I'll post the edited code.</description>
		<content:encoded><![CDATA[<p>This is a connection problem, and the connection is returning false.  The script should be updated to include some type of&#8230; </p>
<p>IF (Connect = true) </p>
<p>&#8230;statement, but it will be some time before I can update it. If you update and fix it, please let me know and I&#8217;ll post the edited code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Wright</title>
		<link>http://www.slickricky.com/designers_central/how-to-google-base-xml-feed-auto-submission/#comment-1274</link>
		<dc:creator>Ian Wright</dc:creator>
		<pubDate>Sat, 05 Jan 2008 00:59:45 +0000</pubDate>
		<guid>http://www.slickricky.com/designers_central/how-to-google-base-xml-feed-auto-submission/#comment-1274</guid>
		<description>I'm not sure you can help me here, as I'm grasping at straws to be honest.

function uploadThroughFTP() {
		global $mosConfig_absolute_path;
		$host     = 'http://ftp.uploads.google.com';
		$username = $this-&#62;params['username'];
		$password = $this-&#62;params['password'];
		$ftpstream = ftp_connect( $host );
		$login = ftp_login( $ftpstream, $username, $password );
		if ( $login ) {
			foreach ( $this-&#62;_upload as $type ) {
				$dir = $mosConfig_absolute_path . '/mambots/system/froogle/';
			$file_name = "{$type}_products.xml";
				ftp_put( $ftpstream, $file_name, $dir . $file_name, FTP_ASCII );
			}
		}
		ftp_close( $ftpstream );
	}

I know you cant see the rest of the code, making it more difficult, but can you see any reason why it keeps throwing the error

Warning: ftp_login() expects parameter 1 to be resource, boolean given in /home/xxxxxx/public_html/store/mambots/system/froogle.php on line 0

It works perfect on 12 other sites, and this one just doesn't want to know.

Many thanks
Ian</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure you can help me here, as I&#8217;m grasping at straws to be honest.</p>
<p>function uploadThroughFTP() {<br />
		global $mosConfig_absolute_path;<br />
		$host     = &#8216;http://ftp.uploads.google.com&#8217;;<br />
		$username = $this-&gt;params[&#8217;username&#8217;];<br />
		$password = $this-&gt;params[&#8217;password&#8217;];<br />
		$ftpstream = ftp_connect( $host );<br />
		$login = ftp_login( $ftpstream, $username, $password );<br />
		if ( $login ) {<br />
			foreach ( $this-&gt;_upload as $type ) {<br />
				$dir = $mosConfig_absolute_path . &#8216;/mambots/system/froogle/&#8217;;<br />
			$file_name = &#8220;{$type}_products.xml&#8221;;<br />
				ftp_put( $ftpstream, $file_name, $dir . $file_name, FTP_ASCII );<br />
			}<br />
		}<br />
		ftp_close( $ftpstream );<br />
	}</p>
<p>I know you cant see the rest of the code, making it more difficult, but can you see any reason why it keeps throwing the error</p>
<p>Warning: ftp_login() expects parameter 1 to be resource, boolean given in /home/xxxxxx/public_html/store/mambots/system/froogle.php on line 0</p>
<p>It works perfect on 12 other sites, and this one just doesn&#8217;t want to know.</p>
<p>Many thanks<br />
Ian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Kersey</title>
		<link>http://www.slickricky.com/designers_central/how-to-google-base-xml-feed-auto-submission/#comment-1171</link>
		<dc:creator>Richard Kersey</dc:creator>
		<pubDate>Sat, 22 Dec 2007 13:38:18 +0000</pubDate>
		<guid>http://www.slickricky.com/designers_central/how-to-google-base-xml-feed-auto-submission/#comment-1171</guid>
		<description>From what I've found, I'm thinking that Google will allow one connection per username, and maybe you didn't disconnect the one on your local machine before trying one on your Bluehost server.  Or possibly your Bluehost server has a timeout setup that won't work.  Try it a few times spaced apart by 10 - 60 minutes, and see if that helps.</description>
		<content:encoded><![CDATA[<p>From what I&#8217;ve found, I&#8217;m thinking that Google will allow one connection per username, and maybe you didn&#8217;t disconnect the one on your local machine before trying one on your Bluehost server.  Or possibly your Bluehost server has a timeout setup that won&#8217;t work.  Try it a few times spaced apart by 10 - 60 minutes, and see if that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tajinder Singh</title>
		<link>http://www.slickricky.com/designers_central/how-to-google-base-xml-feed-auto-submission/#comment-1170</link>
		<dc:creator>Tajinder Singh</dc:creator>
		<pubDate>Sat, 22 Dec 2007 05:16:00 +0000</pubDate>
		<guid>http://www.slickricky.com/designers_central/how-to-google-base-xml-feed-auto-submission/#comment-1170</guid>
		<description>Hi!

Thanks for the code.

I have implemented it as it is after changing required parameters. It is working on my local system successfully, failed to connect from online website hosted on BlueHost servers.

Got the error message as below:

Warning: ftp_login() expects parameter 1 to be resource, boolean given in /home/recybert/public_html/contogoogle.php on line 14

Warning: ftp_pasv() expects parameter 1 to be resource, boolean given in /home/recybert/public_html/contogoogle.php on line 17
FTP connection has failed!Attempted to connect to uploads.google.com for user recybertools

Please help me!

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>Thanks for the code.</p>
<p>I have implemented it as it is after changing required parameters. It is working on my local system successfully, failed to connect from online website hosted on BlueHost servers.</p>
<p>Got the error message as below:</p>
<p>Warning: ftp_login() expects parameter 1 to be resource, boolean given in /home/recybert/public_html/contogoogle.php on line 14</p>
<p>Warning: ftp_pasv() expects parameter 1 to be resource, boolean given in /home/recybert/public_html/contogoogle.php on line 17<br />
FTP connection has failed!Attempted to connect to uploads.google.com for user recybertools</p>
<p>Please help me!</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
