Tagged Questions
Data structures or files may become damaged or corrupt.
7
votes
3answers
2k views
git svn rebase: Incomplete data: Delta source ended unexpectedly
I have been maintaining the git mirror of the watir project. Some time a couple weeks ago, we had someone ready to submit their first git-based patch. Unfortunately, we ran into some issues ...
5
votes
5answers
2k views
Detect if PDF file is correct (header PDF)
I have a windows application .NET that manages many PDF Files. Some files are corrupt.
2 issues: I'll try explain in my worst english...sorry
1.)
How can I detect if any pdf file is correct ?
I ...
5
votes
2answers
8k views
How can I recover files from a corrupted .tar.gz archive?
I have a large number of files in a .tar.gz archive. Checking the file type with the command
file SMS.tar.gz
gives the response
gzip compressed data - deflate method , max compression
When I ...
5
votes
2answers
2k views
Recover corrupt zip or gzip files?
The most common method for corrupting compressed files is to inadvertently do an ASCII-mode FTP transfer, which causes a many-to-one trashing of CR and/or LF characters.
Obviously, there is ...
4
votes
1answer
207 views
resolving corruption in SQL Server Compact Edition database files
This is not a query. Its a summary of our solution to get around the problem of corruption in SQL Compact Database files with (almost) definite success. SQLCE Corruption is a very common problem. ...
4
votes
2answers
399 views
How to simulate a corrupt state exception in .NET 4?
Well, in .NET 4 Microsoft added the HandleProcessCorruptedStateExceptions attribute:
HandleProcessCorruptedStateExceptionsAttribute Class
I want to test this feature. How can I bring my application ...
4
votes
6answers
7k views
How to recover corrupted Eclipse workspace?
I just managed to corrupt contents of my Eclipse .metadata directory. Starting up with eclipse -clean did not work out. Deleting .metadata and then importing all projects, plugins and setting does not ...
3
votes
1answer
741 views
How to debug a corrupt pdf file?
im generating pdf files using a ruby library called "prawn". I have one particular file that seems to be considered "Corrupt" by adobe reader. It shows up fine in both preview and in adobe reader. It ...
3
votes
5answers
867 views
segmentation fault on Unix - possible stack corruption
i'm looking at a core from a process running in Unix.
Usually I can work my around and root into the backtrace to try identify a memory issue.
In this case, I'm not sure how to proceed.
Firstly the ...
2
votes
2answers
51 views
Read image and determine if its corrupt C#
How do I determine if an image that I have as raw bytes is corrupted or not. Is there any opensource library that handles this issue for multiple formats in C#?
Thanks
2
votes
5answers
321 views
Is there any way to have PHP detect a corrupted image?
Is there any way to have PHP determine whether an image file is corrupted and will not be able to display properly?
I've tried to check with fopen and check whether the URL is valid, but it hasn't ...
2
votes
1answer
195 views
Push by user to mercurial repository causes http 500 error for other users
I have a windows hosted mercurial repository that UserA, UserB and UserC have rights to push to. UserA can happily push/pull etc...but once UserC pushes...UserA starts to receive the following error:
...
2
votes
2answers
750 views
Access Error 3443: Unrecognized database format 'databasename.mdb'
What could be the cause of the above error when trying to use an MDB file from a VB app?
The access version of the MDB file is 6.68.
I have a feeling this might have been caused by someone trying to ...
2
votes
1answer
2k views
check manually for jpeg end of file marker ffd9 (?) in php to catch truncation errors
basically trying to remove corrupt, prematurely ending jpeg files from a collection. i figured if the end of file marker was absent then that meant the image is truncated and therefore i would ...
1
vote
0answers
48 views
Better SQLite corruption detection
At first, some background:
My Android app has DB table with a lot of four-column rows. It sends requests to the server and server responds only when all of these four values are "valid". A few of ...
1
vote
0answers
21 views
How do determine if an image is partially corrupt? C#
I have raw bytes for an image. I use the following to code to determine if the image is corrupt or not
public bool IsValidGDIPlusImage(byte[] imageData)
{
try
{
using (var ms = new ...
1
vote
1answer
58 views
Buffered Writer loads corrupt data when new file created
Basically, I'm trying to capture the accelerometer data into a txt file. The code writes the accel data into a string, and then updates everytime it changes which is often. I included a toggle button ...
1
vote
1answer
73 views
Git pull, fatal: loose object
My colleague tried to do a git pull from our master. He got this error:
$ git pull
fatal: loose object f7630cc30248df1e19bcb40c9de1b60b71cdfce1 (stored in ...
1
vote
2answers
79 views
Mercurial: message “abort: index 00changelog.i is corrupted!” after running a sed command. How to deal with it?
I have a project versioned by Mercurial. Once, I ran a command such as...
$ find . -type f | xargs sed -i.bkp 's/my_func/another_func/'
...in this project. Then Mercurial just stopped to work on ...
1
vote
1answer
74 views
Validating data integrity after import from xls to R using RODBC
I am using RODBC for importing a xls file with ~10000 row and ~250 columns, using the script below:
channel <- odbcConnectExcel(xls.file="s:/demo.xls")
demo <- sqlFetch(channel,"Sheet_1")
...
1
vote
1answer
91 views
Mercurial Repo: Corruption in most recent commit
I believe my most recent commit in Mercurial has become corrupt. I cannot commit anything anymore, nor can I rollback.
I ran hg verify which suggested I should run hg recover. I then ran hg recover ...
1
vote
3answers
128 views
Corrupted ZipArchive after setContent() in php symfony
I have a real strange behavior when sending a zip archive containing a any type of file in symfony.
The problem is that the zip file, that I download from the browser contains an extra 'bit' at the ...
1
vote
2answers
277 views
Corrupt image when sending an email w/ image attachment using php mail()
I'm following from an example of sending an email with image attachment through mail(). The email gets sent fine and the image is attached but when I attempt to open the image the browser tells me ...
1
vote
1answer
772 views
“Image corrupt or truncated” after PHP resize
I am attempting to resize an image before storing it as a BLOB in MySQL. FireBug tells me that the "Image is corrupt or truncated", although I am able to open 'tmp.jpg' after this runs. Here is my ...
1
vote
1answer
176 views
c++ dynamic arrays and pointers
Ok so what I'm trying to do is create an array of pointers that point to vectors that change in size. Also the array of pointers is nestled inside a class that's inside a vector. For some reason I ...
1
vote
3answers
557 views
How to create an undeletable file in Delphi
[the following is a rephrase of my previous question, which was deemed ambiguous].
I'm digging into creating a basic licensing mechanism for a demo application. What I have in mind goes like that: ...
1
vote
1answer
54 views
WCF Strong Typed Collections corrupted name on client
I have an existing web service (ASMX) which exposes a service FooService with a method called SelectPaged. This method returns a PagedList<FooDTO>. In ASMX this is converted to a ...
1
vote
1answer
276 views
ASP.NET downloaded files corrupted
I have written the following code to download a file from sharepoint. The downloded file works fine in only some machines. For others, it says that the file is corrupted. The issue is for MS Office ...
1
vote
2answers
188 views
How to avoid occasional corrupted downloads
My website hosts a msi file that users need to download. There is nothing special about the file. It lives in a directory on the webserver with a regular HREF pointing to it that users click on. ...
1
vote
3answers
98 views
One project in Delphi 2007 doesn't show procedure name in the IDE Obj Inspector's Events
I have a Delphi project in 2007 that doesn't show the procedure names in the Object Inspector's Events such as Form OnClose, OnCreate or OnShow in the IDE. The code is there and if you click on ...
1
vote
2answers
1k views
Corrupt mercurial repository - cannot update
i think ive managed to corrupt one of mercurial repositories, is there anyway to recover the damage? the message i get when attempting to update the repo to my default branch is:
PS ...
1
vote
2answers
1k views
Large jasper report to Excel causes a corrupt file
I'm using jasperreports 3.5.3 for generating a large (but simple) report. Only a table with strings.
When I list a big enough selection the generated file is corrupt. Excel alerts the user and some ...
1
vote
3answers
206 views
Added Word Doc to CVS - became corrupt
I'm using CVSNT. I added a Microsoft 2007 docx file "as text" to the repository. After committing and before updating I tried to open the file again but was unable to. It said it was corrupt.
I ...
1
vote
1answer
365 views
iphone nslog corrupted data
I am having a weird problem with variable values. This is the code (it is part of a class method):
MyAppDelegate *pDelegate = [[UIApplication sharedApplication] delegate];
SomeDictionaryData ...
1
vote
3answers
357 views
Strange temporary array corruption
I am attempting to create a permutation, and I receive this strange error when I finish my problem:
Stack around the variable "temp" was corrupted
the segment of the variable is within a nested for ...
0
votes
1answer
30 views
Is it possible for a corrupted .doc file to be viewable as a .jpg of the first page of a Word document?
I received a document with a ".doc" file extension. It appeared as a random smattering of symbols/characters when opened in Word as is, or in a text editor as a .rtf or .txt file.
When the file ...
0
votes
0answers
5 views
NSOperation terminates inbetween. NSOperation doesn't download full data from server
I have a strange problem which I can't find solution of... Please see below. Thanks for your response:
I am downloading json from server via ASIHTTPRequest. The code is below:
ASIHTTPRequest *request ...
0
votes
0answers
46 views
How does ohrwurm use libpcap and arpspoof to corrupt RTP traffic?
I'm trying to evaluate a tool called ohrwurm, which claims to be able to corrupt RTP traffic between two SIP endpoints. By reading its source code I don't believe it works, and would like other's ...
0
votes
0answers
48 views
Recovering a corrupted database backup made in MyBB (sql.gz format)
Me and my friend were running a forum powered by MyBB. Unfortunately, the friend wanted to play with the domains and, well, happened to delete the database without making a backup first.
The problem ...
0
votes
0answers
33 views
Recovering File Names of Recovered Corrupted Files
Not sure if this is the correct site for posting this type of question, but maybe someone can point me in the right direction.
I had some concerns about how can I efficiently recover names of files ...
0
votes
1answer
68 views
SSRS report corrupt when writing to file with WriteAllBytes C#
We have a process that has SQL Server Reporting Services create a pdf file via
ReportExecutionService.Render
from data in the database. Then we save the byte array that Render returns to the ...
0
votes
1answer
63 views
Corrupt VB.Net VS2010 project recovery
In the last year I've worked on two relatively large .NET projects and both of them have ended up with project/code generation strangeness that I just haven't figured out how to fix..
The first ...
0
votes
2answers
51 views
Visual Studio 2010 corrupts user interface
Apologies if this has been answered before.
I am working on a fairly complex UI in VS2010 (typical Explorer type with treeview, splitters, toolbars etc - using only standard controls), and today ...
0
votes
1answer
133 views
PHP test for corrupt (but apparently fine) images
I have a simple image upload script that uses SimpleImage.php
(http://www.white-hat-web-design.co.uk/blog/resizing-images-with-php/)
to resize and save 2 copies of an uploaded image.
There isn't a ...
0
votes
0answers
75 views
Corrupted Git Branch after suspected hard disk issue
So I was having a problem with my hard disk (I think). Everytime I ran git log commands (when running Windows through VMWare Fusion for Mac) it would throw a fatal error causing VMWare to crash ...
0
votes
0answers
41 views
XML to excel error
I've been importing various XML files to excel, which it does fine, but once i save and close the spread sheet and re-open it again to import other XML files an error occurs. The error is below.
...
0
votes
0answers
129 views
Image corrupt or truncated:
Image corrupt or truncated:
I got this error in firefox while uploading and displaying jpg files using ajax.
But other jpeg,gif,png images are working.
0
votes
0answers
22 views
XSD getting corrupted
my application has a web service consumed by other user. Input parameter is an xml document which will be validated against a schema file. This schema file (XSD) is getting corrupted frequently.
The ...
0
votes
1answer
96 views
Recover VBA Code in Corrupted Access 2002 Database
So somehow my Access database got corrupted and I am trying to recover the VBA code. Does anyone know how to recover the code?
Error message is as follows: "The Visual Basic for Applications project ...
0
votes
1answer
348 views
Apache FTPClient upload jar files ends up being corrupt
I seem to be uploading corrupt jar files to a remote server using Apache's FTPClient 3.0.1. I am also setting the file and file transfer type to binary.
FTPClient ftp = new FTPClient();
...