<?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: Valid UTF-8 data (hex:) followed by invalid UTF-8 sequence</title>
	<atom:link href="http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/feed/" rel="self" type="application/rss+xml" />
	<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/</link>
	<description>thoroughly chinafied american business geek in shanghai</description>
	<lastBuildDate>Tue, 09 Mar 2010 14:21:42 +0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Carlos Barros</title>
		<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/comment-page-1/#comment-177447</link>
		<dc:creator>Carlos Barros</dc:creator>
		<pubDate>Tue, 01 Dec 2009 11:20:24 +0000</pubDate>
		<guid isPermaLink="false">http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/#comment-177447</guid>
		<description>&lt;p&gt;Thanks for this post, this saved me some time. I just want to add my two cents. Sometimes finding the exact file that&#039;s causing the problem is tough. I have a images directory with 2k files and one of these have this problem. 
[code]
svn: Error converting entry in directory &#039;images/thumbnails&#039; to UTF-8
svn: Valid UTF-8 data
(hex: 4e 6f 6b 69 61 2d 35 35 33 30 2d)
followed by invalid UTF-8 sequence
(hex: 96 2d 58 70)
[/code]&lt;/p&gt;

&lt;p&gt;So this told me the directory was images/thumbnails. To find which file, i did:&lt;/p&gt;

&lt;p&gt;[code]
$ printf &quot;\x4e\x6f\x6b\x69\x61\x2d\x35\x35\x33\x30\x2d\n&quot;
Nokia-5530-
[/code]&lt;/p&gt;

&lt;p&gt;So this told me the filename starts with Nokia-5530- :)&lt;/p&gt;

&lt;p&gt;Hope this helps&lt;/p&gt;

&lt;p&gt;Carlos&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for this post, this saved me some time. I just want to add my two cents. Sometimes finding the exact file that&#8217;s causing the problem is tough. I have a images directory with 2k files and one of these have this problem. 
<pre class="brush: plain;">
svn: Error converting entry in directory 'images/thumbnails' to UTF-8
svn: Valid UTF-8 data
(hex: 4e 6f 6b 69 61 2d 35 35 33 30 2d)
followed by invalid UTF-8 sequence
(hex: 96 2d 58 70)
</pre></p>

<p>So this told me the directory was images/thumbnails. To find which file, i did:</p>

<p><pre class="brush: plain;">
$ printf "\x4e\x6f\x6b\x69\x61\x2d\x35\x35\x33\x30\x2d\n"
Nokia-5530-
</pre></p>

<p>So this told me the filename starts with Nokia-5530- <img src='http://ryanerwin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p>Hope this helps</p>

<p>Carlos</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Dom</title>
		<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/comment-page-1/#comment-177282</link>
		<dc:creator>Dom</dc:creator>
		<pubDate>Wed, 28 Oct 2009 08:50:11 +0000</pubDate>
		<guid isPermaLink="false">http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/#comment-177282</guid>
		<description>&lt;p&gt;Just joining in with the thanks!&lt;/p&gt;

&lt;p&gt;Top result on Google for svn &quot;followed by invalid UTF-8 sequence&quot;, you should be proud :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Just joining in with the thanks!</p>

<p>Top result on Google for svn &#8220;followed by invalid UTF-8 sequence&#8221;, you should be proud <img src='http://ryanerwin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>]]></content:encoded>
	</item>
	<item>
		<title>By: jo</title>
		<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/comment-page-1/#comment-177068</link>
		<dc:creator>jo</dc:creator>
		<pubDate>Thu, 08 Oct 2009 19:43:26 +0000</pubDate>
		<guid isPermaLink="false">http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/#comment-177068</guid>
		<description>&lt;p&gt;also happens for files that are not part of SVN!&lt;/p&gt;

&lt;p&gt;my program spits out a log file each run -- an error in the filename string made a bunch of log files with garbled file names. i got the same error as others (valid UTF-8 followed by invalid UTF-8), even though none of these log files were ever checked into the repo!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>also happens for files that are not part of SVN!</p>

