Why do I get "Error - That file is locked" when trying to save?

Everytime I try to save a new sequence in FCP I get an error stating "Error - That file is locked" with no additional elements to determine which file is locked. I haven't changed any settings and I am the administrator of the computer. I was wondering if anyone knew how to fix this.
Thank you!

Everytime I try to save a new sequence in FCP I get an error stating "Error - That file is locked"
Do you mean when you try to save the project? If so, check the project file (Get Info) and see if it is actually locked.
-DH

Similar Messages

  • Getting error "This file was removed" when trying to use sdk/test/httpd.

    Hi, I wish to test my website using httpd.js. Now when I am trying create a add-on and use sdk/test/httpd by adding following line
    var { nsHttpServer } = require("sdk/test/httpd");
    I am getting following error:
    Message: Error: This file was removed. A copy can be obtained from:
    https://github.com/mozilla/addon-sdk/blob/master/test/lib/httpd.js
    As new to Add on development I am unable to resolve this issue.
    Thanks in advance.

    Apologies for redirecting you to a different site, but this forum primarily handles end-user support. For extension development advice, please try here: [https://forums.mozilla.org/viewforum.php?f=7 Extension Development - Mozilla Add-ons Forum].

  • I'm in UK but am getting Errors 503, 105007 and 105002 when trying to update

    I'm in UK but am getting Errors 503, 105007 and 105002 when trying to publish updates to 2 websites. System maintenance is going on right now in US and Australia but nothing about Europe. its Sunday 1900 here ( UTC+1)
    I was getting the same errors about 20 hours ago too - surely maintenance in US won't affect Europe and wouldn't prevent publishing for 24 hours?
    Any suggestions =   I guess the Adobe help desk will be SNAFU

    From BC Blog Post:
    Partner registration, Trial site creation Muse Publish, APIs, FTP and some admin section will not be available for 4 hours on all data centers.
    If you see the errors after maintenance is complete contact BC Support.

  • Itunes library .itl file is locked when trying to upgrade to IOS5

    Itunes library .itl file is locked when trying to download IOS5 upgrade. Can someone help?

    Usually when you get this problem in vista, it is to do with folder permissions.
    The account you are using needs full control of the iTunes and iTunes Music folder.
    Vista file folder permissions help
    http://windowshelp.microsoft.com/Windows/en-US/Help/2464a180-e5dc-45d1-a2b8-3c8a 2b571e9d1033.mspx
    http://www.mydigitallife.info/2007/05/25/how-to-take-ownership-and-grant-permiss ions-in-windows-vista/

  • Getting error message Cannot Resolve Symbol when trying to compile a class

    Hello All -
    I am getting an error message cannot resolve symbol while trying to compile a java class that calls another java class in the same package. The called class compiles fine, but the calling class generates
    the following error message:
    D:\Apache Tomcat 4.0\webapps\examples\WEB-INF\classes\cal>javac
    ConnectionPool.java
    ConnectionPool.java:158: cannot resolve symbol
    symbol : class PooledConnection
    location: class cal.ConnectionPool
    private void addConnection(PooledConnection value) {
    ^
    ConnectionPool.java:144: cannot resolve symbol
    symbol : class PooledConnection
    location: class cal.ConnectionPool
    PooledConnection pcon = new PooledConnection(con);
    ^
    ConnectionPool.java:144: cannot resolve symbol
    symbol : class PooledConnection
    location: class cal.ConnectionPool
    PooledConnection pcon = new PooledConnection(con);
    The code is listed as follows for PooledConnection.java (it compiles fine)
    package cal;
    import java.sql.*;
    public class PooledConnection {
    // Real JDBC Connection
    private Connection connection = null;
    // boolean flag used to determine if connection is in use
    private boolean inuse = false;
    // Constructor that takes the passed in JDBC Connection
    // and stores it in the connection attribute.
    public PooledConnection(Connection value) {
    if ( value != null ) {
    connection = value;
    // Returns a reference to the JDBC Connection
    public Connection getConnection() {
    // get the JDBC Connection
    return connection;
    // Set the status of the PooledConnection.
    public void setInUse(boolean value) {
    inuse = value;
    // Returns the current status of the PooledConnection.
    public boolean inUse() {
    return inuse;
    // Close the real JDBC Connection
    public void close() {
    try {
    connection.close();
    catch (SQLException sqle) {
    System.err.println(sqle.getMessage());
    Now the code for ConnectionPool.java class that gives the cannot
    resolve symbol error
    package cal;
    import java.sql.*;
    import java.util.*;
    public class ConnectionPool {
    // JDBC Driver Name
    private String driver = null;
    // URL of database
    private String url = null;
    // Initial number of connections.
    private int size = 0;
    // Username
    private String username = new String("");
    // Password
    private String password = new String("");
    // Vector of JDBC Connections
    private Vector pool = null;
    public ConnectionPool() {
    // Set the value of the JDBC Driver
    public void setDriver(String value) {
    if ( value != null ) {
    driver = value;
    // Get the value of the JDBC Driver
    public String getDriver() {
    return driver;
    // Set the URL Pointing to the Datasource
    public void setURL(String value ) {
    if ( value != null ) {
    url = value;
    // Get the URL Pointing to the Datasource
    public String getURL() {
    return url;
    // Set the initial number of connections
    public void setSize(int value) {
    if ( value > 1 ) {
    size = value;
    // Get the initial number of connections
    public int getSize() {
    return size;
    // Set the username
    public void setUsername(String value) {
    if ( value != null ) {
    username = value;
    // Get the username
    public String getUserName() {
    return username;
    // Set the password
    public void setPassword(String value) {
    if ( value != null ) {
    password = value;
    // Get the password
    public String getPassword() {
    return password;
    // Creates and returns a connection
    private Connection createConnection() throws Exception {
    Connection con = null;
    // Create a Connection
    con = DriverManager.getConnection(url,
    username, password);
    return con;
    // Initialize the pool
    public synchronized void initializePool() throws Exception {
    // Check our initial values
    if ( driver == null ) {
    throw new Exception("No Driver Name Specified!");
    if ( url == null ) {
    throw new Exception("No URL Specified!");
    if ( size < 1 ) {
    throw new Exception("Pool size is less than 1!");
    // Create the Connections
    try {
    // Load the Driver class file
    Class.forName(driver);
    // Create Connections based on the size member
    for ( int x = 0; x < size; x++ ) {
    Connection con = createConnection();
    if ( con != null ) {
    // Create a PooledConnection to encapsulate the
    // real JDBC Connection
    PooledConnection pcon = new PooledConnection(con);
    // Add the Connection to the pool.
    addConnection(pcon);
    catch (Exception e) {
    System.err.println(e.getMessage());
    throw new Exception(e.getMessage());
    // Adds the PooledConnection to the pool
    private void addConnection(PooledConnection value) {
    // If the pool is null, create a new vector
    // with the initial size of "size"
    if ( pool == null ) {
    pool = new Vector(size);
    // Add the PooledConnection Object to the vector
    pool.addElement(value);
    public synchronized void releaseConnection(Connection con) {
    // find the PooledConnection Object
    for ( int x = 0; x < pool.size(); x++ ) {
    PooledConnection pcon =
    (PooledConnection)pool.elementAt(x);
    // Check for correct Connection
    if ( pcon.getConnection() == con ) {
    System.err.println("Releasing Connection " + x);
    // Set its inuse attribute to false, which
    // releases it for use
    pcon.setInUse(false);
    break;
    // Find an available connection
    public synchronized Connection getConnection()
    throws Exception {
    PooledConnection pcon = null;
    // find a connection not in use
    for ( int x = 0; x < pool.size(); x++ ) {
    pcon = (PooledConnection)pool.elementAt(x);
    // Check to see if the Connection is in use
    if ( pcon.inUse() == false ) {
    // Mark it as in use
    pcon.setInUse(true);
    // return the JDBC Connection stored in the
    // PooledConnection object
    return pcon.getConnection();
    // Could not find a free connection,
    // create and add a new one
    try {
    // Create a new JDBC Connection
    Connection con = createConnection();
    // Create a new PooledConnection, passing it the JDBC
    // Connection
    pcon = new PooledConnection(con);
    // Mark the connection as in use
    pcon.setInUse(true);
    // Add the new PooledConnection object to the pool
    pool.addElement(pcon);
    catch (Exception e) {
    System.err.println(e.getMessage());
    throw new Exception(e.getMessage());
    // return the new Connection
    return pcon.getConnection();
    // When shutting down the pool, you need to first empty it.
    public synchronized void emptyPool() {
    // Iterate over the entire pool closing the
    // JDBC Connections.
    for ( int x = 0; x < pool.size(); x++ ) {
    System.err.println("Closing JDBC Connection " + x);
    PooledConnection pcon =
    (PooledConnection)pool.elementAt(x);
    // If the PooledConnection is not in use, close it
    if ( pcon.inUse() == false ) {
    pcon.close();
    else {
    // If it is still in use, sleep for 30 seconds and
    // force close.
    try {
    java.lang.Thread.sleep(30000);
    pcon.close();
    catch (InterruptedException ie) {
    System.err.println(ie.getMessage());
    I am using Sun JDK Version 1.3.0_02" and Apache/Tomcat 4.0. Both the calling and the called class are in the same directory.
    Any help would be greatly appreciated.
    tnx..
    addi

    Is ConnectionPool in this "cal" package as well as PooledConnection? From the directory you are compiling from it appears that it is. If it is, then you are compiling it incorrectly. To compile ConnectionPool (and PooledConnection similarly), you must change the current directory to the one that contains cal and type
    javac cal/ConnectionPool.

  • I get "cannot create file" eror message when trying to download files

    I am having the exact same problem as this person and have done all the things suggested there.
    http://discussions.apple.com/thread.jspa?messageID=2725751&#2725751
    None of them work for me. Also when I try to change permissions I get an error message that says "Sorry, the operation could not be completed because an unexpected error occurred (error code 5)." This happened after I let my hard drive get too full a week or two ago.
    Thanks in advance for any help
    1.83ghz macbook (mine) ibook 1.2ghz (wife) mac mini 1.42 (mp3 iphoto server)   Mac OS X (10.4.8)   This is happening on my G4 mini

    HI Julian,
    Which of the many replies did you try?
    Have you run disk pemissions repair with the Disk Utility?
    Try this: Check the permissions on the desktop,
    clicking on the desktop itself go to the "File" menu "Get Info"
    Make sure that you have Read & Write in the "Ownership & Permissions" portion of the get info window, however if in the General portion of the "Get Info" window if the "Locked" checkbox is checked it will also prevent you from creating new files in the folder, if it is checked, uncheck it.
    Try downloading a file, any better?
    If not....are you able to download files in a test account?
    Try Safari in a other user or "Test" account, to create one:
    Under the Blue Apple go > System Preferences /Accounts/ Login Options use the [+] to create one, for ease you could enter test in all the fields.
    A test account helps us determine if this is a system wide issue or isolated to your user name account.
    Let us know.
    Eme;-[)
    Helpful.. Solved..... Awarding points to your helpers

  • Still getting error 4310 with itunes 11 when trying to burn a disc (and my comp is new)!!

    Help downloaded itunes 11 still getting error 4310 when buring to a disc. the computer is new. 

    whydoyouneedtoknow wrote:
    .... Given the number of people having the same issue, and given that this issue has been around for several years, it's crazy that this isn't fixed.
    I concur!! Come on Apple!!!

  • I KEEP GETTING ERROR MESSAGES 403 AND 404 WHEN TRYING TO SEARCH FROM FIREFOX..HOW COME

    when I bring up firefox it is usually to get into my mail...if I try to search for something thru google /yahoo I get error messages 403 or 404 ...

    ''SusanR62 [[#answer-722913|said]]''
    <blockquote>
    The only system I can get the video to work is Chrome.
    </blockquote>
    This is because Chrome does not use Adobe Flash Player. Chrome uses something called Pepper Flash, maintained by Google (not Adobe). The issues you are experiencing are Adobe Flash Player issues. You should be able to get assistance with these issues [https://forums.adobe.com/community/flashplayer/using_flashplayer on the Adobe forums].

  • File error:  Access Denied in FCP when trying to save a project.

    Can anyone help?  I'm trying to save a project in FCP, however I keep getting an error stating access denied. 
    Thanks

    Save it to a different folder or hard drive, quit and then try repairing your permissions with Disk Utility...
    You could also go to the folder where you are trying to save to, press command-i and check to see if the ownership is correct... then try to save (then run the Permissions repair).

  • Why do I keep getting error message from Digital Editions when trying to open it. Keeps telling me that it has encountered a problem and needs to close. I need this apparently to download a text book fro Proquest - need the text book for Uni work what giv

    Why do I keep getting an error message from Digital Editions saying that it has encountered a problem and needs to close. I need this programme to download a text book from Proquest for University work what gives????

    You are using ADE on Windows or Mac ? and their versions ??
    Please restart your machine and try once again.
    Thanks

  • Getting error message "Unable to Share" when trying to send pictures either by text or emai!  Is there something in my security settings that I need to change?

    I am unable to send pictures either by text or email. I will get an error message that states "Unable to Share".  Just purchased the iPhone 6 plus. Never had this issue with the 5.  Is there something that I need to change in my settings?

    I am unable to send pictures either by text or email. I will get an error message that states "Unable to Share".  Just purchased the iPhone 6 plus. Never had this issue with the 5.  Is there something that I need to change in my settings?

  • Vendor get error that submission deadline reached when it has not.

    Hi,
    The vendor when opens the bid invitation to submit a bid get an error End day has been reached. Submission deadline passed. but the bid invitation is still valid and the submission dead has not been  reached.
    Has anybody faced this problem?
    Regards,
    Ramesh-

    I guess they both are different fields . I would suggest you to populate "Submission deadline date" and leave the other field blank.
    Then the bidders can submit bids till the 'Submission deadline date' period.
    Hope this solves your problem.
    Regards
    Kathirvel

  • Why do I get error message 'disallowed key characters' when I try to access some websites.

    This has happened with two particular websites I've been trying to access. Both are in the same domain (.cam.ac.uk), so is it a problem with them or some setting on my computer?

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    If you use a bookmark then try to navigate to the page by starting from its main (home) page in case the bookmark is corrupted.
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"

  • TS3694 Hi Could someone help me..  I am getting error 3194 on my Iphone when trying to update software

    I have plugged my Iphone into my itunes account after trying to update to IOS 7.  Its an Iphone4s..  I have pressed home and sleep button but the error still comes up. 
    Kat

    Unable to contact the iOS software update server gs.apple.com
    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software and ensure that communication to gs.apple.com is allowed. Follow these stepsfor assistance with security software.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. Follow theadvanced iTunes Store troubleshooting steps to edit the hosts file or revert to a default hosts file. See "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information."
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.

  • I get Error Code: S7363-1266-48444350 when trying to watch Netflix

    I am unable to watch Netflix on my iMac using Safari. I get the Error Code: S7363-1266-48444350 my monitor isn't HDCP complaint. Tried Chrome but got this Malware crap I had to remove.
    Yosemite 10.10.2

    A poster named Barney - 15E posted a possible workaround in:
    HDCP error: can't play iTunes movies or netflix with yosemite
    Enable the Develop menu in Safari's preferences, Advanced.
    When using Netflix, In the Develop menu, select User Agent>Firefox - Mac.
    Or, you can just install Firefox and use that for viewing Netflix.

Maybe you are looking for

  • Background Problem in IE

    Hi Guys I've just uploaded a test page to see how it looks live and he background works well and expands to fill the screen... except for Internet Explorer! In Firefox, Chrome, Safari and Opera the background expands nicely to fill the screen but in

  • How do I get rid of virus.exe showing as a client in airport utility when i check on my airport extreme?

    I checked the names of users connected to my Airport Extreme and found a client with a name of virus.exe. How do i delete it?

  • HT203433 How to cancel an app download

    Not sure if I want to cancel the app or what I need to do. I already had the app downloaded and it was working fine until I tried to upgrade which definitely was not a good idea. I am away from my laptop and cannot connect my iPad to it. I'm camping

  • Delete millions of rows and fragmentation

    Hi Gurus, i have deleted 20 lak rows from a table which has 30 lak rows, and i wanted to release the fragmented space , please tell me the procedure other than exp/imp or alter table move and also the recommended way to do this prod env... (coalesce

  • Regarding profiles,USER_EXIT function

    Hi all, 1. Can u please brief me how that USER_EXIT function works.I have gone through the help but i didnt understand it.So please let me know that as soon as possible. 2.One more thing regarding profiles:let me tell u what steps i have proceeded: I