Error: Cannot open project file

Does that error message mean I am trying to open a project file that was created with a version of FCP that is later than what I operate with?
Also, where did the FCP FAQ section go?
PowerMac G4 desky 867MHz 1GB RAM   Mac OS X (10.2.x)   FCP 3.0.4

Are you trying to open a project created by a later version? (using FCP 4.5 to open a project created in FCP 5 for example)
If so, it can't ge done. The best you can do is export an XML of the cut (only the cut) that the previous version can then import.
#27 Getting a FCP 5 project to open in FCP 4.5
Shane's Stock Answer #27: How do I export my FCP 5 project so that someone can work with it in FCP 4.5?
Final Cut Pro 5 projects are not backwards compatible. What that means is that a project created in FCP 5 cannot be opened by previous versions. The previous version cannot recognize the formatting and code of the newer version. You can go from FCP 4.5 5o 5, but it will reformat your project file, so if you want to have a 4.5 version best to duplicate it and convert the duplicate.
You can, however, export the sequence from FCP 5 so that it will open in FCP 4.5 if you follow these steps:
1) Select all in the Browser
2) Choose File>Export>XML
3) Make sure you choose XML version 1 in the following dialog box
4) Launch FCP4.5 and create a new project
5) With that project's Browser open and active, import the XML
For an in-depth explaination, read this:
http://www.lafcpug.org/Tutorials/basicfcp5_to4.html
Shane