<p>my program spits out a log file each run &#8212; an error in the filename string made a bunch of log files with garbled file names. i got the same error as others (valid UTF-8 followed by invalid UTF-8), even though none of these log files were ever checked into the repo!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: zombat</title>
		<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/comment-page-1/#comment-174263</link>
		<dc:creator>zombat</dc:creator>
		<pubDate>Sun, 02 Aug 2009 18:57:56 +0000</pubDate>
		<guid isPermaLink="false">http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/#comment-174263</guid>
		<description>&lt;p&gt;Great post, I found it via Google.  My problem was almost identical.  An image got copied into a checked out tree, and svn update began failing due to a wacky character in the image name.&lt;/p&gt;

&lt;p&gt;Thanks for taking the time to post this!  It&#039;s always a great feeling to find a solution to strange issues that actually work.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great post, I found it via Google.  My problem was almost identical.  An image got copied into a checked out tree, and svn update began failing due to a wacky character in the image name.</p>

<p>Thanks for taking the time to post this!  It&#8217;s always a great feeling to find a solution to strange issues that actually work.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: ryan</title>
		<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/comment-page-1/#comment-172395</link>
		<dc:creator>ryan</dc:creator>
		<pubDate>Wed, 24 Jun 2009 04:23:16 +0000</pubDate>
		<guid isPermaLink="false">http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/#comment-172395</guid>
		<description>&lt;p&gt;Evdsande-&lt;/p&gt;

&lt;p&gt;For some reason I never got notified about this comment.&lt;/p&gt;

&lt;p&gt;The issue as reported above applies certainly to Mac OS X, Linux and other Unix systems, but I haven&#039;t used Windows for more than a few minutes in the entire 21st Century, so I&#039;m of limited help here.&lt;/p&gt;

&lt;p&gt;The error does look the same though, so it is most likely one of the files under your &quot;TortoiseRedminePlugin&quot; folder. I would go through the sub-folders one at a time (first to &quot;inc&quot;) and then to the other sub-folders and do the commit one by one.&lt;/p&gt;

&lt;p&gt;One of the files should have the encoding issue as described. Delete that file and the commit should proceed properly.&lt;/p&gt;

&lt;p&gt;Best-&lt;/p&gt;

&lt;p&gt;-R&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Evdsande-</p>

<p>For some reason I never got notified about this comment.</p>

<p>The issue as reported above applies certainly to Mac OS X, Linux and other Unix systems, but I haven&#8217;t used Windows for more than a few minutes in the entire 21st Century, so I&#8217;m of limited help here.</p>

<p>The error does look the same though, so it is most likely one of the files under your &#8220;TortoiseRedminePlugin&#8221; folder. I would go through the sub-folders one at a time (first to &#8220;inc&#8221;) and then to the other sub-folders and do the commit one by one.</p>

<p>One of the files should have the encoding issue as described. Delete that file and the commit should proceed properly.</p>

<p>Best-</p>

