Error while trying to archive project in iDVD

i've done a search on this and a few things have come up but there don't seem to be any solutions.  i created a dvd.  when i go to archive it, it works for a few minutes and then i get an error that says "alert: There was an error while saving the project."
a few notes: 
i created the dvd today in idvd, so i'm positive that there are no missing pieces. 
i have plenty of space on both drives.
i have tried saving the archive on my external drive (formatted correctly) and my hard drive and neither place works.
i have tried logging in as another user and that doesn't work.
i have tried archiving a few different projects including one i created just to test the archiving that has barely any video or photos.
does anyone have any thoughts?  i have a very important dvd that i create each year and i would love to be able to have the pieces all together in case i ever need to burn a new one.
if there's a place on my mac where i can find more info about the error (that maybe someone here can understand!) let me know!
thanks!

What error code are you getting?  Have you repaired disk permissions with Disk Utility? Also try this basic troubleshooting fix :
1 - delete the IDVD preference file, com.apple.iDVD.plist, that resides in your
User/Home/Library/ Preferences folder.
2 - delete IDVD'S cache file, Cache.db, that is located in your
User/Home/Library/Caches/com.apple.iDVD folder. 
3 - launch IDVD and try again.
OT

Similar Messages

  • Error on /SafeMode: error while trying to run project uncaught exception thrown by method called

    i try run VS 2012 with /SafeMode. I create new empty Winform. When I start debug, I got:
    "error while trying to run project uncaught exception thrown by method called through reflection"

    Hi Matanya Zac,
    Did you restart your machine? How about installing the VS2012 update 4?
    >>error while trying to run project uncaught exception thrown by method
    Did you install the VS update in your VS IDE? I met this issue before which was related to the VS update:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/5ead8ee9-ea09-4060-88b0-ee2e2044ff82/error-while-trying-to-run-a-project-uncaught-exception-thrown-by-method-called-through-reflection?forum=vsdebug
    If still no help, I suggest you repair your VS, and then restart your machine, test the result.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • VS 2010 error: 'Error while trying to run project: Not implemented'

    I added a new Oracle database project using Oracle Tools for Visual Studio 2010. Once the Oracle database project is added to my Solution, my Visual Studio is no longer able to start the debugger and at times not able to run Test Cases. It error with 'Error while trying to run project: Not implemented'. If I unload the project, VS starts working fine.
    Any idea on how to resolve this issue?

    I ran into this problem as well, working in a VS2010 solution which included an ASP.NET web project and the v11.2.0.2.1 ODT version of the Oracle project.
    Turns out that I was able to solve the problem by removing the Oracle project from the solution, and then adding it back in. From a SLN file point of view, it seems that as long as the Oracle SQL project is located after the Web Application Project that everything works fine.
    Note that the SLN file is not organized by alphabetical project name, so changing the name of the SQL project doesn't help; its organized by order of project addition to the solution, so removing and re-adding is the way to go.

  • 'Error while trying to run project: Not implemented'

    I added a new Oracle database project using Oracle Tools for Visual Studio 2010. Once the database project is added, my Visual Studio is no longer able to start the debugger. It error with 'Error while trying to run project: Not implemented'. If I unload the project, VS starts working fine.
    Any idea on how to resolve this issue?

    I ran into this problem as well, working in a VS2010 solution which included an ASP.NET web project and the v11.2.0.2.1 ODT version of the Oracle project.
    Turns out that I was able to solve the problem by removing the Oracle project from the solution, and then adding it back in. From a SLN file point of view, it seems that as long as the Oracle SQL project is located after the Web Application Project that everything works fine.
    Note that the SLN file is not organized by alphabetical project name, so changing the name of the SQL project doesn't help; its organized by order of project addition to the solution, so removing and re-adding is the way to go.

  • Getting error while trying to access Project in the TDMS screen

    Hi Team,
    I have configured TDMS 4.0 & trying the access 'PROJECT' but getting the error
    500 SAP Internal Server Error
    ERROR: Syntax error in program %_CCNV . (termination: RABAX_STATE)
    Any idea what is wrong. Please provide inputs. Thanks
    Thanks & Regards,
    Avinash

    Hi,
    Here are the details of the ST22.
    Error analysis
        The following syntax error has occurred in program %_CCNV
        The type name "CNV_TABNAME" is ambiguous, since it is also defined in
        the Dictionary control structure introduced with "CLASS". "CLASS". "CL
        ***". "CLASS". "CLASS".
    Source Code Extract
    Line  SourceCde
        1 method describe_by_name .
        2
        3   data:
        4     crc type XTYPE_TYPE,
        5     res like p_descr_ref.
        6
        7 * check name for sequence of c
        8   system-call check p_name for sequence of c
        9     class 'CL_ABAP_TYPEDESCR' method 'DESCRIBE_BY_NAME' parameter 'P_NAME'.
       10
       11 * get administration information
    >>>>>   system-call describe administration
       13     mode 'N' of p_name into admin_tab_line-xtype crc admin_tab_line-kind.
       14
       15 * look at hash tabel wether descr object already exists
       16   read table admin_tab from admin_tab_line into admin_tab_line.
       17   if sy-subrc = 0.
       18     res ?= admin_tab_line-ref->get( ).
       19     if res is bound.
       20       p_descr_ref = res.
       21       return.
       22     endif.
       23     delete table admin_tab from admin_tab_line.
       24   endif.
       25
       26 * create new descr object
       27   case admin_tab_line-kind.
       28     when kind_elem.
       29       raise event create_elemdescr
       30         exporting xtype = admin_tab_line-xtype.
       31     when kind_ref.
    Program Code for Method DESCRIBE_BY_NAME
    * check name for sequence of c
      system-call check p_name for sequence of c
        class 'CL_ABAP_TYPEDESCR' method 'DESCRIBE_BY_NAME' parameter 'P_NAME'.
    * get administration information
      system-call describe administration
        mode 'N' of p_name into admin_tab_line-xtype crc admin_tab_line-kind.
    * look at hash tabel wether descr object already exists
      read table admin_tab from admin_tab_line into admin_tab_line.
      if sy-subrc = 0.
        res ?= admin_tab_line-ref->get( ).
        if res is bound.
          p_descr_ref = res.
          return.
        endif.
        delete table admin_tab from admin_tab_line.
      endif.

  • Error while trying to archive from Records Management

    Hello,
    I'm currently trying to figure out what would be the best way to archive Digital Personnel File documents. Currently it looks like the best way would be using method described in document [Archiving in SAP Records Management|https://cw.sdn.sap.com/cw/docs/DOC-22228]: using program SRM_KPRO_CONTENT_RELOCATION and archiving object SRMGSP.
    When I'm trying to run this program in test mode I get the following error:
    Problems while searching for the specified documents
    Message no. SRM_GENERIC_SP_ARC021
    There should be documents of the element type I'm trying to use there and I have configured the Content Category to be used with this (using content repository with archive link).
    Any ideas what might be causing the error? Thanks!
    - Jarmo

    Dear Jarmo,
    Please check if you have such documents by first searching for them in ORGANIZER for the given element type based on the last changed date. If you are able to retrieve results that way then this program should also work.
    Best Regards,
    Pragya

  • Error While trying to run Project : Unable to start debuggeing on the web server . The project is...

    Hello There 
    i have created Project with Visual Studio 2003 and when i try to run my project i faced this problem .
    i was search about it and read all solution that related to this problem but no luck 
    so please any help will be appreciated
    Mohammad Khader IT-Technical Support

    Well, you would have to go to the Web.config and enable debugging.
    http://ppe.blogs.msdn.com/b/zainnab/archive/2010/12/14/enable-debugging-in-web-config-vstipproj0026.aspx
    Then you have to know how to Attach to the ASP.NET Worker Process w3wp.exe. All ASP.NET solutions run on the ASP.NET Worker Process thread on IIS, which means that the ASP.NET program must be already running before you can Attach the Debugger to ASP.NET
    Worker Process. You set a breakpoint I the codebehind file, you attach the debugger to w3wp.exe and you hit the Run with Debugger button. 
    http://www.codeproject.com/Articles/37182/Debug-your-ASP-NET-Application-while-Hosted-on-IIS

  • Problems while trying to burn project

    Good morning
    i'm trying to burn project with idvd from ilife 11.
    every time the process stuck at the final stage (i think) -
    i get "multiplexing and burning" message, below that "done"' is written,
    and below that - "rime remaining: about one minute". that message is here for the past 12 hours.
    the dvd itself didn't start the burning at all (i tried several times, with several different dvd's)
    please help
    Thanks
    Ran

    Why would we start different threads if we are all experiencing the same issue?? Isn't that the point of a thread... I might be new to this forum but not new to forums at all. They are collaborative efforts. I and we appreciate your help but were not going to follow 6 different threads for the what appears to be the same issue. If one of us rectify the issue, others will try the same. If it doesn't work then the thread could progress in that issue or start a new one.
    As it states in my signature or info section (what ever you call it over here) I have a late model 2007 17" MacBook Pro3.1 with a 2.6GHz Core 2 Duo, 4GB of Ram and an Intel 160GB Solid State hard drive which has 60GB of free space. Im also running OSX 10.6.5, I just ran a software update and everything is up to date. Disk utility reports a healthy disk, verified and no errors.
    I can burn CDs and backup DVDs from iTunes. I WAS able to burn DVDs from iDVD before I upgraded to iLife'11. Nothing else was running while i was doing this. I've tried on different types and brands of media with no success. Every time it gets hung up at the same spot and spits out the disk which is unreadable.
    I CAN create a disk image (just did) and its sitting on my desktop. Inserted blank DVD+R, opened it up in finder, dragged and dropped the .img into it, burnt and verified.

  • "Error While Trying To Synchronise Audio And Midi"...non-tempo event found

    "Error While Trying To Synchronise Audio And Midi"...non-tempo event found
    now when I shutdown Logic And relaunch the Project, the notes hang and "WHAT THE FRIIGIN"
    (this was a bug way back when Logic7 was first released)
    this is bad!
    SvK

    Thanks Steven.
    big help. In our session we keep getting this problem where the song counter stops, the music keeps playing and we get an error message saying:
    Non Tempo-Event found in Sync Reference
    We looked in the tempo list and somehow there was a tempo event of 0.00 tempo in there.
    We deleted it, got the same error message, but the prob seems to be fixed.
    Apple, please fix this!
    Thanks
    Felix

  • Error while creating web dynpro project from DTR

    Hello,
    I am getting following error while creating Web Dynpro project from DTR,
    org.eclipse.jdt.core.JavaModelException: File /<track name><DC><package>/.classpath is read-only.
    Still project gets created but evenif I check out view , it does not allow me to edit it.
    Also I have checked in and activated some changes but active copy in DTR is not reflecting those changes.
    I tried Add subtree option in DTR perspective for folders in this project. Is it result of that?
    Please help me in this regard.
    Thank You
    Beena

    Hi Beena,
            .classpath file should not checked in to DTR(uncheck the Read only properties). It is local file it contains class path for local system.
             Generally in webdynpro project only src folder should be checked in DTR.
    Regards
    Suresh

  • Error while trying to add Master Data in S&OP

    Hi,
    I am getting the below error while trying to add new Master Data entries in S&OP. Can anyone help here please? I have added new items in the past, but did not get any error before.
    code: MASTER_DATA_OPERATION_EXCEPTION
    severity: INFO
    description: Error during Stage 02 of Data Integration
    log id: 08f6b26e-5981-4e21-ad65-17df697fdc62
    I have also attached the screenshot and the new data i am trying to add.
    Thanks,
    Thahir Masdook

    Hi Vivek,
    I have added Master Data in the past as well. Recently this system (Z45) was upgraded and the planning area was re-activated by my Project Lead. After the re-activation i am unable to add any Master Data and Save.
    Thanks,
    Thahir Masdook

  • Error while trying to upgrade ODI repository using export/ import

    Hi,
    I am getting below error while trying to import an ODI project from dev environment into my QA environment which has an older version of project.
    com.sunopsis.core.SnpsNotConsistentSynonymImport: ODI-10013: This import action has been cancelled because it could damage your repository. This is due to an SNP_COL object that has object identifier 13712007 that is greater than that for the current SNP_COL id sequence. Importing this object would lead to primary key violations in the future.
    at com.sunopsis.dwg.DwgObject.doImport(DwgObject.java:6041)
    at com.sunopsis.dwg.DwgObject.doImport(DwgObject.java:5781)
    at com.sunopsis.repository.manager.RepositoryManager.importObjectsUsingDoImport(RepositoryManager.java:5194)
    at com.sunopsis.repository.manager.RepositoryManager.treatObjectListGeneral(RepositoryManager.java:3587)
    at com.sunopsis.repository.manager.RepositoryManager.workRepositoryImport(RepositoryManager.java:4002)
    at com.sunopsis.repository.manager.RepositoryManager.workRepositoryImport(RepositoryManager.java:4174)
    at com.sunopsis.graphical.dialog.SnpsDialogImportWork$1.run(SnpsDialogImportWork.java:519)
    at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:656)
    at java.lang.Thread.run(Thread.java:619)
    Did anyone face this error? What is causing this error? What should be done to resolve this error?
    Edited by: 854415 on Oct 18, 2011 4:51 AM

    Hi
    Did you follow below approch
    Goto Topology> File Menu>Export>Export Master Repository in ZIP format
    File Menu>Export>Export Logical Topology in ZIP format
    In Designer, go to File menu>Export>Export Work Repository in ZIP format
    Quit from old ODI instance
    Login into New ODi instance
    Goto Topology> Import>Import Master Repository in ZIP format (please select INSERT and UPDATE Mode option from dropdown list)
    Import>Import Logical Topology in ZIP format (please select INSERT and UPDATE Mode option from dropdown list)
    In Designer Import>Import Work Repository in ZIP format (please select INSERT and UPDATE Mode option from dropdown list)
    Note: Once it is done please change the Work repository ID on New ODI instance
    Regards,
    Phanikanth

  • How to solve: Error while trying to synchronize Audio and MIDI.

    The project consists of an hour long DVD of a play which I have loaded into Logic ( on a MacbookPro) and stripped the audio
    and cut it up into regions  to name the different parts of the play ( verse/music etc)
    Usually I am able to play the project with a small window showing the Movie and watching the audio in the back ground adding markers and notes.
    Most of the time this works fine.. but then I get the following message re-occurring every few seconds:
    "Error while trying to synchronize Audio and MIDI.
    Sample Rate 26848 recognized.
    Check conflict between Logic Pro and external device"
    There is no MIDI, there is no external device, the Sample Rate is the usual 44.1
    Can anyone explain how to stop getting this error message which keeps interrupting workflow?

    Hello,
    open your Audio MIDI Setup utility and set the input to 44100
    https://discussions.apple.com/message/12710638#12710638

  • Solution for "Error while trying to synchronize Audio and MIDI" and "System Overload" messages

    Article for those who hate Logic error windows
    Seen in Logic Pro 9.1.7 on Mac OS X Lion 10.7.4
    and Logic Pro 9.0.0 on Mac OS X Snow Leopard 10.6.5
    Logic Pro:
    System Overload.
    The audio engine was not able to process all required data in time.
    (-10011)
    Error while trying to synchronize Audio and MIDI.
    Sample Rate xxxxx recognized.
    Check conflict between Logic Pro and external device.
    The search in the help given as follows: overload occurs when you use a lot of tracks and a lot of effects on them, and the synchronization is lost when the selected MIDI track for recording or playback. Yes, this is all that is written in the resources. And here are useful tips that have been found:
    The Bounce function allows the entire instrument track to be recorded as an audio file. This bounced audio file can then be used (as an audio region) on a standard audio track, allowing you to reassign the available processing power for further software instrument tracks. For more details, see "Bouncing Your Project."
    You can also make use of the Freeze function to capture the output of a software instrument track, again saving processing power. For details, see "Freezing Tracks in the Arrange Area."
    These tips - about the timing. About overload - there are no tips, except as "reducing the number of plug-ins" and "increasing latency". Zero useful tips - I got two errors in the test project with a blank audio track with no effects, MIDI drums and standard synthesizer, it was no aux buses, and the entire project was only a single plugin in the master track.
    Here is the configuration of my computer:
    iMac12, 2
    CPU: Intel Core i5 3,1 GHz
    Memory: 4 GB
    And here's a project that almost immediately stops Logic, all instruments and plug-ins with the init-patch, ie not the most demanding settings:
    It's sad.
    When this happened the first time, I could start the project only if the empty audio track has been selected, a track specially designed so that you can at least start the project. Then, this problem has evaporated along with the changing conditions of work and I forgot about it until the last case.
    I was looking for the cause of the problem in the console and the system monitor for two days, and finally I found that Logic ping to the network frequently. I remembered the exact time of occurrence of the problem, and system logs revealed that the problems began immediately, as soon as I deactivate the service of the Internet.
    Solution: enable the Internet, or add a new network service on a computer with no Internet. I just created the Ethernet connection to the ip address 1.0.0.0
    Logic immediately began to sing.

    Hi gabaghoul
    Yes, it worked for me on four different OS and Logic versions (10.6 - 10.8 and 9.0 - 9.1.6)
    It does not work in some cases, hard enough to tell in which one, but you can try, it very easy: go to the net settings and create new Ethernet connection to the ip address 1.0.0.0 and connect LAN cable to the port.
    Also you can try to figure out what happens in your system while Logic error occured - fot that you just start Console and search "logicpro"
    Pay attention to repetitive events in a console and events with suitable timing, not so far from error
    The problem may be related to the GUI or system memory, sometimes turning off Safari (or Chrome, others browsers) might help.
    Message was edited by: spred

  • Re: ERROR while trying to synchronize Audio and MIDI

    Hi Guys/Gals
    A bit of a strange one. Yes, I have posted a similar question concerning my trusted 2.7ghz G5 PPC and my Digidesign 003R which it turned out that the Digi's FW ports were to blame.
    New issue. I have just completed an install on a client's machine, here's it's specs etc:
    Hardware:
    iMac 2.8Ghz Duo Core Intel, 4Gb ram, 500Gb HD etc (the custom top end before last week's upgrade) arrived last week. Running Leopard 10.5.2 and has all the latest updates. (firmware/software)
    Apogee Ensemble (with newest firmware update/upgrade)
    Iomega ULTRAMAX HARD DRIVE 1TB USB 2.0/FIREWIRE® 400/800 (sorry, copied from their site)
    M-Audio Axiom 49 USB Midi controller/keyboard
    Software:
    Logic Pro 8 (latest 8.0.1) All standard plugs/samples, no third parties at all, just 100% Apple install.
    Reason 4 (latest 4.0.1)
    I reformatted the built-in hd to two partitions of equal size, one for the OS and one for whatever. I formated the external terrabyte into two partitions also of equal size, non are journalized, all are GUI partitions. I copied the LP 8 demos to both the internal "spare" partition and to the primary "Audio1" partition of the external drive. The Iomega HD is connected via the 800FW port and the Apogee Ensemble is connected via the 400FW port (the iMac has one of each). If I play any of the demo songs from the internal partition, they play perfectly, if I play them off the external Iomega partitions (either) within 8 bars I get:
    "Error while trying to synchronize Audio and MIDI
    Sample Rate 45946 recognized.
    Check conflict between Logic Pro and external device."
    As I said, any demo played back from the internal drives absolutely perfectly..... Any ideas?
    Cheers!!
    Bobs

    There are a lot of different opinions about partitioning in Mac OS X and you can read some of them here:
    http://forums.cnet.com/5208-7592_102-0.html?forumID=25&threadID=44865&messageID= 530144
    and here
    http://forums.appleinsider.com/archive/index.php/t-8096.html
    My opinion is that partitions cam be useful when:
    1. the OS can't manage big volumes (as it was in the past)
    2. the OS can't optimize the space on big volumes
    3. want to install 2 or more separate OSes
    4. organization (like in your case).
    Now, OS X filesystem (HFS+) is robust and reliable and OS X is a multitasking system that parallelizes I/O operations like reading or writing a disk.
    So if you have 2 separate hard disk the system can parallelize the operations (i.e. reading from one and writing into another one) but if you have 2 partitions the system (or better the disk subsystem) have to jump back and forth among the partitions.
    About the linking schema of the Audio interfaces and the FW hard disks it can change: I connect my FW disk to the MOTU and the MOTU to the mac while a friend of mine have to put the disk before of his Presonus.
    Thanks for the beer!
    cheers
    rob

Maybe you are looking for