<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Using Phing to sync files with shared hosting</title>
	<atom:link href="http://dev.juokaz.com/php/using-phing-to-synchronize-files/feed" rel="self" type="application/rss+xml" />
	<link>http://dev.juokaz.com/php/using-phing-to-synchronize-files</link>
	<description>Random ideas, scripts and facts</description>
	<lastBuildDate>Mon, 08 Mar 2010 06:02:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Starting with Zend_Search_Lucene &#124; Juozas devBlog</title>
		<link>http://dev.juokaz.com/php/using-phing-to-synchronize-files/comment-page-1#comment-285</link>
		<dc:creator>Starting with Zend_Search_Lucene &#124; Juozas devBlog</dc:creator>
		<pubDate>Wed, 11 Mar 2009 14:19:40 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=284#comment-285</guid>
		<description>[...] Lucene, etc, but not surprisingly, you can&#8217;t always have Sphinx installed (shared servers again) and other solutions should be [...]</description>
		<content:encoded><![CDATA[<p>[...] Lucene, etc, but not surprisingly, you can&#8217;t always have Sphinx installed (shared servers again) and other solutions should be [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Winterbottom (CodeInTheHole)</title>
		<link>http://dev.juokaz.com/php/using-phing-to-synchronize-files/comment-page-1#comment-174</link>
		<dc:creator>David Winterbottom (CodeInTheHole)</dc:creator>
		<pubDate>Tue, 03 Mar 2009 11:57:52 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=284#comment-174</guid>
		<description>I share your pain on the upload time when using FTP.  As you indicate though, it&#039;s not easy to find a better solution and the brute force method works fine for me - I just have a cup of tea while waiting for the transfer to complete.

I needed that solution of a freelance project where changing the hosting is not an option.  However, for all my other projects, I use &lt;a href=&quot;http://nearlyfreespeech.net&quot; rel=&quot;nofollow&quot;&gt;NearlyFreeSpeech.net&lt;/a&gt; which is pay-per-use hosting and offers SSH access so you can use rsync (again through phing) for deployment.</description>
		<content:encoded><![CDATA[<p>I share your pain on the upload time when using FTP.  As you indicate though, it&#8217;s not easy to find a better solution and the brute force method works fine for me &#8211; I just have a cup of tea while waiting for the transfer to complete.</p>
<p>I needed that solution of a freelance project where changing the hosting is not an option.  However, for all my other projects, I use <a href="http://nearlyfreespeech.net" rel="nofollow">NearlyFreeSpeech.net</a> which is pay-per-use hosting and offers SSH access so you can use rsync (again through phing) for deployment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giorgio Sironi</title>
		<link>http://dev.juokaz.com/php/using-phing-to-synchronize-files/comment-page-1#comment-173</link>
		<dc:creator>Giorgio Sironi</dc:creator>
		<pubDate>Tue, 03 Mar 2009 10:14:44 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=284#comment-173</guid>
		<description>I think a great solution is using svn checkout directly on the server. However, you&#039;ll need a shell access to do this...</description>
		<content:encoded><![CDATA[<p>I think a great solution is using svn checkout directly on the server. However, you&#8217;ll need a shell access to do this&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Cousineau</title>
		<link>http://dev.juokaz.com/php/using-phing-to-synchronize-files/comment-page-1#comment-167</link>
		<dc:creator>Daniel Cousineau</dc:creator>
		<pubDate>Mon, 02 Mar 2009 21:21:49 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=284#comment-167</guid>
		<description>You know, you could probably keep to the current implementation or have multiple build targets (one being &quot;upload changes&quot; the other being &quot;upload everything&quot;) and for any scripting you have to do upload a PHP script and have phing ping it with a one time key then delete it... *shrug*.

Still doesn&#039;t help the problem of syncing :P

(Or maybe use the above idea but zip/gzip up the changeset, upload the zip, upload an installer/extractor PHP script dynamically generated with a one-time key, trigger the script, the script deletes the zip/gzip when finished, and Phing deletes the installer script... that might help bandwidth... but is certainly more work)</description>
		<content:encoded><![CDATA[<p>You know, you could probably keep to the current implementation or have multiple build targets (one being &#8220;upload changes&#8221; the other being &#8220;upload everything&#8221;) and for any scripting you have to do upload a PHP script and have phing ping it with a one time key then delete it&#8230; *shrug*.</p>
<p>Still doesn&#8217;t help the problem of syncing :P</p>
<p>(Or maybe use the above idea but zip/gzip up the changeset, upload the zip, upload an installer/extractor PHP script dynamically generated with a one-time key, trigger the script, the script deletes the zip/gzip when finished, and Phing deletes the installer script&#8230; that might help bandwidth&#8230; but is certainly more work)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juozas</title>
		<link>http://dev.juokaz.com/php/using-phing-to-synchronize-files/comment-page-1#comment-165</link>
		<dc:creator>Juozas</dc:creator>
		<pubDate>Mon, 02 Mar 2009 20:57:32 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=284#comment-165</guid>
		<description>I would love to use rsync, but currently I&#039;m limited to FTP-only server and our management plans now don&#039;t include movement to normal dedicated server :)</description>
		<content:encoded><![CDATA[<p>I would love to use rsync, but currently I&#8217;m limited to FTP-only server and our management plans now don&#8217;t include movement to normal dedicated server :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Cousineau</title>
		<link>http://dev.juokaz.com/php/using-phing-to-synchronize-files/comment-page-1#comment-163</link>
		<dc:creator>Daniel Cousineau</dc:creator>
		<pubDate>Mon, 02 Mar 2009 20:29:54 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=284#comment-163</guid>
		<description>I had thought about working through FTP but personally would probably off myself if I was limited to FTP and using Phing.

All my stuff was done using rsync and could not be done over FTP (then again I&#039;m also running some remote SSH commands like chmod and clearing out cache folders).</description>
		<content:encoded><![CDATA[<p>I had thought about working through FTP but personally would probably off myself if I was limited to FTP and using Phing.</p>
<p>All my stuff was done using rsync and could not be done over FTP (then again I&#8217;m also running some remote SSH commands like chmod and clearing out cache folders).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