<p>-R</p>]]></content:encoded>
	</item>
	<item>
		<title>By: cooper</title>
		<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/comment-page-1/#comment-112162</link>
		<dc:creator>cooper</dc:creator>
		<pubDate>Sat, 07 Mar 2009 21:42:24 +0000</pubDate>
		<guid isPermaLink="false">http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/#comment-112162</guid>
		<description>&lt;p&gt;strace svn status will give you the name of the offending file. unfortunately, svn care about name of files that are in one of its directories, even if it&#039;s not under revision.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>strace svn status will give you the name of the offending file. unfortunately, svn care about name of files that are in one of its directories, even if it&#8217;s not under revision.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: PDF: Поддержка UTF-8 в fpdf / zavackiy.info</title>
		<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/comment-page-1/#comment-105474</link>
		<dc:creator>PDF: Поддержка UTF-8 в fpdf / zavackiy.info</dc:creator>
		<pubDate>Sat, 21 Feb 2009 23:53:37 +0000</pubDate>
		<guid isPermaLink="false">http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/#comment-105474</guid>
		<description>&lt;p&gt;[...] RyanErwin.com » Valid UTF-8 data (hex:) followed by invalid UTF-8 &#8230; [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] RyanErwin.com » Valid UTF-8 data (hex:) followed by invalid UTF-8 &#8230; [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Agris</title>
		<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/comment-page-1/#comment-92097</link>
		<dc:creator>Agris</dc:creator>
		<pubDate>Wed, 11 Feb 2009 08:20:48 +0000</pubDate>
		<guid isPermaLink="false">http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/#comment-92097</guid>
		<description>&lt;p&gt;Yes, filenames with non-latin chars cause the problem. Deleting them fixes the problem.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Yes, filenames with non-latin chars cause the problem. Deleting them fixes the problem.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: evdsande</title>
		<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/comment-page-1/#comment-27034</link>
		<dc:creator>evdsande</dc:creator>
		<pubDate>Tue, 11 Nov 2008 19:30:40 +0000</pubDate>
		<guid isPermaLink="false">http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/#comment-27034</guid>
		<description>&lt;p&gt;Finally I rebuild subversion with a patch that showed me the directory that was causing the trouble (found the patch at: http://www.nabble.com/-PATCH--Issue--2748:-non-UTF-8-filenames-in-the-repository-td19531299.html) however it didn&#039;t help me yet. The error I get now is: 
Adding D:\Projects\t\TextDocument.txt 
Error    Error converting entry in directory
Error    &#039;/dtm/home/svn/svn/t/db/transactions/0-0.txn&#039; to UTF8
Error    Valid UTF-8 data
Error    (hex:)
Error    followed by an invalid UTF-8 sequence
Error    (hex: c0 a4 01)&lt;/p&gt;

&lt;p&gt;Now there are at least 2 things I don&#039;t get
1: The dir points is a subversion repository transactionlog file not the project file I&#039;m trying to import
2: This is a new repositories, I deleted all my old repositories and did a fresh import of a single text file edited with vi&lt;/p&gt;

&lt;p&gt;And I still get the same error ???? I&#039;m totally puzzeled if you have any clue,&lt;/p&gt;

&lt;p&gt;Please....&lt;/p&gt;

&lt;p&gt;Thankz Eric&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Finally I rebuild subversion with a patch that showed me the directory that was causing the trouble (found the patch at: <a href="http://www.nabble.com/-PATCH--Issue--2748:-non-UTF-8-filenames-in-the-repository-td19531299.html)" rel="nofollow">http://www.nabble.com/-PATCH&#8211;Issue&#8211;2748:-non-UTF-8-filenames-in-the-repository-td19531299.html)</a> however it didn&#8217;t help me yet. The error I get now is: 
Adding D:\Projects\t\TextDocument.txt 
Error    Error converting entry in directory
Error    &#8216;/dtm/home/svn/svn/t/db/transactions/0-0.txn&#8217; to UTF8
Error    Valid UTF-8 data
Error    (hex:)
Error    followed by an invalid UTF-8 sequence
Error    (hex: c0 a4 01)</p>

<p>Now there are at least 2 things I don&#8217;t get
1: The dir points is a subversion repository transactionlog file not the project file I&#8217;m trying to import
2: This is a new repositories, I deleted all my old repositories and did a fresh import of a single text file edited with vi</p>

<p>And I still get the same error ???? I&#8217;m totally puzzeled if you have any clue,</p>

<p>Please&#8230;.</p>

<p>Thankz Eric</p>]]></content:encoded>
	</item>
	<item>
		<title>By: evdsande</title>
		<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/comment-page-1/#comment-26880</link>
		<dc:creator>evdsande</dc:creator>
		<pubDate>Tue, 11 Nov 2008 14:41:09 +0000</pubDate>
		<guid isPermaLink="false">http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/#comment-26880</guid>
		<description>&lt;p&gt;Hi Ryan,&lt;/p&gt;

