<?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: Removing .svn Directories With PHP</title>
	<atom:link href="http://www.lateralcode.com/remove-svn-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lateralcode.com/remove-svn-php/</link>
	<description>A Web Development Blog Focused on Code and Technology</description>
	<lastBuildDate>Thu, 07 Jul 2011 20:22:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>By: Karthik Viswanathan</title>
		<link>http://www.lateralcode.com/remove-svn-php/#comment-34197</link>
		<dc:creator>Karthik Viswanathan</dc:creator>
		<pubDate>Thu, 07 Jul 2011 20:22:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=1390#comment-34197</guid>
		<description>Hey Richard,

Yes, you are correct. I forgot that the latter parameter must be in the octal numeral system. Thank you for the fix.

Best regards,
Karthik</description>
		<content:encoded><![CDATA[<p>Hey Richard,</p>
<p>Yes, you are correct. I forgot that the latter parameter must be in the octal numeral system. Thank you for the fix.</p>
<p>Best regards,<br />
Karthik</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alhvi</title>
		<link>http://www.lateralcode.com/remove-svn-php/#comment-33014</link>
		<dc:creator>Alhvi</dc:creator>
		<pubDate>Wed, 29 Jun 2011 09:29:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=1390#comment-33014</guid>
		<description>I also had to change 

if( !chmod( $svn, 777 ) )

to 

if( !chmod( $svn, 0777 ) )

As Richard said.  But Thank you!!!! you saved me a lot of time with this :D</description>
		<content:encoded><![CDATA[<p>I also had to change </p>
<p>if( !chmod( $svn, 777 ) )</p>
<p>to </p>
<p>if( !chmod( $svn, 0777 ) )</p>
<p>As Richard said.  But Thank you!!!! you saved me a lot of time with this <img src='http://www.lateralcode.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://www.lateralcode.com/remove-svn-php/#comment-3811</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Wed, 01 Sep 2010 14:04:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=1390#comment-3811</guid>
		<description>Thanks for this sample. Very helpful. 

To make it work in my case, I needed to add the leading zero in chmod:

i.e. changed

  if( !chmod( $svn, 777 ) )

to be

  if( !chmod( $svn, 0777 ) )

I also needed to move the entire if (! chmod(...  into the delTree() function to recursively set chmod.

Regards
Richard</description>
		<content:encoded><![CDATA[<p>Thanks for this sample. Very helpful. </p>
<p>To make it work in my case, I needed to add the leading zero in chmod:</p>
<p>i.e. changed</p>
<p>  if( !chmod( $svn, 777 ) )</p>
<p>to be</p>
<p>  if( !chmod( $svn, 0777 ) )</p>
<p>I also needed to move the entire if (! chmod(&#8230;  into the delTree() function to recursively set chmod.</p>
<p>Regards<br />
Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Removing .svn Directories With PHP &#124; Coder Online</title>
		<link>http://www.lateralcode.com/remove-svn-php/#comment-938</link>
		<dc:creator>Removing .svn Directories With PHP &#124; Coder Online</dc:creator>
		<pubDate>Sat, 02 Jan 2010 19:50:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=1390#comment-938</guid>
		<description>[...] Follow this link: Removing .svn Directories With PHP [...]</description>
		<content:encoded><![CDATA[<p>[...] Follow this link: Removing .svn Directories With PHP [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

