Proposed Answer Corrupted Word 2007 File - Unspecified Error

  • Thursday, January 20, 2011 6:30 PM
     
     

    I have a problem with a corrupted file in Word 07 that will not open after some recent edits.

    The filename.docx cannot be opened because there are problems with the contents.

    Details: Unspecified Error

    Location: Part: /word/document.xml, Line: 2, Column: 120132

    I've researched a bit and found some people have resolved by renaming the docx to zip and editting the document.xml direct. Without any prior XML knowledge or working with these documents I'm lost as to what to edit. It opens by default in IE which seems a bit unfriendly for finding the correct area to edit.

     

    Please advise.

     

    Thanks,

    Jeremy

All Replies

  • Friday, January 21, 2011 7:43 PM
     
     
    Put it somewhere we can see it and someone will take a look.
     

    Enjoy,
    Tony
    www.WordArticles.com
  • Thursday, April 28, 2011 4:35 AM
     
     

    I too have the same problem.  My message says

    The file cannot be opened because there are problems with the contents

    unspecified error

    Location:Part/word/document.xml,Line:2,Column:0

    I am currently using Office 2010 and windows 7.  I also had these issues with win 7 and Office 2007.

    The document is part of my maths degree and, I have only started using the maths addins last year, so I am only just coming to grips with it.  I am worried that in my final assignment I will get the same problems.

    http://www.4shared.com/file/yt_B1N70/Copy__1_TMA04backup.html

    Regards

    Pamela

  • Wednesday, November 30, 2011 6:31 PM
     
     

    Hi,

    i have same problem too. i cant open the word document that i ve created for more than 19 pages.

    it said that;

    ''unspecified error

    Location: Part: /word/document.xml,Line:2,Column: 866626''

     

    please help me asap. i need to submit the assignment by 48 hours.

     

    i've uploaded my file here... http://www.sendspace.com/file/xuxyc9

  • Friday, December 09, 2011 1:56 AM
     
     
    Did you solve this? I have the same error Location:Part/word/document.xml,Line:2,Column:0 I was using math editor too, Any fix, I was working on a report for over a week now, and now it is all gone :S HELP PLEASE
  • Friday, December 09, 2011 1:55 PM
     
     

    I also have a similar problem... important document for my final project. please help!

    Error details:

    Unspecified error

    Location: Part: /word/document.xml, Line:2, Column: 241717

    http://www.4shared.com/file/ZlVUsHQf/Steam_drum_calculations.html

    -William Yuan

  • Tuesday, February 28, 2012 9:32 PM
     
     

    Hi,

    I can also confirm that this happens, likely connected to the equation editor.

    I noticed when Word was going awry (refused to scroll past page 8, produced graphical glitches I can best describe as: "repeating lines"), and so I swiftly saved several copies of the document, each at a different undo-state (Undo, save as, undo, save as...)
    I even copy/pasted everything to a new document and saved that as well.
    Then I closed word and once I confirmed via task manager that the process finished terminating, I reopened some of the backup documents at random. None reported any errors. But all copies of my document were "laggy", once I scrolled past the 8th page of the equations.

    When the lecture was over, I hibernated my laptop as usual and left the university, expecting to fix whatever the issue was at home... Only to find this, when trying to open any of the documents:

    the file *.docx cannot be opened because there are problems with the contents.
    word/document.xml line 2 column 0

    I wonder why it continued to work after restarting word in the classroom, but not one hour later at home.

    So now I'm in the process of wading through 185 kilobytes of painfully bloated xml code, looking for an error to fix, or at least salvageable parts to recover...
    The indicated line 2 column 0 is not helpful, as the entire xml file only consists of 2 lines, and all content save an xml version declaration is on line 2.

    Wish me luck!


    http://3ice.hu/

  • Tuesday, February 28, 2012 11:36 PM
     
     Proposed Answer Has Code

    Hi,

    I fixed it.
    It took me 20 minutes of unfruitful (fruitless?) research and then a mere 5 minutes of basic xml editing to fix the document in question. Then I spent an hour writing (and proofreading and proofreading again) this guide and now it is 1 am...

    Steps:

    1. Change your file extension from docx to zip *
    2. Extract word/document.xml *
    3. Using a Programmer's Notepad (I prefer Notepad++) replace >< with >\r\n< in extended mode to make the XML more readable, putting each tag on its own line. (The expression \r\n stands for new line in windows.) You can use regexp mode or multi-line replace in other text editors, or copy a newline/hidden paragraph symbol and paste it in the replace box. (Which works even in Word.)
    4. Import the modified word/document.xml back into the archive *
    5. Rename it back from zip to docx *
    6. Attempt to open the document
    7. Note that this time the error message will be more useful, for example it will tell you that the error is at: line 13540, as opposed to line 2 column 0.
    8. Go to the line specified (was 13540 for me) and remove it. And the tags around it too, if necessary. Make sure you keep the XML well-formatted! (You can attempt to fix the erroneous line instead of removing it, but usually the indicated line is as useless as the other lines around it, so removal will not result in any loss of data. See the note** below for why this is.)
    9. Import document.xml and rename zip/docx as usual. *
    10. Repeat steps 6-9 until your document is recovered. (Took me 5 repeats, as more errors arose at lines 15870, 13595, 13222 and 10835.*** (Not sure why it found errors in reverse order, but it did.)

    * These steps are unnecessary if you use Total Commander (or other advanced file managers). It can look inside docx files as if they were folders because it automatically recognizes them as compressed archives. It also lets you edit files easier, just press F4. And it even detects file changes and asks if it should reimport your edited files into the archive upon closing the editor.

    ** Note: To me it seems that none of the errors were real. While the source code was extremely bloated and wasteful, every indicated error was a line with completely well formed XML. (Around it was good XML too.) For pages and pages, almost every line repeated the same statement:

    <w:rPr><w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/></w:rPr>

    *** There is no reason to pay attention to my line numbers, I only included them to show you how many lines my document had. Over ten thousand lines of XML just to describe an 8 pages long document... Crazy!
    *** And of course the case of word finding errors in reverse order is quite peculiar.

    --Daniel "3ICE" Berezvai

    p.s.: Helpful people over at answers.microsoft.com can recover your document for you (I saw pages upon pages of recovered documents), and now that I figured it out I can attempt to help you here as well. I shall remain subscribed to this topic.


    http://3ice.hu/

    Edit reason: Removed unnecessary step: "Delete a random file from the archive and it will trigger text recovery in word. And what's great is that I was able to recover all of my equations, not just the text! (I deleted the entire customXml folder for it looked suspicious/useless. But you can probably delete something smaller, like word\fontTable.xml or word\webSettings.xml.)"

    • Proposed As Answer by 3ICE Tuesday, February 28, 2012 11:45 PM
    • Edited by 3ICE Tuesday, February 28, 2012 11:55 PM 100k→10k
    • Edited by 3ICE Friday, August 17, 2012 9:54 AM See "Edit reason" above.
    •  
  • Tuesday, April 03, 2012 6:16 AM
     
     

    Is it happening with all of your word files or specific file, try this

    http://support.microsoft.com/kb/918429

  • Thursday, April 19, 2012 7:37 PM
     
      Has Code

    Re: The deleted message above this post by massiveProjectDue

    I was able to identify the problem in your document and fixed it successfully. I would send you a PM with the recovered document, but this forum does not seem to offer private messaging...

    For your information, this was the part that caused the corruption in the word/document.xml file:

    <w:hyperlink w:anchor="__RefHeading__17224_679957151">
    <w:r>
    <w:fldChar w:fldCharType="begin">
    </w:fldChar>
    </w:r>
    <w:r>
    <w:instrText> TOC </w:instrText>
    </w:r>
    <w:r>
    <w:fldChar w:fldCharType="separate"/>
    </w:r>
    <w:r>
    <w:rPr>
    <w:rStyle w:val="style21"/>
    </w:rPr>
    <w:t xml:space="preserve">1.Introduction </w:t>
    <w:tab/>
    <w:t>1</w:t>
    </w:r>
    </w:hyperlink>
    The above code refers to an (according to Word) invalid TOC (Table of Contents).

    Having a Table of Contents is indeed the most common cause for document corruption according to my research.

    --3ICE

    p.s.: How could I get the fixed document to you privately?


    http://3ice.hu/

    • Edited by 3ICE Thursday, April 19, 2012 7:38 PM
    • Edited by 3ICE Friday, August 17, 2012 9:59 AM below → above
    •  
  • Tuesday, May 15, 2012 3:05 PM
     
     

    Hello 3Ice,

    I have try your solution. But it does not seem to work for me. do you mind taking a look at my word document http://www.4shared.com/file/r2JZlgPn/chap1-2_-_Copy.html?.

    Thank you.

  • Tuesday, May 15, 2012 3:11 PM
     
     
    Sorry, but 4shared is now a private file sharing service that outsiders cannot access. Use box.net or mediafire.com instead.

    http://3ice.hu

    • Edited by 3ICE Tuesday, May 15, 2012 3:11 PM outsiders*
    • Edited by 3ICE Tuesday, May 15, 2012 3:12 PM
    •  
  • Monday, June 18, 2012 5:51 AM
     
     

    Hi 3ICE!

    I also tried your solution with no success..if you can, please take a look on my file.

    https://www.box.com/s/cf431c028ff49dfbaccd

    Thanks in advance!

    Regards,

  • Monday, June 18, 2012 8:55 AM
     
      Has Code

    Hi,

    All fixed. You had a bookmark inside an equation that caused the error. This is what I removed from your document.xml:

    <m:acc>
    <m:eqArr>
    <m:eqArrPr>
    <m:ctrlPr>
    <w:rPr>
    <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/>
    <w:i/>
    </w:rPr>
    </m:ctrlPr>
    </m:eqArrPr>
    <m:e/>
    <m:e>
    <m:eqArr>
    <m:eqArrPr>
    <m:ctrlPr>
    <w:rPr>
    <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/>
    <w:i/>
    </w:rPr>
    </m:ctrlPr>
    </m:eqArrPr>
    <m:e>
    <m:m>
    <m:mPr>
    <m:mcs>
    <m:mc>
    <m:mcPr>
    <m:count m:val="2"/>
    <m:mcJc m:val="center"/>
    </m:mcPr>
    </m:mc>
    </m:mcs>
    <m:ctrlPr>
    <w:rPr>
    <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/>
    <w:i/>
    </w:rPr>
    </m:ctrlPr>
    </m:mPr>
    <m:mr>
    <m:e>
    <w:bookmarkStart w:id="3" w:name="_GoBack"/>
    <w:bookmarkEnd w:id="3"/>
    </m:e>
    <m:e/>
    </m:mr>
    <m:mr>
    <m:e/>
    <m:e/>
    </m:mr>
    </m:m>
    <m:ctrlPr>
    <w:rPr>
    <w:rFonts w:ascii="Cambria Math" w:eastAsia="Cambria Math" w:hAnsi="Cambria Math" w:cs="Cambria Math"/>
    <w:i/>
    </w:rPr>
    </m:ctrlPr>
    </m:e>
    <m:e>
    <m:ctrlPr>
    <w:rPr>
    <w:rFonts w:ascii="Cambria Math" w:eastAsia="Cambria Math" w:hAnsi="Cambria Math" w:cs="Cambria Math"/>
    <w:i/>
    </w:rPr>
    </m:ctrlPr>
    </m:e>
    <m:e/>
    </m:eqArr>
    </m:e>
    </m:eqArr>
    </m:acc>
    Download:

    tmp.3ice.hu/Monografia_v01.docx (Removed)

    --3ICE
    paypal@3ice.hu


    http://3ice.hu/

    • Edited by 3ICE Tuesday, November 20, 2012 1:14 PM Removing link to the fixed document as it's the guy's private document and probably doesn't want it online.
    •  
  • Monday, June 18, 2012 9:13 AM
     
     

    Hi,

    Here is my updated guide on how to fix corrupt word documents with error "the file *.docx cannot be opened because there are problems with the contents. word/document.xml line 2 column 0":

    1. Change your file extension from docx to zip
    2. Extract word/document.xml from the zip
    3. Using a Programmer's Notepad (Such as Notepad++) replace >< with >\r\n< in extended mode to put each XML tag on its own line. (The expression \r\n stands for new line in windows.) You can use regexp mode or multi-line replace in other text editors, or copy a newline/hidden paragraph symbol and paste it in the replace box. (That works even in Word.)
    4. Import the modified word/document.xml back into the zip archive
    5. Rename the extension back from zip to docx 
    6. Attempt to open the document in Word now
    7. Note that this time the error message will be more useful; It will tell you that the error is at: line 13540, as opposed to the meaningless line 2.
    8. Go to the line specified (was 13540 for me) and remove it along with all of its XML children. (From opening tag: <w:something> to closing tag:</w:something>.) Make sure you keep the XML well formatted!
    9. Import the modified document.xml and rename from zip to docx again.
    10. Repeat steps 6-9 if necessary, until no more errors show up and your document is recovered.

    --3ICE
    paypal@3ice.hu


    http://3ice.hu/

    • Proposed As Answer by 3ICE Monday, June 18, 2012 9:23 AM
    • Unproposed As Answer by David Wolters Monday, June 18, 2012 2:51 PM
    •  
  • Monday, June 18, 2012 9:22 AM
     
     

    Hi,

    Here is my quick guide on how to fix corrupt word documents with error "the file *.docx cannot be opened because there are problems with the contents. word/document.xml line 2 column 0" for advanced users:

    1. Edit corrupt.docx/word/document.xml, replacing every occurrence of >< with >\r\n< (This puts each XML tag on its own line.)
    2. Attempt to open the document in Word
    3. Go to the line specified in the now much more useful error message and remove the XML element on that line along with all of its children. Keep the XML code valid.
    4. Repeat steps 2 and 3 until no more errors show up and your document is recovered.

    --3ICE
    paypal@3ice.hu


    http://3ice.hu/

    • Edited by 3ICE Monday, June 18, 2012 9:22 AM
    • Proposed As Answer by 3ICE Monday, June 18, 2012 9:23 AM
    • Edited by 3ICE Monday, June 18, 2012 9:25 AM
    • Unproposed As Answer by David Wolters Monday, June 18, 2012 2:50 PM
    •  
  • Monday, July 23, 2012 8:35 AM
     
     
    Hi 3ICE can you teach me how to go to the text editor? 
  • Monday, July 23, 2012 6:32 PM
     
     
    I'm not sure what you mean.

    http://3ice.hu/

  • Monday, August 13, 2012 4:21 AM
     
     

    3ICE, could you look at my file please? I do not understand a lot of the language you're using in the guide.

    http://www.mediafire.com/?7vz6xdl82cn7iz7

  • Monday, August 13, 2012 11:29 AM
     
     

    I'm sorry, that's a near-blank file. As far as I know Word uses it for tracking or locking documents or something like permission management.

    It's only 162 bytes big. I need the file without ~$ in the name, that starts with "Written", not "~$itten". Its size also needs to be at least 10 kilobytes, but usually way over 100 kb.

    This is all the recoverable text your "document" contains: "Chanel MingLiU SimSun Dotum Nň<3žaaya°x°a¤"

    I look forward to receiving your actual document.

    --3ICE


    http://3ice.hu/

    • Edited by 3ICE Tuesday, August 14, 2012 5:05 PM Kitten Activity Analysis → Written Activity Analysis
    • Edited by 3ICE Tuesday, August 14, 2012 5:06 PM Kitten Activity Analysis → Written Activity Analysis
    •  
  • Monday, August 13, 2012 12:15 PM
     
     

    I tried saving it a different way. I was working on this file and saved just a few minutes before I knocked my laptop clear off the table onto the floor. Despite having saved it, the file disappeared. I was able to recover it using recuva, but it was altered. The fiile named originally started with "Written" It was only a couple paragraphs originally.

    I was open to open it with OpenOffice and only got gobbledeegook.

    Is it possible the file is "bad'?

    http://www.4shared.com/file/8xJYX_kJ/Written_Activity_Analysis.html

  • Monday, August 13, 2012 1:59 PM
     
     

    As posted previously:

    "Sorry, but 4shared is now a private file sharing service that outsiders cannot access. Use box.net or mediafire.com instead."


    http://3ice.hu/

  • Monday, August 13, 2012 3:33 PM
     
     

    Sorry! I changed the file name.

    http://www.mediafire.com/?te2na1ef51j6pz5

  • Tuesday, August 14, 2012 3:06 AM
     
     

    Changed the file name? What were you hoping to achieve with that?

    Well, at least you didn't fill the document with spaces until it became 10kb big...


    http://3ice.hu/

    • Edited by 3ICE Tuesday, August 14, 2012 5:07 PM
    •  
  • Tuesday, August 14, 2012 1:27 PM
     
     

    Not sure that commentary was necessasry. Thank you for trying to help though. Was able to recover the file via a different method.

    Cheers.

  • Tuesday, August 14, 2012 5:20 PM
     
     

    You are right. I have hurt your feelings. I'm sorry, that was uncalled for. 

    Despite all the negative things I directed towards you, I'm still willing and eager to fix your document. I'm very interested in this kind of stuff. Your case especially, because...

    Mechanical damage like knocking a laptop to the floor hardly ever causes damage to just one file. The hard drive is either left perfectly intact or thousands of sectors are wiped clean at once. (The ones that happen to spin past the disk heads at the moment of impact. Picture below.) Especially since today's laptops now include active hard drive protection that parks the heads if the machine is dropped, to offer the greatest possible chance of survival in such an unfortunate event.

    But I must say this:
    I feel my above comment was justified. Renaming a temporary lock file (162 bytes) won't suddenly make it into an entire recoverable document (20+ kilobytes).

    And this:
    Did your "different method" involve retyping the entire document perchance?


    http://3ice.hu/

    • Edited by 3ICE Tuesday, August 14, 2012 5:23 PM Added picture for ""Thousands of sectors are wiped clean""
    • Edited by 3ICE Tuesday, August 14, 2012 5:24 PM Added picture for 'Thousands of sectors are wiped clean'
    •  
  • Thursday, August 16, 2012 3:27 PM
     
     

    I have followed your instructions, and have replaced every occurrence of >< with >\r\n<, then re-inserted document.xml back into the word document, but I still have the error on line 2. Could you please help me fix this file?

    http://www.mediafire.com/?39cw57r7j465252

    I'm fairly certain the reason why it isn't opening is because of a corrupted equation at the end of the document. I can't open it in Word to remove it, and trying to do so in WordPad won't allow me to save it back in Word 2010 format.
    • Edited by Torgo13 Thursday, August 16, 2012 3:48 PM
    •  
  • Thursday, August 16, 2012 7:21 PM
     
     
    "\r\n" means "new line". I'm working on recovering the document, be with you in 5-10 minutes.

    http://3ice.hu/

  • Thursday, August 16, 2012 7:27 PM
     
     

    All done.

    The error was on lines 50739, 50745, 50751 and two more.

    The code I removed five times:

    <m:oMath>
    <m:e>
    <m:ctrlPr/>
    </m:e>
    </m:oMath>

    The fixed document: http://www.mediafire.com/?mdj0wow2kdc2k9q

    --3ICE
    paypal@3ice.hu


    http://3ice.hu/

    • Edited by 3ICE Thursday, August 16, 2012 7:28 PM Making link clickable.
    •  
  • Friday, August 17, 2012 7:22 AM
     
     
    Thank you so much! You saved me hours of re-writing those equations.
  • Monday, August 20, 2012 4:11 AM
     
     

    Hey ICE,

    You seem to be having a lot of success fixing these documents.

    I am having the same difficulties, however I am not able to get beyond the error being located in line 2.

    I do have an index, a table of authorites and a table of contents but the document is mostly a text file as opposed to the above ones being equation based.

    Hoping that you can help me, as you have generously helped the others, thanks for your time,

    Jill

    https://www.dropbox.com/s/sl51tlpxa2623vg/Road Report 20120619.docx

  • Monday, August 20, 2012 4:30 AM
     
     

    Wow, that is one mighty large document!

    But it opens for me without any errors... I suspect Dropbox might have fixed it.

    Could you see if there are any differences between your original copy and the one on dropbox?


    http://3ice.hu/

  • Tuesday, August 21, 2012 9:28 AM
     
     

    Haha - yeah it is a pretty heafty doc hey!

    So I worked out that it opens in Word 2010 - but not in Word 2007.

    Hence I am just using a different computer. I read somewhere that there is a glitch with 2007 and XML.

    Thanks for looking at it for me - really appreciated,

    Jill

  • Wednesday, August 29, 2012 7:44 PM
     
     

    Hi, sorry I too have noticed your success at fixing these documents - is there any chance you could have a look at mine? I think the problem as before is linked to the table of contents, I have tried to follow your steps above but not got very far! If you do have a chance it would be very much appreciated as it is my friends whole lab project, thank you very much in advance.

    https://www.box.com/s/e4b616aba759720077b5

  • Wednesday, August 29, 2012 8:20 PM
     
      Has Code

    Hi,

    Wow that's quite different from the usual errors here. The problem is two-fold:

    The zip container was damaged. I extracted everything I could and repacked it fresh, but some files were lost in the process. I replaced those with the default ones from a blank word document.
    And the 4000 lines long document.xml that I was able to partially recover was also damaged beyond repair after line 1500:

    Here is everything I was able to save:
    http://www.mediafire.com/?dvpnl59w9dnmbp9
    (The first two pages)

    And beyond that, some text I could extract (got worse and worse as I scrolled down):

    proteins, responsible for signal regulation, receptor traffick
    For a good review
    proteinaj responsible for signal regaj rion, receptor traffick
    hydrophobe
    phospholipe
    aeto
    shockd:me:t
    smecereticulum
    differe

    And this is where it breaks off:

    l3AD/w:6B3haen-GBeontnorrml:sw:t>Rw:ss ere implicatid"w:rmanytphyrHologicaldfunTIarts disoroers06Bangnct fromBheedstrts>0vdrmigraw:es06throughdsIT="r Brsp wsi,ecanc=rt0vdr/e"n "/psdw, w
    <w:00tFC7E:spact="prer=rve">Cooray,eChav, Webb, Meth:r/ll 0vdrClark, "Acc=0sory>:ro:t>
    <: Dre vitalt<or tid funTIartaltexpr="rHo1 R="c=rtaw:rG :ro:t>
    <-coupled Brct xmlk

    --3ICE


    http://3ice.hu/

    • Edited by 3ICE Wednesday, August 29, 2012 8:21 PM Made image clickable.
    • Edited by 3ICE Wednesday, August 29, 2012 8:22 PM Made image clickable.
    • Edited by 3ICE Wednesday, August 29, 2012 8:22 PM Made image clickable.
    •  
  • Wednesday, August 29, 2012 9:02 PM
     
     

    Wow thank you so much! I didn't realise it was so damaged, thank you for trying and what you have managed to recover is amazing and much appreciated. Just a quick question - do you think there is no chance of being able to recover the rest of the text? Even without the formatting of the word document, just the actual words that were written? Though I'm guessing by the scrambled bit you have posted above, there's a very high chance not! Thanks so much again :)

  • Thursday, August 30, 2012 12:16 AM
     
     

    Hi,

    Unless you have previous versions of the document, I don't know how we could recover more.

    The damage seems to be: The second part of document.xml was duplicated and overwritten by itself but with an offset, in such an unlucky manner that the markup perfectly covered your text, effectively deleting it.

    Furthermore, the average document.xml contains 50 thousand xml tags (in this case, lines) and yours only has 4 thousand. It gets cut off very early on.

    --3ICE


    http://3ice.hu/

  • Friday, August 31, 2012 12:17 AM
     
     
    Ah no previous version unfortunately! But thank you very much for all of your help with this, very much appreciated :) my friend has hopefully learnt from this!
  • Thursday, November 01, 2012 5:40 PM
     
     
    I had the same problem as Torgo13. If you're using Notepad++ (version 6 is what I have currently), you must click the "Extended (\n, \r, ..." bullet in the Search Mode box in order for it to interpret >\r\n< as a new line. After I did that, repackaged, and reopened in Word I started getting meaningful line numbers.
  • Sunday, November 04, 2012 1:56 PM
     
     

    Hi

    I am facing the same problem of "unspecified error" and have tried to follow your steps faithfully for recovery. But even after replacing all >< with >\r\n<, the newline characters are not inserted and I do not get meaningful line numbers.

    I have uploaded my file to this location :

    http://www.mediafire.com/view/?rbkkifc1csc1lpc

    Is it possible for you to look into it and try to repair it? I have to submit this Assessment tomorrow and am in real panic!

    Thanks in advance!

    KD001

  • Sunday, November 04, 2012 2:14 PM
     
     

    Hey, I did it! Followed your steps again very carefully and it was recovered!

    Thanks a ton

  • Thursday, December 06, 2012 7:47 PM
     
     

    Hi,

    I have similar problem with the word document, it is been the 2nd time that I am writing it and each time that I close it and want to open it ,there is an error message saying:

    'the name in the end tag of the element must match the element type in the start tag... Location:/word/document.xml,Line:2,Column:26973'

    I really need some help..

    I have put the doc on ftp://ftp.gns.cri.nz/incoming/Karine/Theory (Autosaved).docx

    Thanks.

    Karine



    • Edited by KarineP Thursday, December 06, 2012 7:47 PM
    •  
  • Thursday, December 06, 2012 10:46 PM
     
      Has Code

    This is a little different from the usual errors here.

    I had to cut away a bigger portion from the document than I usually do. Here is everything removed, a total of 184 lines from around line 1350:

    <mc:AlternateContent> <mc:Choice Requires="wps"> <m:oMath> <m:r> <m:rPr> <m:sty m:val="p"/> </m:rPr> <w:rPr> <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/> <w:noProof/> <w:lang w:eastAsia="en-NZ"/> </w:rPr> <w:drawing> <wp:anchor distT="0" distB="0" distL="114300" distR="114300" simplePos="0"

    relativeHeight="251659264" behindDoc="0" locked="0" layoutInCell="1"

    allowOverlap="1" wp14:anchorId="6B70B6D1" wp14:editId="5E2266B0"> <wp:simplePos x="0" y="0"/> <wp:positionH relativeFrom="column"> <wp:posOffset>-17145</wp:posOffset> </wp:positionH> <wp:positionV relativeFrom="paragraph"> <wp:posOffset>15875</wp:posOffset> </wp:positionV> <wp:extent cx="1388745" cy="826770"/> <wp:effectExtent l="0" t="0" r="20955" b="11430"/> <wp:wrapNone/> <wp:docPr id="307" name="Text Box 2"/> <wp:cNvGraphicFramePr> <a:graphicFrameLocks xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"/> </wp:cNvGraphicFramePr> <a:graphic xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"> <a:graphicData uri="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"> <wps:wsp> <wps:cNvSpPr txBox="1"> <a:spLocks noChangeArrowheads="1"/> </wps:cNvSpPr> <wps:spPr bwMode="auto"> <a:xfrm> <a:off x="0" y="0"/> <a:ext cx="1388745" cy="826770"/> </a:xfrm> <a:prstGeom prst="rect"> <a:avLst/> </a:prstGeom> <a:solidFill> <a:srgbClr val="FFFFFF"/> </a:solidFill> <a:ln w="9525"> <a:solidFill> <a:srgbClr val="000000"/> </a:solidFill> <a:miter lim="800000"/> <a:headEnd/> <a:tailEnd/> </a:ln> </wps:spPr> <wps:txbx> <w:txbxContent> <w:p w:rsidR="00DD0377" w:rsidRPr="00AF7139" w:rsidRDefault="00DD0377"> <w:pPr> <w:rPr> <w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia"

    w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/> </w:rPr> </w:pPr> <m:oMathPara> <m:oMath> <m:r> <w:rPr> <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/> </w:rPr> <m:t xml:space="preserve">ρ :fluid density </m:t> </m:r> </m:oMath> </m:oMathPara> </w:p> <w:p w:rsidR="00DD0377" w:rsidRPr="00AF7139" w:rsidRDefault="00DD0377"> <w:pPr> <w:rPr> <w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia"

    w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/> </w:rPr> </w:pPr> <m:oMath> <m:r> <w:rPr> <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/> </w:rPr> <m:t xml:space="preserve"> v:fluid velocity </m:t> </m:r> </m:oMath> <w:r> <w:rPr> <w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia"

    w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/> </w:rPr> <w:t xml:space="preserve"> </w:t> </w:r> <m:oMath> <m:r> <w:rPr> <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/> </w:rPr> <m:t>φ:porosity</m:t> </m:r> </m:oMath> </w:p> <w:p w:rsidR="00DD0377" w:rsidRDefault="00DD0377"/> </w:txbxContent> </wps:txbx> <wps:bodyPr rot="0" vert="horz" wrap="square" lIns="91440" tIns="45720"

    rIns="91440" bIns="45720" anchor="t" anchorCtr="0"> <a:noAutofit/> </wps:bodyPr> </wps:wsp> </a:graphicData> </a:graphic> <wp14:sizeRelH relativeFrom="margin"> <wp14:pctWidth>0</wp14:pctWidth> </wp14:sizeRelH> <wp14:sizeRelV relativeFrom="margin"> <wp14:pctHeight>0</wp14:pctHeight> </wp14:sizeRelV> </wp:anchor> </w:drawing> </m:r> </mc:Choice> <mc:Fallback> <w:pict> <v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"

    path="m,l,21600r21600,l21600,xe"> <v:stroke joinstyle="miter"/> <v:path gradientshapeok="t" o:connecttype="rect"/> </v:shapetype> <v:shape id="Text Box 2" o:spid="_x0000_s1026" type="#_x0000_t202"

    style=";margin-margin-width:109.35pt;height:65.1pt;v-text-anchor:top"

    o:gfxdata="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&#xA; ZXYueG1sUEsFBgAAAAAEAAQA8wAAAIgFAAAAAA==&#xA;"> <v:textbox> <w:txbxContent> <w:p w:rsidR="00AF7139" w:rsidRPr="00AF7139" w:rsidRDefault="00AF7139"> <w:pPr> <w:rPr> <w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia"

    w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/> </w:rPr> </w:pPr> <m:oMathPara> <m:oMath> <m:r> <w:rPr> <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/> </w:rPr> <m:t xml:space="preserve">ρ :fluid density </m:t> </m:r> </m:oMath> </m:oMathPara> </w:p> <w:p w:rsidR="00AF7139" w:rsidRPr="00AF7139" w:rsidRDefault="00AF7139"> <w:pPr> <w:rPr> <w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia"

    w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/> </w:rPr> </w:pPr> <m:oMath> <m:r> <w:rPr> <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/> </w:rPr> <m:t xml:space="preserve"> v:fluid velocity </m:t> </m:r> </m:oMath> <w:r> <w:rPr> <w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia"

    w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/> </w:rPr> <w:t xml:space="preserve"> </w:t> </w:r> <m:oMath> <m:r> <w:rPr> <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/> </w:rPr> <m:t>φ:porosity</m:t> </m:r> </m:oMath> </w:p> <w:p w:rsidR="00AF7139" w:rsidRDefault="00AF7139"/> </w:txbxContent> </v:textbox> </v:shape> </w:pict> </mc:Fallback> </mc:AlternateContent> </m:oMath>

    Looking at the source code, I can see that it was a figure/diagram about something's fluid density, fluid velocity, and porosity. You'll have to recreate that drawing.

    And here is your fixed document: mediafire.com/?u5qeiiwhe4e9492

    -- http://3ice.hu/
    • Edited by 3ICE Thursday, December 06, 2012 10:47 PM Hopefully fixed code tags
    • Edited by 3ICE Thursday, December 06, 2012 10:51 PM Fixed code tags (again!)
    • Edited by 3ICE Thursday, December 06, 2012 10:55 PM Fixed code tags (for the third time now)
    • Edited by 3ICE Thursday, December 06, 2012 10:57 PM Fixed code tags (for the third time now)
    •  
  • Friday, December 07, 2012 1:58 AM
     
     

    That is very impressive what you have done!

    I do not understand what you have done , i will look at it later ,,

    You save me a lot of time.

    I didn't think I will recover it, therefore I was using Latex.

    Is it possible to do it for the Contentsf (2) also on the same website?

    Thank you very much .

    Karine

  • Friday, December 07, 2012 4:05 PM
     
      Has Code

    Certainly. Here is the fixed Contentsf.docx:

    http://www.mediafire.com/?v2jopl96xlwtob6

    And this is what I had to delete from the document (lines 1126-1410):

    <mc:AlternateContent>
    <mc:Choice Requires="wps">
    <m:oMath>
    <m:r>
    <m:rPr>
    <m:sty m:val="p"/>
    </m:rPr>
    <w:rPr>
    <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/>
    <w:noProof/>
    <w:lang w:eastAsia="en-NZ"/>
    </w:rPr>
    <w:drawing>
    <wp:anchor distT="0" distB="0" distL="114300" distR="114300" simplePos="0" relativeHeight="251659264" behindDoc="0" locked="0" layoutInCell="1" allowOverlap="1" wp14:anchorId="6B70B6D1" wp14:editId="5E2266B0">
    <wp:simplePos x="0" y="0"/>
    <wp:positionH relativeFrom="column">
    <wp:posOffset>-17145</wp:posOffset>
    </wp:positionH>
    <wp:positionV relativeFrom="paragraph">
    <wp:posOffset>15875</wp:posOffset>
    </wp:positionV>
    <wp:extent cx="1388745" cy="826770"/>
    <wp:effectExtent l="0" t="0" r="20955" b="11430"/>
    <wp:wrapNone/>
    <wp:docPr id="307" name="Text Box 2"/>
    <wp:cNvGraphicFramePr>
    <a:graphicFrameLocks xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"/>
    </wp:cNvGraphicFramePr>
    <a:graphic xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
    <a:graphicData uri="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
    <wps:wsp>
    <wps:cNvSpPr txBox="1">
    <a:spLocks noChangeArrowheads="1"/>
    </wps:cNvSpPr>
    <wps:spPr bwMode="auto">
    <a:xfrm>
    <a:off x="0" y="0"/>
    <a:ext cx="1388745" cy="826770"/>
    </a:xfrm>
    <a:prstGeom prst="rect">
    <a:avLst/>
    </a:prstGeom>
    <a:solidFill>
    <a:srgbClr val="FFFFFF"/>
    </a:solidFill>
    <a:ln w="9525">
    <a:solidFill>
    <a:srgbClr val="000000"/>
    </a:solidFill>
    <a:miter lim="800000"/>
    <a:headEnd/>
    <a:tailEnd/>
    </a:ln>
    </wps:spPr>
    <wps:txbx>
    <w:txbxContent>
    <w:p w:rsidR="00186B05" w:rsidRPr="00AF7139" w:rsidRDefault="00186B05">
    <w:pPr>
    <w:rPr>
    <w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/>
    </w:rPr>
    </w:pPr>
    <m:oMathPara>
    <m:oMath>
    <m:r>
    <w:rPr>
    <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/>
    </w:rPr>
    <m:t xml:space="preserve">ρ :fluid density </m:t>
    </m:r>
    </m:oMath>
    </m:oMathPara>
    </w:p>
    <w:p w:rsidR="00186B05" w:rsidRPr="00AF7139" w:rsidRDefault="00186B05">
    <w:pPr>
    <w:rPr>
    <w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/>
    </w:rPr>
    </w:pPr>
    <m:oMath>
    <m:r>
    <w:rPr>
    <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/>
    </w:rPr>
    <m:t xml:space="preserve"> v:fluid velocity  </m:t>
    </m:r>
    </m:oMath>
    <w:r>
    <w:rPr>
    <w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/>
    </w:rPr>
    <w:t xml:space="preserve"> </w:t>
    </w:r>
    <m:oMath>
    <m:r>
    <w:rPr>
    <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/>
    </w:rPr>
    <m:t>φ:porosity</m:t>
    </m:r>
    </m:oMath>
    </w:p>
    <w:p w:rsidR="00186B05" w:rsidRDefault="00186B05"/>
    </w:txbxContent>
    </wps:txbx>
    <wps:bodyPr rot="0" vert="horz" wrap="square" lIns="91440" tIns="45720" rIns="91440" bIns="45720" anchor="t" anchorCtr="0">
    <a:noAutofit/>
    </wps:bodyPr>
    </wps:wsp>
    </a:graphicData>
    </a:graphic>
    <wp14:sizeRelH relativeFrom="margin">
    <wp14:pctWidth>0</wp14:pctWidth>
    </wp14:sizeRelH>
    <wp14:sizeRelV relativeFrom="margin">
    <wp14:pctHeight>0</wp14:pctHeight>
    </wp14:sizeRelV>
    </wp:anchor>
    </w:drawing>
    </m:r>
    </mc:Choice>
    <mc:Fallback>
    <w:pict>
    <v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
    <v:stroke joinstyle="miter"/>
    <v:path gradientshapeok="t" o:connecttype="rect"/>
    </v:shapetype>
    <v:shape id="Text Box 2" o:spid="_x0000_s1026" type="#_x0000_t202" style=";margin-margin-width:109.35pt;height:65.1pt;v-text-anchor:top" o:gfxdata="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&#xA;ZXYueG1sUEsFBgAAAAAEAAQA8wAAAIgFAAAAAA==&#xA;">
    <v:textbox>
    <w:txbxContent>
    <w:p w:rsidR="00AF7139" w:rsidRPr="00AF7139" w:rsidRDefault="00AF7139">
    <w:pPr>
    <w:rPr>
    <w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/>
    </w:rPr>
    </w:pPr>
    <m:oMathPara>
    <m:oMath>
    <m:r>
    <w:rPr>
    <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/>
    </w:rPr>
    <m:t xml:space="preserve">ρ :fluid density </m:t>
    </m:r>
    </m:oMath>
    </m:oMathPara>
    </w:p>
    <w:p w:rsidR="00AF7139" w:rsidRPr="00AF7139" w:rsidRDefault="00AF7139">
    <w:pPr>
    <w:rPr>
    <w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/>
    </w:rPr>
    </w:pPr>
    <m:oMath>
    <m:r>
    <w:rPr>
    <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/>
    </w:rPr>
    <m:t xml:space="preserve"> v:fluid velocity  </m:t>
    </m:r>
    </m:oMath>
    <w:r>
    <w:rPr>
    <w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/>
    </w:rPr>
    <w:t xml:space="preserve"> </w:t>
    </w:r>
    <m:oMath>
    <m:r>
    <w:rPr>
    <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/>
    </w:rPr>
    <m:t>φ:porosity</m:t>
    </m:r>
    </m:oMath>
    </w:p>
    <w:p w:rsidR="00AF7139" w:rsidRDefault="00AF7139"/>
    </w:txbxContent>
    </v:textbox>
    </v:shape>
    </w:pict>
    </mc:Fallback>
    </mc:AlternateContent>
    </m:oMath>

    It looks like the same drawing or diagram with the fluid velocity, density and porosity labels was corrupt again.

    --3ICE

    p.s.: Feel free to give me money. (Not required, I'm happy to help for free.)


    http://3ice.hu/

    • Edited by 3ICE Friday, December 07, 2012 4:08 PM Made download link clickable
    •  
  • Thursday, January 03, 2013 12:33 AM
     
     
    Hmm... Would I rather pay 40$ for an outdated (2007<2013) and most likely single-use software; or have 3ICE fix it quickly for free, as demonstrated above. Not hard to tell which option is going to be more popular.

    http://3ice.hu/

  • Thursday, January 03, 2013 9:01 PM
     
     

    hi 3ICE, i tried following your steps but when I tried to extract document.xml, the file is reported as corrupted and so I don't know how to proceed. If you can, please take a look at it. Thanks.

    oh, and the error given is "Semicolon expected. Location: Part: /word/document.xml, Line: 680, Column: 38389"

    https://dl.dropbox.com/u/31681020/template%20JAS%202007_19.docx

  • Friday, January 04, 2013 9:39 AM
     
     
    yes, thanks for helping. can i have the document?
    • Edited by craziqbal Friday, January 04, 2013 9:39 AM
    •  
  • Thursday, January 10, 2013 4:32 AM
     
     

    Hello Craziqbal,

    You have some other options also.

    RepairMyWord from Get Data - Free

    Stellar Phoenix Word Recovery from Stellar Phoenix - Paid - Life Time License

  • Monday, January 14, 2013 4:24 AM
     
     

    Hey Naitik,

    First of all I want to tell you I m not here to get backlinks. When I got this forum, tried  to open this link (https://dl.dropbox.com/u/31681020/template%20JAS%202007_19.docx) but it was not working may be file was removed. So I could not check the file with above mentioned software. And one more thing I have tried Stellar Phoenix & RepairmyWord software to repair my corrupt files & got successful results. 


    • Edited by Markwillium Monday, January 14, 2013 4:25 AM
    •  
  • Monday, January 14, 2013 8:35 AM
     
     
    Can u share the corrupt file for testing?
  • Tuesday, February 12, 2013 3:19 PM
     
     
    Thank you, It worked for me
    • Edited by Hani Mimi Tuesday, February 12, 2013 3:19 PM
    •  
  • Thursday, February 28, 2013 9:59 PM
     
     

    Hey, I have the same problem with my word document. It says 'unspecified error'. I uploaded my document here: https://www.box.com/s/efkq1olxm1zbgdezw7zw

    Please help me fix it! It's my math portfolio assignment for school and I have worked really hard on it and I really don't want to lose it :'(

    Thanks in advance :')

  • Monday, April 08, 2013 4:31 AM
     
     

    Hey 3ICE ,

    Good Day,

    i am facing the same problem, followed your guide but cannot recover.

    please help me out.

    https://www.dropbox.com/sh/9a0t4krk1fhs12s/xAU5iPSqBc

    https://skydrive.live.com/redir?resid=DFA187CDF36EB79!552

    Thank You

  • Monday, April 08, 2013 5:11 AM
     
     

    Dear All,

    My issue got fixed by running the "Fix It" the following:

    http://support.microsoft.com/kb/2528942hope it may help you guys aswell.

    Thank You :)

  • Monday, April 08, 2013 9:38 AM
     
     

    Awesome!

    Glad to hear that you were able to fix it.

    Let me just re-post your posted link so it is clickable:
    http://support.microsoft.com/kb/2528942


    http://3ice.hu/

  • Monday, April 15, 2013 3:29 PM
     
     
    I have the same problem, I tried Fix It but it was useless, then  I also tried converting the document with Open Office, but got an incomplete version of the original document. Can someone help me? Here's the document http://www.mediafire.com/view/?zd73h7d23v9kwww Thanks.
  • Monday, April 15, 2013 7:33 PM
     
     
    Before: 8 pages
    After: 14 pages

    http://www.mediafire.com/view/?u5fnzbmtnybe1la

    Sincerely,
    Daniel "3ICE" Berezvai

    p.s.: The culprit was a [NULL] character (often expressed as '\0' in programming) Screenshot:


    http://3ice.hu/

    • Edited by 3ICE Monday, April 15, 2013 7:42 PM added screenshot (Notepad++)
    •  
  • Monday, April 15, 2013 9:05 PM
     
     
    Thank you so much!
  • Tuesday, April 16, 2013 6:54 AM
     
     

    Never mind, 3ICE I used your guide and I managed to fix my file! Thank you so so much. You basically saved my life.

  • Change your file extension from docx to zip
  • Extract word/document.xml from the zip
  • Using a Programmer's Notepad (Such as Notepad++) replace >< with >\r\n< in extended mode to put each XML tag on its own line. (The expression \r\n stands for new line in windows.) You can use regexp mode or multi-line replace in other text editors, or copy a newline/hidden paragraph symbol and paste it in the replace box. (That works even in Word.)
  • Import the modified word/document.xml back into the zip archive
  • Rename the extension back from zip to docx 
  • Attempt to open the document in Word now
  • Note that this time the error message will be more useful; It will tell you that the error is at: line 13540, as opposed to the meaningless line 2.
  • Go to the line specified (was 13540 for me) and remove it along with all of its XML children. (From opening tag: <w:something> to closing tag:</w:something>.) Make sure you keep the XML well formatted!
  • Import the modified document.xml and rename from zip to docx again.
  • Repeat steps 6-9 if necessary, until no more errors show up and your document is recovered.
  • Change your file extension from docx to zip
  • Extract word/document.xml from the zip
  • Using a Programmer's Notepad (Such as Notepad++) replace >< with >\r\n< in extended mode to put each XML tag on its own line. (The expression \r\n stands for new line in windows.) You can use regexp mode or multi-line replace in other text editors, or copy a newline/hidden paragraph symbol and paste it in the replace box. (That works even in Word.)
  • Import the modified word/document.xml back into the zip archive
  • Rename the extension back from zip to docx 
  • Attempt to open the document in Word now
  • Note that this time the error message will be more useful; It will tell you that the error is at: line 13540, as opposed to the meaningless line 2.
  • Go to the line specified (was 13540 for me) and remove it along with all of its XML children. (From opening tag: <w:something> to closing tag:</w:something>.) Make sure you keep the XML well formatted!
  • Import the modified document.xml and rename from zip to docx again.
  • Repeat steps 6-9 if necessary, until no more errors show up and your document is recovered.
  • Change your file extension from docx to zip
  • Extract word/document.xml from the zip
  • Using a Programmer's Notepad (Such as Notepad++) replace >< with >\r\n< in extended mode to put each XML tag on its own line. (The expression \r\n stands for new line in windows.) You can use regexp mode or multi-line replace in other text editors, or copy a newline/hidden paragraph symbol and paste it in the replace box. (That works even in Word.)
  • Import the modified word/document.xml back into the zip archive
  • Rename the extension back from zip to docx 
  • Attempt to open the document in Word now
  • Note that this time the error message will be more useful; It will tell you that the error is at: line 13540, as opposed to the meaningless line 2.
  • Go to the line specified (was 13540 for me) and remove it along with all of its XML children. (From opening tag: <w:something> to closing tag:</w:something>.) Make sure you keep the XML well formatted!
  • Import the modified document.xml and rename from zip to docx again.
  • Repeat steps 6-9 if necessary, until no more errors show up and your document is recovered.
  • Change your file extension from docx to zip
  • Extract word/document.xml from the zip
  • Using a Programmer's Notepad (Such as Notepad++) replace >< with >\r\n< in extended mode to put each XML tag on its own line. (The expression \r\n stands for new line in windows.) You can use regexp mode or multi-line replace in other text editors, or copy a newline/hidden paragraph symbol and paste it in the replace box. (That works even in Word.)
  • Import the modified word/document.xml back into the zip archive
  • Rename the extension back from zip to docx 
  • Attempt to open the document in Word now
  • Note that this time the error message will be more useful; It will tell you that the error is at: line 13540, as opposed to the meaningless line 2.
  • Go to the line specified (was 13540 for me) and remove it along with all of its XML children. (From opening tag: <w:something> to closing tag:</w:something>.) Make sure you keep the XML well formatted!
  • Import the modified document.xml and rename from zip to docx again.
  • Repeat steps 6-9 if necessary, until no more errors show up and your document is recovered.