&lt;p&gt;Sorry if I sounded offending, It&#039;s subversion that&#039;s frustrating me, giving me no decent clue where to look. I appreciate your help very much. Thanks a lot ! I will go again through my files, but how about the project I removed from the repository, should I add it again to the repository to go though all the files in there ?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Ryan,</p>

<p>Sorry if I sounded offending, It&#8217;s subversion that&#8217;s frustrating me, giving me no decent clue where to look. I appreciate your help very much. Thanks a lot ! I will go again through my files, but how about the project I removed from the repository, should I add it again to the repository to go though all the files in there ?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: ryan</title>
		<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/comment-page-1/#comment-26828</link>
		<dc:creator>ryan</dc:creator>
		<pubDate>Tue, 11 Nov 2008 14:05:36 +0000</pubDate>
		<guid isPermaLink="false">http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/#comment-26828</guid>
		<description>&lt;p&gt;@Eric-&lt;/p&gt;

&lt;p&gt;I understand your frustration buddy. Just trying to help. You&#039;re not looking for files that ARE UTF-8. You&#039;re looking for files that ARE NOT UTF-8.&lt;/p&gt;

&lt;p&gt;In your case, just run:
    cd C:\Projects\Visual Studio 2005\Projects\TortoiseRedminePlugin
    svn up inc
    svn up ... (where &quot;...&quot; is another folder under TortiseRedminePlugin)&lt;/p&gt;

&lt;p&gt;You&#039;ll notice that this will run successfully for most of your files, but there will be some that don&#039;t complete successfully. When you locate the folder where the error starts, then you run &quot;svn up&quot; one file at a time until you find the individual file(s) that are causing the problem. Delete those files from the repository and you&#039;ll be all fixed up.&lt;/p&gt;

&lt;p&gt;As for the UTF-8 issue... Again - the key is to find files that are in encodings OTHER THAN UTF-8. You&#039;ve got such a file - it&#039;s just a matter of finding it.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@Eric-</p>

<p>I understand your frustration buddy. Just trying to help. You&#8217;re not looking for files that ARE UTF-8. You&#8217;re looking for files that ARE NOT UTF-8.</p>

<p>In your case, just run:
    cd C:\Projects\Visual Studio 2005\Projects\TortoiseRedminePlugin
    svn up inc
    svn up &#8230; (where &#8220;&#8230;&#8221; is another folder under TortiseRedminePlugin)</p>

<p>You&#8217;ll notice that this will run successfully for most of your files, but there will be some that don&#8217;t complete successfully. When you locate the folder where the error starts, then you run &#8220;svn up&#8221; one file at a time until you find the individual file(s) that are causing the problem. Delete those files from the repository and you&#8217;ll be all fixed up.</p>

<p>As for the UTF-8 issue&#8230; Again &#8211; the key is to find files that are in encodings OTHER THAN UTF-8. You&#8217;ve got such a file &#8211; it&#8217;s just a matter of finding it.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: evdsande</title>
		<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/comment-page-1/#comment-26826</link>
		<dc:creator>evdsande</dc:creator>
		<pubDate>Tue, 11 Nov 2008 13:28:57 +0000</pubDate>
		<guid isPermaLink="false">http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/#comment-26826</guid>
		<description>&lt;p&gt;Hi Ryan,&lt;/p&gt;

&lt;p&gt;I did the exercise as you suggested, but I don&#039;t see the UTF-8 encoded types. The file * command gives me &quot;ASCII C++ program text, with CRLF line terminators&quot;,  &quot;XML document text&quot; etc... but no UTF-8, besides when I ran into these trouble I removed the latest directory that created this error from my repository, my current repository contains only those parts that where there before the problem popped up, however the problem still exists. The problem even pop&#039;s up on repositories that were never touched?? I switched to an other svn client, tried the commandline and even created a new repository to test, all of them give me the same error and now I&#039;m totally puzzeld and stuck with a messed-up subversion installation.&lt;/p&gt;

