AVAudioRecorder Corrupts file unless recordWithDuration set

For some reason in my app I cannot seem to start and stop recording.
I have taken my code right from the Documentation on using AVAudioRecorder class on the apple website. If i set [recorder recordWithDuration:10]; the app works fine it records for 10 seconds and as long as i let it finish by itself i can play back the file. if however I try and do [recorder stop]; The file becomes corrupted. I also recieve an error in the console.
2009-07-30 16:41:12.924 Scribe Direct Mobile[1996:207] recorder: NSOSStatusErrorDomain 560030580 (null)
here is the start and stop code
-(IBAction)record:(id)sender
[button addTarget:self action:@selector(stopRecording:) forControlEvents:UIControlEventTouchUpInside];
AVAudioSession *audioSession = [AVAudioSession sharedInstance];
NSError *err = nil;
[audioSession setCategory :AVAudioSessionCategoryRecord error:&err];
if(err){
NSLog(@"audioSession: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
return;
[audioSession setActive:YES error:&err];
err = nil;
if(err){
NSLog(@"audioSession: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
return;
self.recordSetting = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSNumber numberWithFloat: 44100.0], AVSampleRateKey,
[NSNumber numberWithInt: kAudioFormatAppleLossless], AVFormatIDKey,
[NSNumber numberWithInt: 1], AVNumberOfChannelsKey,
[NSNumber numberWithInt: AVAudioQualityMax], AVEncoderAudioQualityKey,
nil];
self.recordSetting = [[NSMutableDictionary alloc] init];
[recordSetting setValue:[NSNumber numberWithInt:kAudioFormatLinearPCM] forKey:AVFormatIDKey];
[recordSetting setValue:[NSNumber numberWithFloat:44100.0] forKey:AVSampleRateKey];
[recordSetting setValue:[NSNumber numberWithInt: 2] forKey:AVNumberOfChannelsKey];
[recordSetting setValue :[NSNumber numberWithInt:16] forKey:AVLinearPCMBitDepthKey];
[recordSetting setValue :[NSNumber numberWithBool:NO] forKey:AVLinearPCMIsBigEndianKey];
[recordSetting setValue :[NSNumber numberWithBool:NO] forKey:AVLinearPCMIsFloatKey];
// Create a new dated file
//NSDate *now = [NSDate dateWithTimeIntervalSinceNow:0];
//NSString *caldate = [now description];
NSNumber *rand1;
rand1 = [NSNumber numberWithUnsignedInt:arc4random()];
fmod([rand1 floatValue], 1000.0); //random number from 0-1000;
self.soundFilePath = [[NSString stringWithFormat:@"%@/%@-%@.caf", DOCUMENTS_FOLDER, @"noodles", rand1] retain];
NSURL *url = [NSURL fileURLWithPath:self.soundFilePath];
err = nil;
recorder = [[ AVAudioRecorder alloc] initWithURL:url settings:recordSetting error:&err];
if(!recorder){
NSLog(@"recorder: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
UIAlertView *alert =
[[UIAlertView alloc] initWithTitle: @"Warning"
message: [err localizedDescription]
delegate: nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
[alert release];
return;
//prepare to record
[recorder setDelegate:self];
[recorder prepareToRecord];
recorder.meteringEnabled = YES;
BOOL audioHWAvailable = audioSession.inputIsAvailable;
if (! audioHWAvailable) {
UIAlertView *cantRecordAlert =
[[UIAlertView alloc] initWithTitle: @"Warning"
message: @"Audio input hardware not available"
delegate: nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[cantRecordAlert show];
[cantRecordAlert release];
return;
// start recording
[recorder recordForDuration:20];
[button setTitle:@"Stop Recording" forState:UIControlStateNormal];
//[self.button setEnabled:NO];
- (IBAction) stopRecording:(id)sender
[recorder stop];
NSError *err = nil;
AVAudioSession *audioSession = [AVAudioSession sharedInstance];
[audioSession setActive:NO error: &err];
if(err){
NSLog(@"recorder: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
self.recorder = nil;
[button setTitle:@"Record" forState:UIControlStateNormal];
[button addTarget:self action:@selector(record:) forControlEvents:UIControlEventTouchUpInside];
}

My apologies here it is reposted not borked! I am not using any buffers that I know of. I am simply using the AVRecorder class and the code defined in the documentation at this page: http://developer.apple.com/IPhone/library/documentation/iPhone/Conceptual/iPhone OSProgrammingGuide/AudioandVideoTechnologies/AudioandVideoTechnologies.html
for playback I used the avTouch example which works perfectly. I jsut need the recording to be able to start and stop. recordWithDuration is not very useful if it has to finish in order to record successfully.
-(IBAction)record:(id)sender
button addTarget:self action:@selector(stopRecording:) forControlEvents:UIControlEventTouchUpInside;
AVAudioSession *audioSession = AVAudioSession sharedInstance;
NSError *err = nil;
audioSession setCategory :AVAudioSessionCategoryRecord error:&err;
if(err){
NSLog(@"audioSession: %@ %d %@", err domain, err code, [err userInfo] description);
return;
audioSession setActive:YES error:&err;
err = nil;
if(err){
NSLog(@"audioSession: %@ %d %@", err domain, err code, [err userInfo] description);
return;
self.recordSetting = [NSDictionary alloc initWithObjectsAndKeys:
NSNumber numberWithFloat: 44100.0, AVSampleRateKey,
NSNumber numberWithInt: kAudioFormatAppleLossless, AVFormatIDKey,
NSNumber numberWithInt: 1, AVNumberOfChannelsKey,
NSNumber numberWithInt: AVAudioQualityMax, AVEncoderAudioQualityKey,
nil];
self.recordSetting = [NSMutableDictionary alloc] init;
[recordSetting setValue:NSNumber numberWithInt:kAudioFormatLinearPCM] forKey:AVFormatIDKey;
[recordSetting setValue:NSNumber numberWithFloat:44100.0] forKey:AVSampleRateKey;
[recordSetting setValue:NSNumber numberWithInt: 2] forKey:AVNumberOfChannelsKey;
[recordSetting setValue :NSNumber numberWithInt:16] forKey:AVLinearPCMBitDepthKey;
[recordSetting setValue :NSNumber numberWithBool:NO] forKey:AVLinearPCMIsBigEndianKey;
[recordSetting setValue :NSNumber numberWithBool:NO] forKey:AVLinearPCMIsFloatKey;
// Create a new dated file
//NSDate *now = NSDate dateWithTimeIntervalSinceNow:0;
//NSString *caldate = now description;
NSNumber *rand1;
rand1 = NSNumber numberWithUnsignedInt:arc4random();
fmod(rand1 floatValue, 1000.0); //random number from 0-1000;
self.soundFilePath = [NSString stringWithFormat:@"%@/%@-%@.caf", DOCUMENTS_FOLDER, @"noodles", rand1] retain;
NSURL *url = NSURL fileURLWithPath:self.soundFilePath;
err = nil;
recorder = [ AVAudioRecorder alloc] initWithURL:url settings:recordSetting error:&err;
if(!recorder){
NSLog(@"recorder: %@ %d %@", err domain, err code, [err userInfo] description);
UIAlertView *alert =
[UIAlertView alloc initWithTitle: @"Warning"
message: err localizedDescription
delegate: nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
alert show;
alert release;
return;
//prepare to record
recorder setDelegate:self;
recorder prepareToRecord;
recorder.meteringEnabled = YES;
BOOL audioHWAvailable = audioSession.inputIsAvailable;
if (! audioHWAvailable) {
UIAlertView *cantRecordAlert =
[UIAlertView alloc initWithTitle: @"Warning"
message: @"Audio input hardware not available"
delegate: nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
cantRecordAlert show;
cantRecordAlert release;
return;
// start recording
recorder recordForDuration:20;
button setTitle:@"Stop Recording" forState:UIControlStateNormal;
//self.button setEnabled:NO;
* (IBAction) stopRecording:(id)sender
recorder stop;
NSError *err = nil;
AVAudioSession *audioSession = AVAudioSession sharedInstance;
audioSession setActive:NO error: &err;
if(err){
NSLog(@"recorder: %@ %d %@", err domain, err code, [err userInfo] description);
self.recorder = nil;
button setTitle:@"Record" forState:UIControlStateNormal;
button addTarget:self action:@selector(record:) forControlEvents:UIControlEventTouchUpInside;

Similar Messages

  • AvAudioRecorder, create corrupted file on random check

    Hello,
    I face issue with AvAudioRecorder, create corrupted file on random check.
    below is complete functionality code.
    -(IBAction)btnRecordClick:(id)sender {
        [PlayingTimer invalidate];
        PlayingTimer = nil;
        if (isPaused==NO) {
            AVAudioSession *audioSession = [AVAudioSession sharedInstance];
            NSError *err = nil;
            [audioSession setCategory :AVAudioSessionCategoryPlayAndRecord error:&err];
            if(err){
                // NSLog(@"audioSession: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
                return;
            [audioSession setActive:YES error:&err];
            err = nil;
            if(err){
                // NSLog(@"audioSession: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
                return;
            //*******Working well with .wav,.caf and .mp4 files *****************
            recordSetting = [[NSMutableDictionary alloc] init];
            //this is for .wav and .caf file
            //this is for .mp4 file for iPhone 3GS/iPhone 4
            [recordSetting setValue: [NSNumber numberWithInt:kAudioFormatMPEG4AAC] forKey:AVFormatIDKey];
            [recordSetting setValue: [NSNumber numberWithFloat:44100.0] forKey:AVSampleRateKey];
            [recordSetting setValue: [NSNumber numberWithInt: 2] forKey:AVNumberOfChannelsKey];
            [recordSetting setValue:[NSNumber numberWithInt:16] forKey:AVLinearPCMBitDepthKey];
            [recordSetting setValue:[NSNumber numberWithBool:NO] forKey:AVLinearPCMIsBigEndianKey];
            [recordSetting setValue:[NSNumber numberWithBool:NO] forKey:AVLinearPCMIsFloatKey];
            self.strMessage = @"";
            self.strMessageType = [NSString stringWithFormat:@"Audio Message"];
            self.strFileName = [NSString stringWithFormat:@"%@.mp4", [_globalmodel stringUniqueID]];
            // NSLog(@"FileName :%@",self.strFileName);
            self.strUniqueRef = [NSString stringWithFormat:@"%@",[_globalmodel stringUniqueID]];
            NSString *soundPath;//=[NSString alloc];
            soundPath = [NSString stringWithFormat:@"%@/%@", DOCUMENTS_FOLDER,self.strFileName] ;
            NSURL *url1 = [NSURL fileURLWithPath:soundPath];
            // NSLog(@"Recording Path:%@",url1);
            err = nil;
            recorder = [[ AVAudioRecorder alloc] initWithURL:url1 settings:recordSetting error:&err];
            if(!recorder){
                // NSLog(@"recorder: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
                UIAlertView *alert =[[UIAlertView alloc] initWithTitle: @"My Easy Media"
                                                               message: @"The Recording format is not supported on your device!"
                                                              delegate: nil
                                                     cancelButtonTitle:@"OK"
                                                     otherButtonTitles:nil];
                [alert show];
                [alert release];
                return;
            //prepare to record
            [recorder setDelegate:self];
            [recorder prepareToRecord];
            recorder.meteringEnabled = YES;
            BOOL audioHWAvailable = audioSession.inputIsAvailable;
            if (! audioHWAvailable) {
                UIAlertView *cantRecordAlert =
                [[UIAlertView alloc] initWithTitle: @"Warning"
                                           message: @"Audio input hardware not available"
                                          delegate: nil
                                 cancelButtonTitle:@"OK"
                                 otherButtonTitles:nil];
                [cantRecordAlert show];
                [cantRecordAlert release];
                return;
            // start recording
            [recorder record];
            _isRecordingStarted = YES;
            // SET TIMER // START TIMER
            timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(EndRecording:)
                                                   userInfo:nil repeats:YES];
            // END TO SETTING TIMER
            timerDisplayRight.hidden = NO;
            timerDisplayLeft.hidden = NO;
            timerDisplayRight.text = [NSString stringWithFormat:@"%02d:%02d", intMimute,-- intSecond];
            timerDisplayLeft.text = [NSString stringWithFormat:@"00:00"];
            progressView.progress = 0.0;
        else {
            isPaused=NO;
            [recorder record];
            _isRecordingStarted = YES;
            [btnReview setEnabled:NO];
            timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(EndRecording:)
                                                   userInfo:nil repeats:YES];
            timerDisplayRight.hidden = NO;
            timerDisplayLeft.hidden = NO;
        timerDisplayRight.text = [NSString stringWithFormat:@"%02d:%02d", intMimute,-- intSecond];
    -(IBAction)btnPauseClick:(id)sender {
        // NSLog(@"Pause Button of ActionSheet Clicked");
        [timer invalidate];
        timer = nil;
        isPaused=YES;
        [recorder pause];
        [btnPause setEnabled:NO];
        [btnRecord setEnabled:YES];
        [btnStop setEnabled:YES];
    -(IBAction)btnStopClick:(id)sender {
        // NSLog(@"Stop Button of ActionSheet Clicked");
        [recorder stop];
        progressView.progress = 1.0;
        // NSLog(@"Total Recording Secomd : %d", totalRecordingSecond);
        finalRecordingSecond = totalRecordingSecond;
        [btnStop setEnabled:NO];
        [btnReview setEnabled:YES];
        [btnRecord setEnabled:YES];
        [btnPause setEnabled:NO];
        timerDisplayRight.text = [NSString stringWithFormat:@"%02d:%02d", (totalRecordingSecond/60), (totalRecordingSecond % 60) ];
        timerDisplayLeft.text = [NSString stringWithFormat:@"00:00"];
        [timer invalidate];
        timer = nil;
        // REINITIALIZE TIMER VARIABLES...
        intMimute =  5;
        intTotalTime = (60 * intMimute);   
        intSecond = intTotalTime / intMimute;
        intMimute--;       
        // REINITIALIZE TIMER VARIABLES...       
        _isRecordingStarted = NO;
    Please help.
    once we start recored and after near about 10 to 15 second, tap on stop.
    It create file with length 24kb, which is not occured all time, but randomly found file is courrupted.

    I've been having the same problem for over a week for the Yankees @ Red Sox MLB's games of the year. I've reported the problem to apple by logging into my account in iTunes > purchase history > report problem. I know of several other people who have the same problems.

  • Computer shuts on and off some corrupted files - no virues now

    Listed below are some of the errors I found on event log in the laptop:
    I have a Qosimo 8 megs of memory, windows 7 64 bit. Running AVAST 7.0 antivirus and Malwarebytes - both paid subscriptions. I think the model number is 830 530 I bought in 2009.
    The shutdown problem has
    been happening on and off for the last six months. I had two major instances of trojans taking over my machine and it caused constant shutdowns. AVAST worked with me on one and they had me use malwarebytes and spybot and hijack this. They took over my computer to get it up and running properly, but this new round of errors a trojan was found in the registry key and the startuptoolbar. Two nights ago I had another shut down several times and after running malwarebytes and antivirus I could find no errors so I’m leaning toward corrupted files? Is there anyway to fix these files without having to reformat the hard drive?
    I did run a computer repair and a computer memory repair tonight using F8 and no problems were found by the computer. I’m not sure what to do with these errors in event viewer.. I get the toshiba error
    quite often and it madely stops me from going online with my internet connection, and I had downloaded a newer version but same problem – I use windows repair in network and the error is always resetting the toshiba network IP. I just put a note into toshiba on that problem.
    I also use microsoft silverlight for my fenderfuse application which needs that software operate properly. I’m not sure exactly what to do with that Custom dynamic link libraries are being loaded for every application. It states to check libraries – but what am I checking for? I do not have a lot of programs on the laptop but not sure what to look for in library?
    Windows logs under Application
    The description for Event ID 0 from source Ipod service cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event
    The description for Event ID 0 from source SignInAssistant cannot be found. Either the component
    That raises this event is not installed on your computer or the installation is corrupted. You can
    Install or repair the component on the local computer.
    If the event originated on another computer, the information had to be saved with the event. The following information was included with the event:
    WLD InitializationTimerQueue. QueueWorkItem Started
    The win logon notification subscriber <sessionEnv> was unavailable to handle anotification event.
    The description for Event ID0 from source IViRegMgr cannot be found.
    Same for AdobeARMservice
    Same for User Profile Service
    Critical events
    System has rebooted without cleanly shutting down first. This error could be caused if the system stopped responding, rashed or lost power inexpertly.
    Administrative
    Events
    Unloading the performance counter strings for service WmiApRpt failed. The first DWORD n the data section contains the error code.
    The performance strings in the performance registry value is corrupted when process Performance extension counter provider. The BaseIndex value from the Performance Registry is the first DWORD in the Data section, LastCounter value is the second DWORD in the Data Section, and LastHelp value is the third DWORD in the data section.
    Several warnings on Toshiba Servicer Station. Error checking dependency (1df917db-3056-41a-bbac-0489a6b63d4dj: Unable to retrieve registry value.
    Toshiba Service Station - skipping empty element (tsu:setup_args) (several errors on this one)
    ( I also installed the latest Toshiba service station and it did not fix the error problems in events log.  When I did a restore it was before softare update this was added so now my computer is working properly with windows on connecting to the internet wireless.)
    Unloading the performance counter strings for service WmiApRpl (wmiaprpl) failed. The first Dword in the Data section contains the error code.
    Failed extract of third-party root list from auto update cab at: www.download.windowsupdate.com/msdownload/udate/v3/static/trustedr/en/authrooststi.cab> with error: A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file.
    Biggie? Custom dynamic link libraries are being loaded for every application. The system administration should review the list of libraries to ensure they are related to trusted applications.
    Audit events have been dropped by the transport. 0
    The system has rebooted without cleanly shutting down first. Kernel-power - this has happened several times.
    The performance strings in the Performance registry value is corrupted when process Performance extension counter provided. The BaseIndex value from the Performance registry is the first DWORD in the data section, last counter value is the second DWORD in the Data section, and LastHelp value is the third DWORD in the data section.
    Sometimes my computer shuts down often on its own and I find a Trojan - other times it shuts down often during a start up and I find no viruses as was the case yesterday.  Today I did not get on the internet and the computer worked fine.  
     I guess I need to know if there is a way to reinstall the corrupted files without having to go back to the default settings when I got the computer.  Does toshiba have a windows repair disc that works better then what I did with using F8 and having a system repair and memory check done that found no errors?  I also installed the latest Toshiba service station and it did not fix the error problems in events log.  When I did a restore it was before this was added so now my computer is working properly with windows on connecting to the internet wireless.
    Malwarebytes said that by looking at these event viewer logs that it does not appear that I have a virus now but I do have corrupted files and can toshiba help me in getting them fixed.  I really hate to do a complete reformat.
    Thanks
    Rose
    Solved!
    Go to Solution.

    Event Viewer  5/14 events
    Window logs
    Application –
    Information - Software protection service has stopped
    Error – Unloading the performance counter strings for service wmiaprpl failed.  The first Dword in the data section contains the error code
    The performance strings in the performance registry value is corrupted when process Performance ext
    The winlogon notification subscriber <SessionEnv> was unavailable tohandle a notification events
    Error – Your computer was not assigned an address from the network (by the DHCP) Service) for the Network Card with network address0x701A043A07AE.  Your computer willcontinue to try and obtain an address on its own from the network address (DHCP ) server.
    Failed extract of third-party root list from auto update cab   CAPI2
    Warning – customer dynamic link libraries are being loaded for every application.  The system Administrator should review the list of libraries to ensure they are related to Trusted Aplications.
    The performance strings in the Performance registry value is corrupted when process Performance extension counter provider.  The baseindex value from the performance registry is the first Dword in the data section, etc. – this error shows up often for today 5/14  (on line the aqnswer to this error is  -
     Performance counters are collected and used by services and applications. If they are installed incorrectly or with improper permissions, performance counters cannot be loaded, and services or applications cannot collect or interpret the data.
    I noticed that software protection stopped and then it showed software protection working.  I did not get any critical stop errors like I did before but that is because I don’t have any Trojans or viruses.  I ran a full scan with both Avast and Malwarebytes yesterday and no problems.
    Under system for today I see
    The multimedia Class Scheduler Service entered the stopped state.
    The application experienced service entered the stopped state
    Under application Window logs for today
    Fault bucket 130885241, type 5 Event Name PNDriverimportError  response: not available
    This is a warning error:
    Windows detected your registry file is still in use by other applications or services .  The file will be unloaded now.  The applicationsor services that your registry file may not function properly afterwards.
    10  user registry handles leaked from \Registry\User\(this section covered several registry problems I sent the note online and this is what they state:  Cause this behavior occurs because the windows operating system automatically closes any registry handle to a user profie that is left open in an application.  User Action – this is a warning event the application that is listed in the event detail is leaving the registry hand open, and it should be investigated.
    I don't know how serious this probems are - I didn't like seeing the software security being stopped.  But then it started up.  I have copied everything personal on this laptop so I am ready to reformat if needed.  
    I still have the problem about IE not opening links unless I right button click to open it.  I also had to make a separate ID to run Fender Fuse software as this computer was not recognizing the USB slot where I connect the amp to the laptop.  Fender had me set up another id with minimum items and then I was able to connect to the amp and make changes.
    Rose

  • SunOne 6.0sp5 corrupting files

    Hello,
    I was just brought into a problem today and am at somewhat of a loss. I am the system administrator, not a developer on this issue. The development team seem to think this is an OS issue. I think it has something to do with Sun One. Maybe some kernel tuning at the OS level, but Solaris is not corrupting their files.
    System Information:
    v240
    2x 1280 MHz US-IIIi processors
    2GB Ram
    Solaris 8
    SunOne 6.0sp5
    Problem:
    On occasion, about weekly, something will happen and a number of files will end up with 0 byte lengths. it is the same set of files every time. The files are mostly images and js files and applets in 6 specific directories. All files are files served up by Sun One.
    Some problem indicators:
    Multiple connection related errors:
    [14/May/2007:18:46:15] failure (13853): Connection queue full, closing socket
    [15/May/2007:08:44:39] failure ( 3420): Error accepting connection -5928, oserr=130 (Connect aborted)
    I think these just indicate heavy load. I should be able to alleviate these by changing the following in magnus.conf
    MaxKeepAliveConnections [higher number]
    ConnQueueSize [higher number]
    Is this correct? Could it cause more problems?
    Then this error. It looks like it is causing a Sun One crash every time it happens:
    [18/May/2007:11:01:36] config ( 3420): SIGSEGV 11 segmentation violation
    [18/May/2007:11:01:36] config ( 3420):     si_signo [11]: SEGV
    [18/May/2007:11:01:36] config ( 3420):     si_errno [0]:
    [18/May/2007:11:01:36] config ( 3420):     si_code [1]: SEGV_MAPERR [addr: 0x11]
    From what I can find this looks like a Java related error. I don't know if it is related to our code or to SunOne itself. When this causes the crash could it be corrupting my files if SunOne has them open at the time?
    My main concern is the file corruption. Unless my big problem load related, I really don't care about the load as we have a second server being turned up this week to share some of the load. Does anyone have any thoughts or recommendations on my issue? Do I need to provide more information?
    Thanks for your help,
    Michael

    The connection queue full error can be caused by excessive load, but it's most often caused by a web application hanging. Once all the server's threads are stuck inside such a web application, the connection queue will begin to back up until it overflows. When it overflows, that message will be logged and new connections will be closed.
    The connect aborted error indicates a client initiated a connection then aborted it. This is often caused by "rude" load balancers that uses aborted connections to ping servers. It's also normal for it to occur in low amounts on the open Internet.
    The SIGSEGV is logged by the server's JVM support code, but it doesn't necessarily indicate a problem in Java. However, it does indicate a server crash. That should be investigated. If you have a support contract, Sun should be able to help. If you don't, you can start by looking at the core file.
    None of these things should cause Sun ONE Web Server to truncate files in the document root. In fact, the server opens such files as read-only, so it's incapable of modifying them.

  • Can iMac not waking from sleep be caused be a corrupt file

    I have had my 27" iMac from July of 2011 (running Montain Lion, 8 GB RAM, 2TB hardrive, 3.4 GHz,Intel i7) for over a year and a half and ever since I bought it, it has had a problem waking from sleep.  I can hear the computer running, but when I click the mouse, keyboard, or power button, it stays asleep and I am forced to do a hard shut down.  Apple has been trying to fix the issue, but to no success.  They have replaced the hard drive, logic board, usb ports, RAM, mouse and keyboard, but it still happens.  They finally threw in the towel and are replacing the machine.  They offered to transfer all of our files (jpgs, mp3s, docs, videos, etc), but one thought occurred to me... what if the sleep issue is caused by a corrupt file?  I highly doubt that is the case, but wonder if any of the experts out here would know better than I.
    If we didin't have the data transfered, we would just keep it on an external hard drive instead.  But, I would assume that it wouldn't matter if the files were on internal vs. external because either way, the computer would access the files.  That being the case, if the sleep issue was caused by a corrupt file, the computer would still access it on the external and the sleep issue would resurface.
    So, 2 questions:
    Can a corrupt file cause the sleep issue?
    If it is true that a corrupt file can cause the sleep issue, would it matter if the corrupt file was accessed from an external drive vs. internal drive?
    Thanks so much!
    Chris

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether your problem is caused by third-party system modifications that load automatically at startup or login. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click  Log in.
    *Note: If FileVault is enabled under OS X 10.7 or later, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode. Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Corrupted file unable to remove from trash because it is running.  Unable to shut it down.

    I had recently converted some video tapes into dvds as well as disks that I could download onto the computer.  I did not realize that I installed a dvd into the drive instead of the downloadable disk when I asked the computer to download the files.  Instead of not performing the task, the computer partially download the dvd.  Now I have this file on my desktop and when I put it into trash I can't remove it from trash because it is running.  In other words there is a corrupted file that I have no way of stopping or deleting.   Any suggestions?  I could leave this file alone but since it is running I'm not sure how much memory it is diverting.

    What is the name of the file? If you open Activity Monitor, set to All Processes, then is it displayed in the Name list?
    Restarting kills all running processes. If this is not a system file, then you have it installed somewhere that is launching it automatically upon startup. You should look in your /Home/Library/LaunchAgents/ folder or your /Library/LaunchAgents/ or /Library/LaunchDaemons/ folder for a file related to this one. Until you kill that one you will not be able to delete the one are having trouble deleting.
    Exposing the /Home/Library/ Folder
    Pick one of the following methods:
    A. This method will make the folder visible permanently. Open the Terminal application in your Utilities folder and paste the following at the command prompt:
    chflags nohidden ~/Library
    Press RETURN.
    B. Click on the Desktop, press the OPTION (⌥) button, select Library from the Finder's Go menu.
    C. Select Go To Folder from the Finder's Go menu. Paste the following in the path field:
    ~/Library
    Press the Go button.

  • What to do if Windows displays an "iTunes.exe - Corrupt File" message

    Greetings fellow Podders, Resident Furball here...
    It is about time that I produced a single post for all the chkdsk issues that we've been discussing since November 2004. The Apple KB article seems to cover the major points succinctly, but we need to address the more serious variations and flavours of the problem.
    <hr>
    What to do if Windows displays an "iTunes.exe - Corrupt File" message
    Many users are coming across this seemingly distressing error message in Windows when connecting their iPods. As described in Apple KB Article 300554, the message reads:
    iTunes: iTunes.exe - Corrupt File
    The file or directory \iPod_Control\iTunes\????????? is corrupt and unreadable. Please run the Chkdsk utility.
    and the ????????? can be anything (eg. sysinfo, Temp1, DeviceInfo etc.).
    <hr>
    Don't panic!
    If you do see this, don't worry, and don't panic. Contrary to what the error message reads, this issue actually has very little to do with iTunes. The iPod_Control is the key to this - because this folder doesn't even exist in iTunes... it's on the iPod!
    ...so! Installing and uninstalling iTunes really won't do you much good at all... it's the iPod that needs attention.
    <hr>
    What's causing this error?
    To be honest, we don't know. We saw a massive number of reports of this issue back in November 2004, because iPod Updater 2004-11-15 contained a firmware bug that corrupted iPod system files when the Pod entered Deep Sleep.
    But this firmware bug was corrected in iPod Updater 2005-06-26.
    Of late, we have seen a resurgence in chkdsk errors on Discussions. Some of these are caused by the old buggy firmware that people still have. Some of the errors are more serious and are hardware and operating system-related. But we have still to pin down the exact cause of this error.
    <hr>
    Okay, so what do I do if I see this error?
    In short, as Apple have recommended in their KB article:
    Restore your iPod, using the latest iPod Updater.
    Follow the instructions carefully. Ensure that you download the iPod Updater. Ensure that you install it, and then ensure that you run it with the iPod connected and follow the prompts to the letter.
    The broad majority of the errors are painlessly fixed this way. Of course, it does mean that your iPod will be wiped, so make sure that you have your music/data backed up, and/or present in iTunes so you can resynchronise it when you have finished Restoring.
    <hr>
    Okay, I've Restored, but the error is still coming up
    Are you sure you've Restored? Quite a number of folks are assuming that just downloading the iPod Updater is enough. It's not. And neither is downloading iPod Updater, and installing it on your computer. It needs to be implemented on the iPod, according to the iPod Updater instructions.
    Okay, so if you have Restored your iPod, and you are still getting this error, then you have a variety of options available.
    Chkdsk errors that are not fixed with a Restore are most likely down to two things:
    1) A physical issue on the iPod itself
    or
    2) An issue on the computer's operating system
    Here's where it gets woolly. There are a variety of things you could try...
    Format the iPod in Windows
    This would usually have the same effect as a Restore, but a deep-level format in Windows is something that Apple have recommended in the past, as a last resort to completely wipe the iPod before performing a Restore with iPod Updater. This process wipes the iPod.
    To do this:
    1) Enable Disk Mode on the iPod. You can do this either in iTunes (which is best), or manually on the iPod itself.
    2) Open My Computer and locate your iPod
    3) Right-click the iPod and select Format
    4) Leave the parameters set at their defaults, and ensure Quick Format is unchecked
    5) Hit Format
    6) Then Restore your iPod as normal.
    Run the Chkdsk utility
    You could run the chkdsk utility on your iPod. But Restoring your iPod has the same effect as running chkdsk. Chkdsk does not wipe your iPod.
    1) Enable Disk Mode as above
    2) Determine the drive letter of your iPod from My Computer
    3) Go to Start, Run
    4) Type cmd. Hit Enter to take you to the Command Prompt.
    5) Type chkdsk /f X:, where X is the drive letter of your iPod. Hit Enter, and any corrupt files are found and corrected.
    Run Windows ScanDisk
    ScanDisk is the Windows version of Chkdsk. It does not wipe your iPod.
    1) Enable Disk Mode
    2) Right-click the iPod in My Computer, select Properties
    3) Select Tools
    4) Select the option to scan the disk for errors
    Try changing the Drive Letter of the iPod
    Sometimes Windows confuses the drive letters, and this can cause the iPod to be adversely affected. Try the instructions detailed in Apple KB Article 93499 to change the drive letter of the iPod. This does not wipe your iPod.
    Try changing Hardware Policies for the iPod
    The Hardware Policies in Windows have been known to affect the way in which the iPod connects, synchronises, and disconnects. This does not wipe your iPod.
    1) Enable Disk Mode so the iPod appears in My Computer
    2) Right-click the iPod in My Computer
    3) Select Properties
    4) Select Hardware Policies
    5) Select Optimize for Performance (instead of Optimize for Removal)
    6) Restart your computer.
    Contact Apple for a replacement iPod
    Some chkdsk issues have been caused by faulty hardware. As a last resort, contact Apple Support by phone to report your issue, and/or request an iPod Service.
    If you explain that you have followed all these steps, you should have a strong case for obtaining a replacement iPod.
    <hr>
    Thanks!
    Thank you to everyone for their continued support, kindness and excellent troubleshooting skills here on Discussions. There are countless people that I am deeply grateful to for their assistance in handling this issue. Rest assured folks, you have made me the Discussions Furball that I am today.
    Happy Podding folks!
    Kind regards,
    Gopha.
    <hr>
    References
    1) The Original Corrupt iPod File thread from 2004. (Credit: AbbyM)
    2) Our Summary and Index threads to consolidate the chkdsk issue at the height of its reign of terror.
    3) Chkdsk is fixed by iPod Updater 2005-06-26.
    4) Different flavours of chkdsk.
    5) Happy Birthday chkdsk!.
    6) Apple Level 2 Technical Support officially close the chkdsk casefile. (Credit: Apple Level 2)
    7) Chkdsk can be fixed by changing the drive letter of the iPod. (Credit: daisysnroses, jchiu8)
    8) Chkdsk can be fixed by changing the hardware policy. (Credit: Bruce Finn)
    9) Chkdsk caused by faulty hardware. (Credit: Kiwi_Bloke)

    iPod Updater 2006-03-23 has been released
    iPod Updater 2006-03-23 includes iPod Software 1.1.1 for the new iPod and new iPod Software 1.1.1 for iPod nano.
    iPod Updater 2006-03-23 contains the same software versions as iPod Updater 2006-01-10 for all other iPod models.
    What's new in iPod Updater 2006-03-23:
    - Volume limit
    - Bug fixes
    I have been trying to ascertain from Apple Support Level 2 as to whether the latest iPod firmware improves or provides better resolution for the chkdsk issue. If anyone has been using iPod Updater 2006-03-23 to resolve their chkdsk woes, feel free to post in here just to say how things worked out for you...
    Kind regards,
    Gopha.

  • Automator (or anything) to mass transfer one file at a time, or skip over corrupted files?

    I'm currently recovering files (using Disk Warrior) from a failing hard drive, but when OS X hits a corrupted file ("Error -36"), it cancels the entire transfer, rather than skipping over it.  Basically, I have to transfer one file at a time, which, on a 2TB hard drive, is going to be insanely tedious, so I was wondering if there's an automation that can transfer one file at a time, or some other way to transfer files that won't stop mid-process?

    in my experience, people who know enough unix to understand what you suggested rarely ask questions about automator.  Auto-mechanics don't generally need advice on choosing an auto repair shop.
    Applescript is probably the easiest way to go with this.  I don't know what the file structure of the recovered documents is, but in general you'd run something like this:
    set sourceFolderPath to "/path/to/recovered items folder/"
    set destinationFolderPath to "/path/to/destination folder/"
    tell application "System Events"
              set theFiles to files of folder sourceFolderPath
              repeat with thisFile in theFiles
                        try
      -- move files one-by-one in an error block
                                  move thisFile to folder sourceFolderPath
                        on error
      -- you can put something here to log the skipped files or display a dialog, if you like
                        end try
              end repeat
    end tell

  • Corrupt file error while writting a file in compress mode

    Hello,
    I have a scenario where i am writting data in a file in appending mode with filter 'compress' addition using open dataset, on Al11 for the first set of records it works fine but if this file is accessed again for writting data in next select statement ( its between select endselect),the file is getting corrupted, if i try to open this file corrupt file error come. can someone help.
    Thanks and Regards,
    Gunjan

    Hi Gunjan,
    Unfortunately, you can't do in that way. The behaviour of that OPEN and FILTER 'compress' clause is to create a compacted file, to be read later, but it can be appended... all your writes go to a pipe and when you close the file this is sent to 'compress' program or other filter and than a compacted file is created.
    You can't go back and start inserting again after close it.
    Follow documentation:
    http://help.sap.com/abapdocu_70/en/ABAPOPEN_DATASET_OS_ADDITION.htm
    The addition FILTER must not be used together with the addition AT POSITION or for the access type FOR UPDATE.
    Regards, Fernando Da Ró

  • Corrupted files in Bridge

    I have recently started migrating image files (Camera raw + JPGs) from older external drives to new drives (same brand - G-drive) I have never had any issues with these drives until they were way past their prime. I just viewed folders in bridge and saw image thumbnails BECOME CORRUPTED as I scrolled through the folders. I opened the files, and they were corrupted. (no prompt, just gargbage). I am assuming there was either a problem with the new drive, or with the transfer process. I am posting here because I had similar issues a few years back with raw files from an older camera, and a previous version of Bridge. After multiple updates, Bridge no longer corrupted raw files from that camera. I'm using Bridge 5.0.2.4 (will update to new version today).
    The corrupted files were (drag) copied from multiple external hard drives.
    I want to know if anyone is encountering similar corruptions? These are Canon Raw files from a Canon 5D (1st gen)
    MacBook pro "15" late 2011, OS 10.7.5 - 8Gb Dram
    These are the first corrupted files I have encountered using this MacBook. It has been very stable. I did however, find hard drives going into Sleep Mode during long tranfers, even when I had set prefs NOT to let Computer OR Hard Drives sleep.

    What type of RAW files are we talking about, NEF,CR2 or other?
    Bridge is just a flle browser, and RAW files are opened and edited in Adobe Camera Raw.  Do you just get a thumbnail, but it willl not open in ACR?
    Does ACR work with other RAW images that have not been corrupted.
    Do you have a backup (highly recommended) of these images somewhere?  Should be on seperate physical drive or on a DVD.

  • Itune.exe -Corrupt File message

    I have an Ipod Nano which has been working fine for a long while.
    Today for no apparent reason, I got I got the following error message when I attached the ipod to the usb wire:
    "itune.exe-corrupt file
    ipod_control/iTune/iTunesPrefs is corrupt and unreadable. Please run the Chkdsk utility."
    In addition, I also get the Ipod Set Assistant dialog box each time I plug in the ipod as if it were the very first time plugging it in.
    I tried rebooting the computer (several times) and I also tried reinstalling the itunes software cd and still get the same message and same problem.
    Any ideas on how I can solve this problem. It is pretty upsetting

    See this.
    What to do if Windows displays an "itunes.exe - Corrupt File" message.

  • Itune.exe-Corrupt File

    I have an Ipod Nano which has been working fine for a long while.
    Today for no apparent reason, I got I got the following error message when I attached the ipod to the usb wire:
    "itune.exe-corrupt file
    ipod_control/iTune/iTunesPrefs is corrupt and unreadable. Please run the Chkdsk utility."
    In addition, I also get the Ipod Set Assistant dialog box each time I plug in the ipod as if it were the very first time plugging it in.
    I tried rebooting the computer (several times) and I also tried reinstalling the itunes software cd and still get the same message and same problem.
    Any ideas on how I can solve this problem. It is pretty upsetting

    I too just today got the same corrupt message. I have done everything you have done but it hasn't worked either. I'm very frustrated with this device. Ready to throw it out the window!!!! Hope you get an answer soon so we both can get back to listening to music.

  • Corrupt files and RAM upgrade

    I have been having trouble with some corrupted Files in Aperture and after reading some discussion groups I was led to beIieve it might be a hardware problem and not just a software bug-some people experiencing similar problems traced it back to bad RAM. I performed a Hardware test w/ the Mac OS start-up disc. The results indicated this error code:
    **Error*code***Error*code**2MEM/104/4:DIMM2/J13
    Can anyone help me here? Does this indicate there's a problem w/ the RAM in my DIMM2?
    I'm running a Dual 2 GHz PowerPC G5, OS 10.4.9. Quite a while ago I added 2 1GB RAM modules tro complement the original 512.
    Thanks-
    Bob
    G5   Mac OS X (10.4.9)  

    Where and what did you buy exactly? and yes, you might want to remove the memory, zap the pram/nvram while doing so, rerun Apple Hardware Test. Contact Apple Care and the RAM vendor.
    Sometimes two different sets of RAM won't get along, sometimes it will after moving or swapping RAM slots. It could be the chips have slightly off timing or voltage.
    Obviously no one wants to run with just 512MB, and it was okay until recently. It would not be the first time that an OS X update also makes better and more use of available RAM to improve performance, and have trouble (soft memory errors or worse, k/p) with "marginal RAM" if I fully understand the MacInTouch: Bad RAM Report.
    Try without the 2 x 1GB, try with JUST that (in the first pair of slots) also.
    And run AHT and Memtest when you install RAM or make changes.

  • How to find corrupted files

    With my 2 yr old macbook, I cannot update my recently purchased iphone 4 when an ipdate is available. I get message: "...device isn't eligble for requested rebuild." I have worked with Apple store Genius bar staff 4 times with no sucess.  Latest attempt was to erase HD, reinstall OS X, and only reinstall itunesin orde to test the update feature.  In this scenario, with only itunes on the macbook, the update is successful.  However, after  I drag and dropped many, but not all, of my programs and files from the saved data on external HD back onto the macbook, and tried an update on a different iphone 4 (in our family plan), same problem.  So I guess somewhere in what I transferred back onto  the macbook is a bad file.  I suppose I could go through the tedious process of transferring one program/file at a time onto the macbook, then trying the update again, but I can't do an update after each transfer because there is no new update to download, as they come out only every so often.
    Is there a program that can scan the external HD to find bad/corrupted files?  I have Spring cleaning and Drive Genius, neither of which seem to have the features to do such a scan (they do have disk scan, which I have run, along with Apple's Tech Tool, and all such scan operations have show no problems)
    (to complicate this, this apparent bad file on this macbook likely came from my white intel based iMac.  I first discovered this "updating of the iphone 4 problem" on the imac.  When we bought the macbook, we bought one to one and had the Apple store do a complete transfer from the imac to the macbook in its first time set up.  I purchased the iphone 4 in Sep 2010 and first tried an update in Nov 2010, which failed.  I have been back to the Apple Genius bar 5 times since then with this problem.  During one of those visits, Genius suggested trying to do just the update of my iphone 4 from the macbook, and that is when we discovered the macbook had the same problem.  So this bad file likely was transferred to the macbook in that initial set up transfer.  Furthermore, this macbook is still under AppleCare, yet that does not seem to mean anything to the Genius Bar.  Tomorrow I will call applecare about this, but in the meantime, if anyone out there has a clue, I'm much obliged.  

    I didn't know of this console feature.  I see Mozy.backup doing something.  I had tried Mozy on this imac a long time ago and stopped using it, and I thought I had deleted it.  When I just now searched for mozy, all I get is .pdf file.  Do you think this could be the problem and how would I get totally rid of mozy files?  Thanks
    7/18/11 3:19:55 PM          com.apple.launchd[1]          (com.mozy.backup[1280]) Exited with exit code: 1
    7/18/11 3:19:55 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:20:05 PM          com.apple.launchd[1]          (com.mozy.backup[1282]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:20:05 PM          com.apple.launchd[1]          (com.mozy.backup[1282]) Exited with exit code: 1
    7/18/11 3:20:05 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:20:14 PM          PTPCamera[1283]          __CFServiceControllerBeginPBSLoadForLocalizations timed out while talking to pbs
    7/18/11 3:20:15 PM          com.apple.launchd[1]          (com.mozy.backup[1285]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:20:15 PM          com.apple.launchd[1]          (com.mozy.backup[1285]) Exited with exit code: 1
    7/18/11 3:20:15 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:20:25 PM          com.apple.launchd[1]          (com.mozy.backup[1288]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:20:25 PM          com.apple.launchd[1]          (com.mozy.backup[1288]) Exited with exit code: 1
    7/18/11 3:20:25 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:20:35 PM          com.apple.launchd[1]          (com.mozy.backup[1289]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:20:35 PM          com.apple.launchd[1]          (com.mozy.backup[1289]) Exited with exit code: 1
    7/18/11 3:20:35 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:20:45 PM          com.apple.launchd[1]          (com.mozy.backup[1291]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:20:45 PM          com.apple.launchd[1]          (com.mozy.backup[1291]) Exited with exit code: 1
    7/18/11 3:20:45 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:20:54 PM          AppleMobileBackup[1292]          WARNING: Backing up b3c43296604eb2da4d20730cb88e6507ff321157
    7/18/11 3:20:54 PM          [0x0-0x44044].com.apple.iTunes[1206]          2011-07-18 15:20:54.579 AppleMobileBackup[1292:903] WARNING: Backing up b3c43296604eb2da4d20730cb88e6507ff321157
    7/18/11 3:20:55 PM          com.apple.launchd[1]          (com.mozy.backup[1293]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:20:55 PM          com.apple.launchd[1]          (com.mozy.backup[1293]) Exited with exit code: 1
    7/18/11 3:20:55 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:21:05 PM          com.apple.launchd[1]          (com.mozy.backup[1296]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:21:05 PM          com.apple.launchd[1]          (com.mozy.backup[1296]) Exited with exit code: 1
    7/18/11 3:21:05 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:21:15 PM          com.apple.launchd[1]          (com.mozy.backup[1297]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:21:15 PM          com.apple.launchd[1]          (com.mozy.backup[1297]) Exited with exit code: 1
    7/18/11 3:21:15 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:21:25 PM          com.apple.launchd[1]          (com.mozy.backup[1298]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:21:25 PM          com.apple.launchd[1]          (com.mozy.backup[1298]) Exited with exit code: 1
    7/18/11 3:21:25 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:21:35 PM          com.apple.launchd[1]          (com.mozy.backup[1299]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:21:35 PM          com.apple.launchd[1]          (com.mozy.backup[1299]) Exited with exit code: 1
    7/18/11 3:21:35 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:21:45 PM          com.apple.launchd[1]          (com.mozy.backup[1305]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:21:45 PM          com.apple.launchd[1]          (com.mozy.backup[1305]) Exited with exit code: 1
    7/18/11 3:21:45 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:21:55 PM          com.apple.launchd[1]          (com.mozy.backup[1306]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:21:55 PM          com.apple.launchd[1]          (com.mozy.backup[1306]) Exited with exit code: 1
    7/18/11 3:21:55 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:22:05 PM          com.apple.launchd[1]          (com.mozy.backup[1309]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:22:05 PM          com.apple.launchd[1]          (com.mozy.backup[1309]) Exited with exit code: 1
    7/18/11 3:22:05 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:22:08 PM          Finder[220]          __CFServiceControllerBeginPBSLoadForLocalizations timed out while talking to pbs
    7/18/11 3:22:16 PM          com.apple.launchd[1]          (com.mozy.backup[1310]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:22:16 PM          com.apple.launchd[1]          (com.mozy.backup[1310]) Exited with exit code: 1
    7/18/11 3:22:16 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:22:19 PM          Finder[220]          __CFServiceControllerBeginPBSLoadForLocalizations timed out while talking to pbs
    7/18/11 3:22:26 PM          com.apple.launchd[1]          (com.mozy.backup[1311]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:22:26 PM          com.apple.launchd[1]          (com.mozy.backup[1311]) Exited with exit code: 1
    7/18/11 3:22:26 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:22:36 PM          com.apple.launchd[1]          (com.mozy.backup[1315]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:22:36 PM          com.apple.launchd[1]          (com.mozy.backup[1315]) Exited with exit code: 1
    7/18/11 3:22:36 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:22:46 PM          com.apple.launchd[1]          (com.mozy.backup[1318]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:22:46 PM          com.apple.launchd[1]          (com.mozy.backup[1318]) Exited with exit code: 1
    7/18/11 3:22:46 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:22:56 PM          com.apple.launchd[1]          (com.mozy.backup[1320]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:22:56 PM          com.apple.launchd[1]          (com.mozy.backup[1320]) Exited with exit code: 1
    7/18/11 3:22:56 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:23:06 PM          com.apple.launchd[1]          (com.mozy.backup[1325]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:23:06 PM          com.apple.launchd[1]          (com.mozy.backup[1325]) Exited with exit code: 1
    7/18/11 3:23:06 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:23:16 PM          com.apple.launchd[1]          (com.mozy.backup[1327]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:23:16 PM          com.apple.launchd[1]          (com.mozy.backup[1327]) Exited with exit code: 1
    7/18/11 3:23:16 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:23:26 PM          com.apple.launchd[1]          (com.mozy.backup[1328]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:23:26 PM          com.apple.launchd[1]          (com.mozy.backup[1328]) Exited with exit code: 1
    7/18/11 3:23:26 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:23:36 PM          com.apple.launchd[1]          (com.mozy.backup[1330]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:23:36 PM          com.apple.launchd[1]          (com.mozy.backup[1330]) Exited with exit code: 1
    7/18/11 3:23:36 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:23:46 PM          com.apple.launchd[1]          (com.mozy.backup[1331]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:23:46 PM          com.apple.launchd[1]          (com.mozy.backup[1331]) Exited with exit code: 1
    7/18/11 3:23:46 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:23:56 PM          com.apple.launchd[1]          (com.mozy.backup[1332]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:23:56 PM          com.apple.launchd[1]          (com.mozy.backup[1332]) Exited with exit code: 1
    7/18/11 3:23:56 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:24:06 PM          com.apple.launchd[1]          (com.mozy.backup[1335]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:24:06 PM          com.apple.launchd[1]          (com.mozy.backup[1335]) Exited with exit code: 1
    7/18/11 3:24:06 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:24:16 PM          com.apple.launchd[1]          (com.mozy.backup[1336]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:24:16 PM          com.apple.launchd[1]          (com.mozy.backup[1336]) Exited with exit code: 1
    7/18/11 3:24:16 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:24:26 PM          com.apple.launchd[1]          (com.mozy.backup[1338]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:24:26 PM          com.apple.launchd[1]          (com.mozy.backup[1338]) Exited with exit code: 1
    7/18/11 3:24:26 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    7/18/11 3:24:36 PM          com.apple.launchd[1]          (com.mozy.backup[1339]) posix_spawn("/Applications/MozyHome.app/Contents/Resources/MozyHomeBackup", ...): No such file or directory
    7/18/11 3:24:36 PM          com.apple.launchd[1]          (com.mozy.backup[1339]) Exited with exit code: 1
    7/18/11 3:24:36 PM          com.apple.launchd[1]          (com.mozy.backup) Throttling respawn: Will start in 10 seconds
    screenshot too:
    file:///Users/imac/Desktop/Screen%20shot%202011-07-18%20at%203.21.36%20PM.png
    file:///Users/imac/Desktop/Screen%20shot%202011-07-18%20at%203.21.36%20PM.png

  • SOLUTION for "corrupt file/directory" unable to install FLASH

    How many of you have run into trouble trying to install or update Flash Player and got the message about a corrupt file/folder at "C:/windows/system32/macromedia/flash"?  If you are like me, when you got it you first tried to install again.  Didn't work.  Then you went thru the troubleshooting steps listed online (i.e.  uninstall, manually install, run Flash uninstall tool, etc.).  Nothing worked, right?  Yeah me too!
    Then you got really mad and tried to delete that nasty "Flash" folder/directory.  And like me you found out that the system won't let you.  Like me, you probably wasted some time trying to bootstrap the file permissions to allow you to delete it, and, unless your one of Microsoft's senior techs and know the mythical secret "God Level" access permission code, you too failed!
    Then brilliance struck (which happens about as often as that second lightning visit!)!  Here is the solution and it's rediculously simple:  rename the file!! 
    Doesn't matter to what, just change it and ignore it;  so will the Flash Player installer!  Go download and install the player and it will recreate that directory all nice and shiny and new and, most importantly, UN-CORRUPTED! 
    I thank you!
    Olde Greywoolf

    Adobe stopped supporting Google, so try with older version of flash and install it manually
    *http://forums.adobe.com/thread/1061194

Maybe you are looking for

  • Error Message on ITunes (New PC is using Vista... Yuck)

    Has anyone seen this message using iTunes 7.1.1.5 on a Windows Vista machine? "The iTunes library cannot be saved. You do not have enough access privilegesfor this operation". I am logged in as administrator and just installed the latest iTunes downl

  • Unable to delete Transport Request which contain locked objects

    Hi all, I need to delete  some unusable transport requests but as they contain locked objects, it's not possible to delete them. Release operation is just allowed. After releasing these transport requests, I can not find them any more in queue. Pleas

  • Ipod (click wheel) Not Functioning Right

    Ok hey guys im new here, but this isnt the first time i had a problem with my ipod, but i was always had a warranty but Best Buy changed there warranty program. And if u take it in for a return u gotta buy a whole new warranty. But i had my warranty

  • Looking for internet explorer for mountain lion?

    looking for internet explorer for OS X Mavericks?

  • JDeveloper 9i With OA Extension for CU5

    Hello Oracle people, ATG PF CU5 has been recently released. Please can you tell us the patch number for JDeveloper 9i With OA Extension for CU5 ? No way to find it. Thanks Juanje