Similar Messages

  • Cannot open project file with write access...

    I have seen that this problem has been reported before but have yet to find a solution.
    I have my project file in an external hard drive.  When I plug the hard drive to another computer and want to save it I get this message:
    "Cannot open project file with write access.  The file may be locked or you don't have permission to write to this location.  Select Save As..."
    I don't want to Save As because other projects make reference to this file and also my Encore file will be messed up.
    FYI both computers use Windows 7.
    Any solutions?

    Right click on the folder in Question and select properties. Then select the security tab. Make sure you add everyone to the user list. You do that by selecting edit and then add. Type in everyone in the object section and hit ok. Then select the everyone user and checkmark the Full control. Hit Apply and it will adjust the permissions for the folder and subfolders and files.
    Eric
    ADK

  • LV RTE cannot open project files that have .lvlib references in Dependencies

    I'm writing a LabVIEW DLL to inspect LabVIEW project files, and I've noticed that if a project has a .lvlib reference in its Dependencies, then the Run-Time Engine contradicts itself about whether or not it can find the project file:
    Project.Open returns error 7 (file not found)
    Project.GetFileLVVersion is successful
    Here are snippets from my G and C code that exercise this behavior:
    int openStatus = StatusSuccess;
    char* projectVersion = createStringWithLength(VersionStringLength);
    printf("Analyzing %s\n", pathString);
    OpenProject(pathString, &openStatus, projectVersion, VersionStringLength);
    printf(" Project written in LabVIEW %s\n", projectVersion);
    if (openStatus == StatusSuccess)
    printf(" Opened project file.\n");
    else
    printf("Error: Could not find project file, or file was not a project file (error code %i).\n", openStatus);
    However, when running in the development environment, both methods succeed.
    Is this a bug, and if so, is it fixed in LabVIEW 2014?
    Here is how you can reproduce it:
    Prerequisites:
    LabVIEW 2013 SP1 32-bit
    ConEmu for a good console -- https://code.google.com/p/conemu-maximus5/wiki/Downloads
    minGW for compiling a program to use the LabVIEW DLL -- http://sourceforge.net/projects/mingw/files
    .lvlib reference in Dependencies breaks Project.Open in LV RTE
    Unzip the attachment into a temporary directory (eg c:\xtra\temp)
    Open "OpenProject.lvproj" in LabVIEW.
    Build "Open Project Library".
    Using ConEmu with a bash prompt, navigate to the temporary directory.
    Type make
    $ make
    patching file `builds/platdefines.h'
    gcc -std=c99 -g OpenProject.c -o OpenProject.exe -lOpenProject -Lbuilds
    6. Type OpenProject 'c:\xtra\temp\OpenProject.lvproj'
    $ OpenProject 'c:\xtra\temp\OpenProject.lvproj'
    Analyzing c:\xtra\temp\OpenProject.lvproj
    Project written in LabVIEW 13.0
    Opened project file.
     7.  Notice that both invoke nodes execute correctly.
     8.  Type OpenProject 'c:\xtra\temp\OpenProjectWithLvlibDep.lvproj'
    $ OpenProject 'c:\xtra\temp\OpenProjectWithLvlibDep.lvproj'
    Analyzing c:\xtra\temp\OpenProjectWithLvlibDep.lvproj
    Project written in LabVIEW 13.0
    Error: Could not find project file, or file was not a project file (error code 7).
     9.   Notice that the version node succeeded while the open one failed.
     10. Type diff OpenProject.lvproj OpenProjectWithLvlibDep.lvproj
    $ diff -u OpenProject.lvproj OpenProjectWithLvlibDep.lvproj
    --- OpenProject.lvproj Tue Nov 4 11:28:28 2014
    +++ OpenProjectWithLvlibDep.lvproj Tue Nov 4 11:32:37 2014
    @@ -13,7 +13,11 @@
    <Property Name="server.vi.propertiesEnabled" Type="Bool">true</Property>
    <Property Name="specify.custom.address" Type="Bool">false</Property>
    <Item Name="OpenProject.vi" Type="VI" URL="../OpenProject.vi"/>
    - <Item Name="Dependencies" Type="Dependencies"/>
    + <Item Name="Dependencies" Type="Dependencies">
    + <Item Name="vi.lib" Type="Folder">
    + <Item Name="NI_MABase.lvlib" Type="Library" URL="/&lt;vilib&gt;/measure/NI_MABase.lvlib"/>
    + </Item>
    + </Item>
    <Item Name="Build Specifications" Type="Build">
    <Item Name="Open Project Library" Type="DLL">
    <Property Name="App_copyErrors" Type="Bool">true</Property>
    Here is another way to trigger this behavior, which also shows that LabVIEW only sometimes tidies the Dependencies item:
    Open "OpenProject.lvproj" in LabVIEW.
    Add a new VI to the project and place the "Application Directory" file path constant its block diagram.
    Select "File » Save All (this Project)" and use the default name for the new VI.
    Type OpenProject 'c:\xtra\temp\OpenProject.lvproj'
    Notice there is an error again, as is expected.
    Remove the "Application Directory" file path constant.
    Select "File » Save All (this Project)"
    Type OpenProject 'c:\xtra\temp\OpenProject.lvproj'
    Notice the problem is gone, as is expected.
    Re-add the "Application Directory" file path constant to the block diagram.
    Select "File » Save All (this Project)"
    Type OpenProject 'c:\xtra\temp\OpenProject.lvproj'
    Notice there is no problem, which is surprising as there should be an error since the Dependencies item hasn't been tidied.
    Close the new VI and remove it from the project.
    Select "File » Save All (this Project)"
    Open "OpenProject.lvproj" in a text editor.
    Notice the Dependencies item has been tidied.
    Re-add the VI back to the project.
    Select "File » Save All (this Project)"
    Type OpenProject 'c:\xtra\temp\OpenProject.lvproj'
    Notice there is an error again, as is expected.
    Solved!
    Go to Solution.
    Attachments:
    LVRTE_OpenProject.zip ‏10 KB

    NInjaneer_wow wrote:
    The same behavior occurs in LabVIEW RTE: a new project with an Application Directory constant in a blank vi will return error 7 - file not found, but still return the correct version of LabVIEW in which the project was created. 
    I've been experimenting with workarounds for this behavior, and I found one.
    When I provide the LabVIEW path for libdir in my executable's ini file, the run-time is able to load and inspect the project file.
    libdir="C:\Program Files\National Instruments\LabVIEW 2013"
    While it's expected that a stand-alone executable may be placed on a system that doesn't have the LabVIEW IDE, it's still surprising to me that the Run-Time Engine cannot find LabVIEW's standard library without some explicit guidance. What other considerations contribute to that behavior?
    References:
    LabVIEW configuration file/Paths -- http://labviewwiki.org/LabVIEW_configuration_file/Paths

  • Error:Cannot open the file c:\windows\sapmmc.msc

    Hi Folks,
    I have been using SAP IDES ECC 6.2 for a while and now all of a sudden encountered a problem CANNOT OPEN THE FILE C:\WINDOWS\SAPMMC.MSC.
    I am a technical consultant and i know nothing about basis and sap installations.
    Is this error so fatal? How can i fix the problem..
    Thanks in advance.
    Ranjith kumar.

    Hi
    Ranjith
    Hi,
    Looks like your mmc dll is corrupted, with your install and uninstall of software.
    Two Options:
    1. Upgrade the Kernel with latest Patch level, which comes with new SAPMMC.dll file
    OR
    2. Just download the SAPMMC*.sar file from service market place and extract in exe directory, since it is windows re-booting the server doesn't hurt.
    Regards
    Bhaskar

  • Error"Cannot open the file due to an unknown error. (FRM0007)" in XI3.0

    When open deski document in 3-tier mode, the following error is showed"
    "Cannot open the file due to an unknown error. (FRM0007)"
    -It happens for all deski documents
    -It works ok when opening in 2-tier mode.
    -It happens on two computers
    -It happens on some specific userID,and only happens when two deski are opened, one is open by specific userA,the the other is opened by userB or both are opened by userA 
    it is、
     DeskI - opened by UserA
     DeskI - opened by UserA
    or、
     DeskI - opened by UserA 
      DeskI - opened by UserB
    The following is log that may be helpful.
    2009/03/02 01:33:38.468|==| |X|
    2812|3592|}|||||||||||||||_BOGeneralDataManager::DoRealRefresh: 0.015
    2009/03/02 01:33:38.468|==| |X|
    2812|3592|}|||||||||||||||_BOGeneralDataManager::DoRealRefresh: 0.015
    2009/03/02 01:33:38.468|==| |X|
    2812|3592|}|||||||||||||||_BOGeneralDataManager::AutomaticRefresh: 0.015

    Hi Emily,
    Following solution might help you to resolve the issue.
    1.You create your Deski report.
    2.Save as the report (with or without 'Save for all users'- makes little difference at his stage).
    3.Export the document to the repository.
    4.Save as the report once again with the option 'Save for all users'(overwrite the copy that already exists on the local machine).
    5.Log into Info view and delete the report.
    6.Log back into Desktop Intelligence and try to open the report.
    Regards,
    Sarbhjeet Kaur

  • When I try to download firefox I get this error "cannot open output file". I had firefox once but uninstalled it now I cant' reinstall. Why?

    I had firefox but uninstalled it because of problems with add on Recipefox. Now when I try to reinstall it I get and error message "cannot open output file". I really liked firefox, How do I get it back?

    When you click the download link on [http://getfirefox.com GetFirefox.com], you should be asked if you wish to Run or Save the file. If the described situation happens when trying to Run the download, try instead to Save it and put the file on your Desktop or a similar place where you are certain that you can find it again.
    When the download is complete, try double-clicking the downloaded file in the normal Windows Explorer (browse your way to the file from My Computer). This should start the installation.
    If you notice in the Explorer window that the file seems to be lacking the Firefox orange/blue icon, rightclick the file and select Properties. The picture should look somewhat like the attached picture (except that mine's in danish, but that is irrelevant) if saved correctly - if it does NOT look like this, please describe the contents or attach a screenshot of the box. Especially what it says under "File type" - it should be "Program"; if it's not, we'll have to look into what the problem could be here.
    Slightly off-topic, your Internet Explorer seems to be quite a bit out of date (IE 6, where current version is IE 8), so I would strongly recommend that you try to run Windows Update to get your system updated. If this is a company system (like a Terminal Server thin client machine), this may not be possible, and your system administrator will most likely have to help you.

  • [SOLVED] pacman error: cannot open package file

    Hi
    I didn't use my Arch box for a while and today launched it.
    I had to install the "p7zip" package, but I'm a "build everything from sources" guy and I tried to install it from source as always. Unsuccessfully: it required nasm.
    Decided to install it using pacman, to get it done quickly.
    So, I've got the nasm package and uploaded it to my Arch machine (it has no inernet connection, I use NFS to share files).
    Executed
    pacman -U ./nasm-2.09.10-1-i686.pkg.tar.xz
    and for my surprise I've got:
    loading package data...
    error: './nasm-2.09.10-1-i686.pkg.tar.xz': cannot open package file
    Then I tried to run  pacman -U for one of "core" packages from the original media (2010.05) and the same result. Some time ago it was working fine.
    It gets this error for every file.
    The tar.gz file is not broken, I can browse it within Midnigh Commander and get any file .
    What could be wrong? Any ideas?
    Last edited by art84 (2011-09-16 17:37:33)

    @Techman084:
    Of course I  have ran it in the directory where the package is located. And yes, I also tried to use it with an absolute path like.
    @karol
    # pacman -V
    .--. Pacman v3.3.3 - libalpm v4.0.3
    / _.-' .-. .-. .-. Copyright (C) 2006-2009 Pacman Development Team
    \ '-. '-' '-' '-' Copyright (C) 2002-2006 Judd Vinet
    This program may be freely redistributed under
    the terms of the GNU General Public License.
    @the sad clown
    1. /var/log/pacman.log
    [2010-12-12 13:46] installed kernel26-headers (2.6.33.4-1)
    [2010-12-12 14:07] installed r8168 (8.020.00-1)
    [2010-12-20 19:33] installed iperf (2.0.5-1)
    [2010-12-26 14:46] installed slang (2.2.3-1)
    [2010-12-26 15:45] installed mc (4.7.4-1)
    2. Why to synchronize? And how?   pacman -Syu   ?
      I have the original 2010.05 distro installed without any updates. Only console. A few packages installed: ethtool, mc, slang, etc. So, I don't need to have it synchronized to the last versions of everythig (if I correctly understood the goal of the sync)
    3. I have already that p7zip package on my PC   I had to do it manually  ... but to be clear, it doesn't work with any package, not only with "p7zip" or "nasm"

  • Getting error "Cannot open the file "*****.INDD". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file may be open in another application."

    How to fix this problem
    "Cannot open the file "*****.INDD". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file may be open in another application."

    When I have seen this message it is either when I try to open a document with an older version of Indesign E.g. an indesign 2014 document with Indesign CC.
    The other time I have seen it is to open an Indesign CC document with Indesign 2014 which does not have Mindsuite - a plugin I use. Mindsuite, as yet, has not upgrade the plugin for Indesign 2014 therefore it recognises that a the document was created withe a plugin that the 2014 version does not have installed.
    I believe your problem will be something like that.

  • Satellite U300 PSU3DA: error: cannot open attribute file executing C-Maps

    I have a U300 PSU3DA which I changed from Vista to XP.
    This is because my main use of the computer will be for navigation (boat) and I was told most navigation programs will run better with XP. I have hardly nothing on my laptop so far, and already the system seems to be slow and freezing too often.
    My question now is about the program C-Maps which I've just installed and which won't open. It keeps saying "Eorror: cannot open attribute file".
    What does that mean? I have desinstall and reinstall the program, and it keeps coming up with this message.
    I had a look around the device manager and the only thing that seems wrong is the PCI memory controller.
    I did a bit of a search on this and it seems that this driver is not necessary for XP? Is that so?
    Could it be a cause of the C-Maps program not working?
    Thanks in advance.

    > I did a bit of a search on this and it seems that this driver is not necessary for XP? Is that so?
    Where did you read this info?
    I dont know if the driver is necessary but you get all drivers on the Toshiba website.
    For your problem with C-Maps, I think the best is you contact the C-Maps support. Here it is a forum for Toshiba laptops.

  • Error cannot open fireworks file

    Don't know why I cannot open fireworks file after create a
    new one and close it, I cannot open it again. I open a psd file in
    Fireworks CS3 and do some modification, and export to web graphics.
    Later, I open the fireworks file, it doesn't work!!! Don't know
    what's the problem? Should I reinstall the software again?

    delwyw wrote:
    > Don't know why I cannot open fireworks file after create
    a new one and close
    > it, I cannot open it again. I open a psd file in
    Fireworks CS3 and do some
    > modification, and export to web graphics. Later, I open
    the fireworks file, it
    > doesn't work!!! Don't know what's the problem? Should I
    reinstall the software
    > again?
    >
    Have you tried restarting Fireworks?
    Jim Babbage - .:Community MX:. & .:Adobe Community
    Expert:.
    http://www.communityMX.com/
    CommunityMX - Free Resources:
    http://www.communitymx.com/free.cfm
    .:Adobe Community Expert for Fireworks:.
    Adobe Community Expert
    http://tinyurl.com/2a7dyp
    See my work on Flickr
    http://www.flickr.com/photos/jim_babbage/

  • Cannot open project file in Project 2010

    Hi,
    I have a project created in Project 2010. I can save it without any problems. But some saves are broken and I cannot open them again. When I open saved project an error message is displayed:
    There was a problem sending the command to the program and Project freezes. Project 2010 itself starts without any problems. What's strange I can open this file in viewers like MOOS Project Viewer 2.0 but not in Project.
    Any tips highly
    appreciated.
    Lukasz Chomin

    Hi Lukasz,
    Welcome to this Microsoft Project newsgroup :-)
    It sound as though that project has corruption.  If you can open it at all, follow the advice given below.  If you can’t open it at all, it seems like it’s lost – you do have a backup don’t you?
    If you can open it in another program, try copy/paste the data back into a new project.
    If you suspect a corrupt file, you could try the suggestions in FAQ Item: 43. Handling project file corruption and/or bloat.
    FAQs, companion products and other useful Project information can be seen at this web address:
    http://project.mvps.org/faqs.htm
    Hope this helps - please let us know how you get on :-)
    Mike Glen
    Project MVP
    See http://tinyurl.com/2xbhc for my free  Project Tutorials

  • PE7 error (cannot open project):  ..\..\Src\Video\VideoSegment.cpp-55

    I am a rookie with PE7 and definitely not very tech-savvy compared to most on this forum, but I came to this site looking for assistance with a PE7 video project I have been working on for the last several weeks and now I'm afraid I have lost.  When I attempt to open the project, I get an error message saying "Premier Elements has encountered an error [..\..\Src\Video\VideoSegment.cpp-55]."  When I click "continue", another error box pops up saying "This application has requested the Runtime to terminate it in an unusual way.  Please contact the applicant's support team for more information."  When I click "OK", another box pops up and says "A problem caused the program to stop working correctly.  Windows will close the program and notify you if a solution is available."  I have rebooted my computer several times and get this message every time.  Regrettably, I made the rookie mistake of not backing up my project file and now am afraid I will lose my hours of work.  I was about 1-2 hours from being done with this project and was supposed to submit it to an NGO this week.  Can't believe it crashed at this point.  Any ideas on how I might be able to get back into this file so I can recover my work?
    The project is a 25 minute documentary using multiple HD video clips, still photos, titles, and mp3 audio.  Below is the information I heard I was supposed to post.  If there is other information needed, please let me know.  Again, I am not well-versed in computer lingo, so if there is other information I need to hunt down, any help on where to look for it, etc would be greatly appreciated. Thanks so much for your help.
    DxDiag
    System Information
    Time of this report: 8/15/2010, 21:00:30
           Machine name: COSETTEY-PC
       Operating System: Windows Vista™ Home Basic (6.0, Build 6002) Service Pack 2 (6002.vistasp2_gdr.100608-0458)
               Language: English (Regional Setting: English)
    System Manufacturer: Dell Inc.
           System Model: Inspiron 1420                  
                   BIOS: Phoenix ROM BIOS PLUS Version 1.10 A09
              Processor: Intel(R) Core(TM)2 Duo CPU     T5450  @ 1.66GHz (2 CPUs), ~1.7GHz
                 Memory: 2038MB RAM
              Page File: 2041MB used, 2274MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
         DxDiag Version: 7.00.6002.18107 32bit Unicode
    DxDiag Notes
          Display Tab 1: No problems found.
            Sound Tab 1: No problems found.
            Sound Tab 2: No problems found.
              Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    OS Name Microsoft® Windows Vista™ Home Basic
    Version 6.0.6002 Service Pack 2 Build 6002
    Other OS Description Not Available
    OS Manufacturer Microsoft Corporation
    System Name COSETTEY-PC
    System Manufacturer Dell Inc.
    System Model Inspiron 1420
    System Type X86-based PC
    Processor Intel(R) Core(TM)2 Duo CPU     T5450  @ 1.66GHz, 1667 Mhz, 2 Core(s), 2 Logical Processor(s)
    BIOS Version/Date Dell Inc. A09, 7/11/2008
    SMBIOS Version 2.4
    Windows Directory C:\Windows
    System Directory C:\Windows\system32
    Boot Device \Device\HarddiskVolume3
    Locale United States
    Hardware Abstraction Layer Version = "6.0.6002.18005"
    User Name Cosettey-PC\Cosette
    Time Zone Eastern Daylight Time
    Installed Physical Memory (RAM) 2.00 GB
    Total Physical Memory 1.99 GB
    Available Physical Memory 907 MB
    Total Virtual Memory 4.21 GB
    Available Virtual Memory 2.72 GB
    Page File Space 2.28 GB
    Page File C:\pagefile.sys

    Concerning your .prel failure PRE will have created backup copies of your .prel in the folder "Adobe Premiere Elements Auto-Save" under your main project folder. Copy these to a temporary folder and see if they open correctly. If they do, I recommend the very first action you take is to export your project to an AVI or HDV format. These are then available to import into any PRE project.
    Some basics:
    Install all Windows updates
    Install latest version of QuickTime (v7.6.6 at time of writing)
    Install most recent graphics and sound drivers from the manufacturers web sites
    Run Disk Cleanup
    Run Defragmenter
    Post back here with the necessary information described here: Got a Problem? How to Get Started
    Some Specifics:
    What project preset are you using?
    Where are you getting those HD clips from and what format are they (use Gspot linked in the Got a Problem Link)?
    Check the reolution of your still photos. Ideally they should match your expected output (or a little larger if you want to pan & zoom). Use a Photo editor (Photoshop Elements is ideal if you have it) to resize.
    Convert your MP3 files to WAV 48,000Hz 16bit and import those into the project. Wait and do nothing until conforming finishes (the bar at the bottom right of the screen shows progress).
    Your PC is seriously underpowered for HD in PRE (2GB RAM and only dual 1.66GHx processors. With only 2GB RAM and only 1GB free I think it likely that you have several background processes running. Examine what you have and exit (or kill with task manager) as much as you can. Temporarily disable real-time processing of your anti-virus/anti-spyware software.
    How many hard disks do you have and how much (defragmented) free space are on them?
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children

  • Cannot open Project files from previous FCPX versions

    Hello,
    I'm currently on 10.0.8, and have not upgraded to 10.1.1.  Here is my issue:
    A documentary project I've been working on since 10.0.1 is not showing up in 10.0.8, and I'm wondering how to "manually" update the Project.  I upgraded FCPX versions a few times while working on this Project (I think all the way up to 10.0.4), but then I stopped as I noticed it was negatively affecting parts of my project and making the application run slow (and Apple recommends you don't update versions while in the middle of a project).  I finished that project, but now fast forward and I'm in 10.0.8 and I need to revisit that Project to make a few changes, but FCPX won't even recognize it.  It successfully updated and recognizes the Events I used for this particular Project, but not the Project itself. 
    Any help/suggestions would be great.
    Thank you!

    Thanks Russ.  After all this time, I actually solved the problem myself.  I forgot that back 6 months ago, I renamed my Project file, from the default "CurrentVersion".  I just came across another post that said you're not supposed to do that, so I changed my Project file back to "CurrentVersion" and now FCPX recognizes it.  After all that toil, the answer was just too simple!!
    Thanks.

  • Error cannot open source file

    i cant run the programme as my c++ is having the error where all the source files cannot be opened. How can i fixed it?

    Hi cindy93,
    Thanks for posting in MSDN forum.
    To understand what happens on your side, Could you show us the complete error message? Does the source file create by yourself or some header files? Please more information.
    Have you tried to include the Absolute path to your source file? Something like that.
    #include "D:\..\..\source file name"
    Best regards,
    Shu Hu
    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.

  • Receiving General Error when opening Project file in FCP 5.04

    Hi to everyone.
    I would need a little help. We have 4 Macs running (two G5 and two Laptops). All running with FCP Pro 5.04.
    When I create a project on my G5 and open it with my laptop everything runs fine. When I make some edits/renders and save the project and try to open it again, I receive a General Error message.
    But on the other two machines the file opens. I have used FCP rescue, trashed also manually the prefs, deleted on the G5 the Render files, made a PRAM zap, used Disk Utility, cleared the Wavecache etc. but no result. The Mediafiles are stored on a LACIE 500 GB. I do work this way since years and never had this before.
    Does anybody have an idea ?Thanks in advance.
    Zzz
    G5 2 Ghz Dual Core and G4 Laptop   Mac OS X (10.4.8)   4.5 Gig Ram, LA CIE 500 G

    Hi everyone,
    at first thanks for the replies. I tried already the New User account. It's not working and also the Lacie is fine. The problem is more complicating, I guess.
    Basically it's funny that the problem starts, when I have already worked in the project. When I set up the project (load picture and sound files all standard formats, Uncompressed picture and Aiff sound) and save the project, it opens simply, when I work in the project, edit, render etc (pluggins are on both machines identicall) and save (after deleting the render files), my machine is the only one who gives General Error.
    Funny is that I used FCP since years in the same setup (Desktop-laptop) and never had this. I already trashed even the trash -:)
    So I guess that this problem is a really special one, perfect for all Mac Sherlocks to solve -:)
    So if anyone has an idea....
    Cheers Zolee

Maybe you are looking for