&lt;p&gt;this is the part of the logging from tortoisesvn where the error popped up for the first time.&lt;/p&gt;

&lt;p&gt;Adding               : C:\Projects\Visual Studio 2005\Projects\TortoiseRedminePlugin\inc
Adding               : C:\Projects\Visual Studio 2005\Projects\TortoiseRedminePlugin\inc\IBugTraqProvider.idl
Adding               : C:\Projects\Visual Studio 2005\Projects\TortoiseRedminePlugin\inc\IBugTraqProvider_i.c
Adding               : C:\Projects\Visual Studio 2005\Projects\TortoiseRedminePlugin\inc\IBugTraqProvider_h.h
Adding               : C:\Projects\Visual Studio 2005\Projects\TortoiseRedminePlugin\inc\Interop.BugTraqProvider.dll
Adding               : C:\Projects\Visual Studio 2005\Projects\TortoiseRedminePlugin\issue-tracker-plugins.txt
Error                : Valid UTF-8 data
Error                : (hex:)
Error                : followed by invalid UTF-8 sequence
Error                : (hex: c0 a4 01)
Finished!            : 
52 kBytes transferred in 0 minute(s) and 2 second(s)&lt;/p&gt;

&lt;p&gt;I removed the directories and files added here using svnadmin dump and svnfilter, however in the new repository the error still persists (I removed most of the revisions that handled the above actions, but not all of them could be removed). What I cannot understand is, how this can affect a different repository?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Ryan,</p>

<p>I did the exercise as you suggested, but I don&#8217;t see the UTF-8 encoded types. The file * command gives me &#8220;ASCII C++ program text, with CRLF line terminators&#8221;,  &#8220;XML document text&#8221; etc&#8230; but no UTF-8, besides when I ran into these trouble I removed the latest directory that created this error from my repository, my current repository contains only those parts that where there before the problem popped up, however the problem still exists. The problem even pop&#8217;s up on repositories that were never touched?? I switched to an other svn client, tried the commandline and even created a new repository to test, all of them give me the same error and now I&#8217;m totally puzzeld and stuck with a messed-up subversion installation.</p>

<p>this is the part of the logging from tortoisesvn where the error popped up for the first time.</p>

<p>Adding               : C:\Projects\Visual Studio 2005\Projects\TortoiseRedminePlugin\inc
Adding               : C:\Projects\Visual Studio 2005\Projects\TortoiseRedminePlugin\inc\IBugTraqProvider.idl
Adding               : C:\Projects\Visual Studio 2005\Projects\TortoiseRedminePlugin\inc\IBugTraqProvider_i.c
Adding               : C:\Projects\Visual Studio 2005\Projects\TortoiseRedminePlugin\inc\IBugTraqProvider_h.h
Adding               : C:\Projects\Visual Studio 2005\Projects\TortoiseRedminePlugin\inc\Interop.BugTraqProvider.dll
Adding               : C:\Projects\Visual Studio 2005\Projects\TortoiseRedminePlugin\issue-tracker-plugins.txt
Error                : Valid UTF-8 data
Error                : (hex:)
Error                : followed by invalid UTF-8 sequence
Error                : (hex: c0 a4 01)
Finished!            : 
52 kBytes transferred in 0 minute(s) and 2 second(s)</p>

<p>I removed the directories and files added here using svnadmin dump and svnfilter, however in the new repository the error still persists (I removed most of the revisions that handled the above actions, but not all of them could be removed). What I cannot understand is, how this can affect a different repository?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: ryan</title>
		<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/comment-page-1/#comment-26791</link>
		<dc:creator>ryan</dc:creator>
		<pubDate>Tue, 11 Nov 2008 12:26:59 +0000</pubDate>
		<guid isPermaLink="false">http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/#comment-26791</guid>
		<description>&lt;p&gt;@Eric-&lt;/p&gt;

&lt;p&gt;Eric-&lt;/p&gt;

&lt;p&gt;Your best bet is to go through each of the subdirectories of your project and do an &quot;svn up&quot; on the directory one at a time until you find the subdirectory(s) containing the file(s) that have an incompatible encoding.&lt;/p&gt;

&lt;p&gt;Another useful tool is the Unix &quot;file&quot; command. Just run &quot;file *&quot; in the directory that you locate with the incompatible encoding and search for the file that comes back to you with an encoding type other than UTF-8.&lt;/p&gt;

&lt;p&gt;Best of luck-&lt;/p&gt;

&lt;p&gt;-R&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@Eric-</p>

<p>Eric-</p>

<p>Your best bet is to go through each of the subdirectories of your project and do an &#8220;svn up&#8221; on the directory one at a time until you find the subdirectory(s) containing the file(s) that have an incompatible encoding.</p>

<p>Another useful tool is the Unix &#8220;file&#8221; command. Just run &#8220;file *&#8221; in the directory that you locate with the incompatible encoding and search for the file that comes back to you with an encoding type other than UTF-8.</p>

<p>Best of luck-</p>

<p>-R</p>]]></content:encoded>
	</item>
	<item>
		<title>By: evdsande</title>
		<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/comment-page-1/#comment-26784</link>
		<dc:creator>evdsande</dc:creator>
		<pubDate>Tue, 11 Nov 2008 12:21:49 +0000</pubDate>
		<guid isPermaLink="false">http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/#comment-26784</guid>
		<description>&lt;p&gt;I ran into the same error, however I cannot find the file causing the error. I even now have the same error on all my repositories, even the ones that were not affected. I still don;t have a clue how to recover my repositories I already removed the malicious project from the affected repository using svnfilter with no effect. Is there a way to rebuild the repository form the dump and identfy the malicious directory or file???&lt;/p&gt;

&lt;p&gt;Regards Eric&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I ran into the same error, however I cannot find the file causing the error. I even now have the same error on all my repositories, even the ones that were not affected. I still don;t have a clue how to recover my repositories I already removed the malicious project from the affected repository using svnfilter with no effect. Is there a way to rebuild the repository form the dump and identfy the malicious directory or file???</p>

<p>Regards Eric</p>]]></content:encoded>
	</item>
	<item>
		<title>By: ryan</title>
		<link>http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/comment-page-1/#comment-24161</link>
		<dc:creator>ryan</dc:creator>
		<pubDate>Mon, 03 Nov 2008 18:33:10 +0000</pubDate>
		<guid isPermaLink="false">http://ryanerwin.com/2007/04/09/valid-utf-8-data-hex-followed-by-invalid-utf-8-sequence/#comment-24161</guid>
		<description>&lt;blockquote&gt;Too bad you&#039;ve got a lot of spam on here, but the answer here was perfect. Thanks.&lt;/blockquote&gt;

&lt;p&gt;I&#039;ve just gone through and cleaned up some of the remaining SPAM, but I must admit that I have no clue where some of it comes from... To submit a comment you should be required to fill out the RE-CAPTSHA field, but it seems that some spammers have found a way around this. Since installing RE-CAPTSHA the SPAM has slowed down dramatically, but it does still arrive and the rate does seem to be increasing again.&lt;/p&gt;

&lt;p&gt;Maybe there&#039;s a backdoor in re-CAPTSHA?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<blockquote>Too bad you&#8217;ve got a lot of spam on here, but the answer here was perfect. Thanks.</blockquote>

<p>I&#8217;ve just gone through and cleaned up some of the remaining SPAM, but I must admit that I have no clue where some of it comes from&#8230; To submit a comment you should be required to fill out the RE-CAPTSHA field, but it seems that some spammers have found a way around this. Since installing RE-CAPTSHA the SPAM has slowed down dramatically, but it does still arrive and the rate does seem to be increasing again.</p>

<p>Maybe there&#8217;s a backdoor in re-CAPTSHA?</p>]]></content:encoded>
	</item>
</channel>
</rss>
