Can't Find File/Dir info  Error 3 :: 30 and (-43)

Please help me with this issue. There's very little previous mention anywhere about this sort of problem.
I'm trying to open an After Effects file that I haven't opened in a while, and the footage I used in the project has since been deleted. When I click it to open it it gives me the message:
After Effects Error: finding file/dir info for file "C://user// yada yada yada....Segment2.aep" file not found (-43) 
3 :: 30
All my plugins are still intact and I've tried everything mentioned on the one other thread about 3::30 (which only contained one suggestion).
I really need to access this file as I did a lot of work in there that I can use again and save days of work, even though the footage the file used is gone.
Thank you in advance!
-Raphi

Oh, well it looked from your initial description that you had possibly imported an After Effects project into another After Effects project.
That being said, you may want to try the very same thing to see if you can salvage you seemingly corrupt project file. Try to create a brand new After Effects project, and import the file that you're trying to open (Segment2.aep) into the new project. If the file isn't corrupted, it should import.
Aside from that, if you have a backup of your old project, I'd suggest trying to restore it.

Similar Messages

  • Windows can not find ' FILE ': error.

    I have downloaded and installed the production version of SQL Developer. (1.0.0.14.67)
    Windows XP SP 2.
    When I started it for the first time I checked all the file association check boxes.
    If I double click on a .sql file the following windows error occurs:
    Windows can not find '<file>'. Make sure you typed the name correctly, and then try again. To Search for a file, click the Start button, and then click search.
    SQL Developer does startup. The error message is closed when the OK button is selected.
    Any Ideas?
    Regards;
    Robert

    Hi Robert,
    Just to confirm, SQL Developer does actually open the file. The only issue is the error message displayed. I have logged a bug for that.
    There is a work around until that is sorted. If you use explorer to associate the file types with SQL Developer, they open without this error.
    Regards
    Sue

  • SEVERE: null : Can't find file '/WEB-INF/tiles-defs.xml'

    I'm trying to get Tiles to work with Struts on my server. I'm running a local instance of Tomcat v5.5. Development environment is Eclipse. I"ve looked everywhere on the web and can't find any solutions that work. I've been working on this for several days now. It shouldn't be this hard...
    I appreciate any help or suggestions people might have. I would really like to get beyond the configuration $#!^ and start coding.
    Thanks in advance!!!
    Jim
    Here are snippets from the pertinent files:
    web.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
         <display-name>
         admin</display-name>
         <welcome-file-list>
              <welcome-file>index.html</welcome-file>
              <welcome-file>index.htm</welcome-file>
              <welcome-file>index.jsp</welcome-file>
              <welcome-file>default.html</welcome-file>
              <welcome-file>default.htm</welcome-file>
              <welcome-file>default.jsp</welcome-file>
         </welcome-file-list>
         <servlet>
              <servlet-name>action</servlet-name>
              <servlet-class>
                   org.apache.struts.action.ActionServlet
              </servlet-class>
              <init-param>
                   <param-name>config</param-name>
                   <param-value>/WEB-INF/struts-config.xml</param-value>
              </init-param>
              <load-on-startup>1</load-on-startup>
         </servlet>
         <servlet-mapping>
              <servlet-name>action</servlet-name>
              <url-pattern>*.do</url-pattern>          
         </servlet-mapping>
         <jsp-config>
              <taglib>
                   <taglib-uri>struts-bean</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/struts-bean.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>struts-logic</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/struts-logic.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>struts-html</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/struts-html.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>struts-tiles</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/struts-tiles.tld</taglib-location>
              </taglib>
              <!-- The following tag library info was added for JSTL libraries. -->
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/fmt</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/fmt.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/fmt-rt</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/fmt-rt.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/core</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/c.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/core-rt</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/c-rt.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/sql</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/sql.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/sql-rt</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/sql-rt.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/x</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/x.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/x-rt</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/x-rt.tld</taglib-location>
              </taglib>
         </jsp-config>
    </web-app>
    struts-config.xml:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
    "/WEB-INF/dtds/struts-config_1_2.dtd">
    <struts-config>
         <!-- ============================================ Data Source Configuration -->
         <data-sources />
         <!-- ================================================ Form Bean Definitions -->
         <form-beans>
         </form-beans>
         <!-- ========================================= Global Exception Definitions -->
         <global-exceptions />
         <!-- =========================================== Global Forward Definitions -->
         <global-forwards />
         <!-- =========================================== Action Mapping Definitions -->
         <action-mappings>          
              <action path="/foobar" forward="/createAccount.jsp" />
         </action-mappings>
         <!--
         ============================================= Controller Configuration
         <controller contentType="text/html; charset=UTF-8" />
         ======================================== Message Resources Definitions
         <message-resources
              parameter="com.xilinx.web.registration.struts.res.ApplicationResources" />
         =============================================== Plug Ins Configuration -->
         <!--======================================================= Tiles plugin -->
         <!--
              This plugin initialize Tiles definition factory. This later can takes some
              parameters explained here after. The plugin first read parameters from
              web.xml, thenoverload them with parameters defined here. All parameters
              are optional.
              The plugin should be declared in each struts-config file.
              - definitions-config: (optional)
              Specify configuration file names. There can be several comma
              separated file names (default: ?? )
              - moduleAware: (optional - struts1.1)
              Specify if the Tiles definition factory is module aware. If true
              (default), there will be one factory for each Struts module.
              If false, there will be one common factory for all module. In this
              later case, it is still needed to declare one plugin per module.
              The factory will be initialized with parameters found in the first
              initialized plugin (generally the one associated with the default
              module).
              true : One factory per module. (default)
              false : one single shared factory for all modules
              - definitions-parser-validate: (optional)
              Specify if xml parser should validate the Tiles configuration file.
              true : validate. DTD should be specified in file header (default)
              false : no validation
              Paths found in Tiles definitions are relative to the main context.
         -->
              <plug-in className="org.apache.struts.tiles.TilesPlugin" >
              <set-property property="definitions-config" value="/WEB-INF/tiles-defs.xml" />
              <set-property property="definitions-debug" value="2" />
              <set-property property="definitions-parser-details" value="2" />
              <set-property property="definitions-parser-validate" value="true" />
              </plug-in>
         <!-- =================================================== Validator plugin
         <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
              <set-property property="pathnames"
                   value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml" />
         </plug-in>
         -->
    </struts-config>
    tiles-defs.xml (in the WEB-INF directory as are the other xml files...):
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE tiles-definitions PUBLIC "-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN"     
                                                 "http://jakarta.apache.org/struts/dtds/tiles-config_1_1.dtd">
    <tiles-definitions>
         <definition name="Tiles.register" page="/tiles/template.jsp">
              <put name="header" value="/tiles/header.jsp" />          
              <put name="body" value="/register.jsp" />
              <put name="footer" value="/tiles/footer.jsp" />
         </definition>
    </tiles-definitions>
    Console output when starting the server:
    INFO: Starting Servlet Engine: Apache Tomcat/5.5.17
    Jul 7, 2006 11:36:41 AM org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    Jul 7, 2006 11:36:43 AM org.apache.struts.tiles.xmlDefinition.I18nFactorySet initFactory
    SEVERE: null : Can't find file '/WEB-INF/tiles-defs.xml'
    Jul 7, 2006 11:36:43 AM org.apache.struts.tiles.TilesPlugin initDefinitionsFactory
    SEVERE: Can't create Tiles definition factory for module ''.
    Jul 7, 2006 11:36:43 AM org.apache.struts.action.ActionServlet init
    SEVERE: Unable to initialize Struts ActionServlet due to an unexpected exception or error thrown, so marking the servlet as unavailable. Most likely, this is due to an incorrect or missing library dependency.
    javax.servlet.ServletException: null : Can't find file '/WEB-INF/tiles-defs.xml'
         at org.apache.struts.tiles.TilesPlugin.initDefinitionsFactory(TilesPlugin.java:233)
         at org.apache.struts.tiles.TilesPlugin.init(TilesPlugin.java:137)
         at org.apache.struts.action.ActionServlet.initModulePlugIns(ActionServlet.java:869)
         at org.apache.struts.action.ActionServlet.init(ActionServlet.java:336)
         at javax.servlet.GenericServlet.init(GenericServlet.java:211)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1105)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:932)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3917)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4201)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
         at org.apache.catalina.core.StandardService.start(StandardService.java:450)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:709)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
    Jul 7, 2006 11:36:43 AM org.apache.catalina.core.ApplicationContext log
    INFO: Marking servlet action as unavailable
    Jul 7, 2006 11:36:43 AM org.apache.catalina.core.StandardContext loadOnStartup
    SEVERE: Servlet /admin threw load() exception
    javax.servlet.UnavailableException: null : Can't find file '/WEB-INF/tiles-defs.xml'
    I have the following jars in my Web App Libraries (WEB-INF/lib):
    standard.jar
    commons-fileupload.jar
    antlr.jar
    struts.jar
    commons-beanutils.jar
    commons-logging.jar
    commons-validator.jar
    myswl-connector-java-3.1.12-bin.jar
    struts-el.jar
    jstl.jar
    commons-digester.jar
    Struts is version: 1.2.9.
    JRE / JDK: 1.5.0_06 (Program files shows I have JRE 1.5.0_05 in the tree as well)
    Note: Struts will work if I comment out the tiles plug-in in the struts-config.xml file.

    you don�t call o files-defs.xml in jsp?

  • Old Problem/New Problem: Lightroom can't find file, then finds, but won't edit it.

    (Lightroom 2; Macintosh G5; OS X (10.4.11))
    First, the old problem which, though unresolved, is here mostly for background:
    A little over a month ago, I posted a question (at http://forums.adobe.com/thread/480423?tstart=0 ).
    The short version of that problem is that certain previously accessible images were not able to be opened in Lighroom. The preview image appeared in the main window accompanied by this message across the top of it:
    "The file named "[name of image/file]" is offline or missing."
    When I right clicked on the image and selected "Show in finder" I got this message:
    "The photo '[name of file]' could not be used because the original file could not be found. Would you like to locate it?"
    Below which was shown the original path to the file. In the middle of that path, one or more folders appeared with colons in their names in place of the slashes originally part of the names (some folders have dates in their names). Following the path via the Finder, the file was exactly where it was supposed to be, although, of course, slashes appeared instead of the colons that were in the Lightroom summary of the original path, but Lightroom couldn't find them.
    I was convinced that Lightroom was renaming the folders (but only in its interface; the original folders had correct names in the finder -- which is the only way they could have been named, since colons are illegal characters and won't be accepted as part of a file name). But I see now that there is some weird thing going on in the Finder itself. Even though I see the correct name on a folder when I search for it, or navigate through the hierarchy, if I click on the file at the end of that hierarchy (the file that Lightroom said it couldn't find) and ask for file info (via Command - I, or other method), the path to that file shows colons where slashes should be, but only in the names of the folders that were so named in Lightroom. All other folders with slashes in their names are listed correctly. So it's a Finder problem. Though this is still a mystery, I have been able to work around the problem. But how is this happening? (Note that I will be reformulating the question and posting it on the Apple discussion groups soon; I don't expect this forum to deal with Apple system issues. Just thought that others here may have had the same problem.)
    Now, the new problem, possibly related to the old one:
    In the same collection where I noted the previous problem, I selected an image that I wanted to print. The preview came up with this message:
    "The file could not be found."
    But when I right click on the image and select "Show in finder" it opens the correct Finder window with the file in question highlighted. The file, a TIFF, opens normally in Preview or Photoshop.
    So why does Lightroom think it's not there? (even though it can show me exactly where it is)
    I have edited this photo in Lightroom before. I have printed it from Lightroom before (as shown in the Lightroom history). But today it can't be edited, won't print and "could not be found"!!!
    I know I can print from Photoshop, or re-import this photo into Lightroom (along with any others that Lightroom "can't find"), though both would require time and re-editing the original. I would rather understand (if that's possible) why this is happening in the first place, so hopefully I can avoid such wackiness in the future.
    I realize that may have to burn some sage and hire a Shaman, but any ideas that won't smoke up the house or scare the cats would be most welcome.
    Thanks for reading.
    Leonard B.

    If you have an old goat around that's not doing so well, consider the sacrifice.
    The one thing that occurs to me besides the Gremlin, is the use of colons or slashes or some other character that the OS or LR doesn't like in some file name or other.  I think you'd have to change same in Finder, then show LR where the images are.

  • When exporting to Photoshop can not find files

    I have a drive that when I export an image to Photoshop it can not find the files. Any suggestions on getting them to read?

    I'm using MAC OS 10.49 the latest. I have 9 external hard drives. I can bring in all thumb nail images from all drives and as I update meta data it changes on all drives. But when I go to edit a specific image in Photoshop any image from this one drive and only this one drive I get error message "can not find file". If go out of Lightroom and into Bridge I can see the image and launch it in photoshop. It only happens so far with this one drive. I have several of the same manufacture drives. Does this help!

  • Emca -config dbcontrol db + Can't find file emoms.properties

    HI,
    Recently we upgradated the database from oracle 11.2.0 to 11.2.0.3 afte that i am unable to start the oem
    now i am configuring the dbcontrol by the following command:
    emca -config dbcontrol db
    but getting the error
    Please enter repository password:
    Exception caught
    Feb 13, 2013 12:04:54 PM oracle.sysman.emcp.util.PlatformInterface executeCommandExitValue
    CONFIG: stty: standard input: Invalid argument
    stty: standard input: Invalid argument
    Can't find file /orahome/oracle/product/11.2.0.3/db_1/youtele_pindb/sysman/config/emoms.properties
    java.lang.IllegalStateException: Can't find file /orahome/oracle/product/11.2.0.3/db_1/youtele_pindb/sysman/config/emoms.properties
            at oracle.sysman.emSDK.conf.ConfigManager.processProperties(ConfigManager.java:1154)
            at oracle.sysman.emSDK.conf.ConfigManager.processProperties(ConfigManager.java:1127)
            at oracle.sysman.eml.sec.rep.EmKeyUtil.<init>(EmKeyUtil.java:111)
            at oracle.sysman.eml.sec.rep.EmKeyUtil.main(EmKeyUtil.java:507)
    log4j:WARN No appenders could be found for logger (sec.rep.EmKeyUtil).
    log4j:WARN Please initialize the log4j system properly.
    Feb 13, 2013 12:04:54 PM oracle.sysman.emcp.util.DBControlUtil copyEmkeyToRepos
    SEVERE: Error copying Em Key to Management Repository. The Em Key is not configured properly or is corrupted in the file system and does not exist in the Management Repository. To correct the problem:
    1) Copy the emkey.ora file from another OMS or backup machine to the /orahome/oracle/product/11.2.0.3/db_1/sysman/config and run following commands:
    i) /orahome/oracle/product/11.2.0.3/db_1/bin/emctl config emkey -emkeyfile /orahome/oracle/product/11.2.0.3/db_1/sysman/config/emkey.ora  -force
    ii) /orahome/oracle/product/11.2.0.3/db_1/bin/emctl  config emkey -copy_to_repos
    iii) Run EM Configuration Assistant again
    2) If emkey.ora is not available from backup, run /orahome/oracle/product/11.2.0.3/db_1/bin/emca with -repos create optionAppreciated inputs on the above errors
    Thanks

    actually the above error provide with solutions also.

  • Photos 10.10.3 will not let me play or move my videos and keeps sending a message saying "can not find file". What do I do to get the videos back?

    Photos 10.10.3 will not let me play or move my videos and keeps sending a message saying "can not find file". What do I do to get the videos back? It is only during videos that I previously uploaded off my phone. It loads them and tells me how long they are but when I go to press play it says can not find file. I have restarted my computer, what else can I do?

    Check the information on the song, Right-Click -> Get Info.
    In the fist pane, (Summary), you will see the AppleId (Account Name) that was used to buy the song.
    Be sure to login to use this account to register this computer to play the song
    What I often see, Is that people have many different AppleID, sometime not even knowing it, which is a big problem.

  • HT204088 I installed iphone 5 from iTunes backup but still have one app showing [ ! ] not installed can not find file . How do I get rid of this pop up

    I installed iphone 5 from itunes back up and get a pop up [ ! ] app not installed can not find file. I have looked through everything that have with "CANADA" in the app title. That is the only info there is.

    If you haven't found out which app it is then if you go into list view in the Apps part of your library do any of the apps have an exclamantion mark against them ? If they do then they are the one(s) that iTunes can't find the actual app file(s) for - if you delete that app from your library then if it is still in then you should be able to re-download it via the Purchased link under Quicklinks on the right-hand side of the iTunes store homepage on your computer's iTunes, or you can just download it directly on your phone via the Purchased tab in its App Store app

  • Can not find file

    i get error message c\usuer(my name)\appdata\local\apps\adobe\gdpi.dll

    I do not know my cuputer scree was in sleepmode and I saw a message saying computer needs to reboot for updates.   the error message I get on rebooting says     c:\usrs\don\appdata\local\apps\adobe\gdpi.dll    can not find file.

  • Can not find file must locate each song one at a time need to restore my whole library

    can not find file, must locate each song one at a time need to restore my whole library

    Hello BadSteve,
    It sounds like iTunes seems to have lost track of all your music and you must locate each file individually. I would recommend at this point that you check for 3rd party plugins to see if there are any causing an issue:
    iTunes: Troubleshooting issues with third-party iTunes plug-ins
    http://support.apple.com/kb/ts3430
    If the issue persists after removing the plugins, I would next try recreating your iTunes library:
    iTunes: How to re-create your iTunes library and playlists
    http://support.apple.com/kb/ht1451
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • I am trying to install itunes 10.5.1 but it can't find file IXP609.TMP where can i get this

    i am trying to install itunes 10.5.1 but it can't find file IXP609.TMP so stopping the upgrade.   how do i upgrade itunes?  I tried uninstalling but it can't find another file 389 so I can neither uninstall nor reinstall.  Any thoughts please?

    Hi Rick,
    by "repair" I mean I went to the control panel, option - programs and features, and in the list of all my installed programs I selected "Apple Software Update". On top of the screen you find the options Uinstall, Change and Repair. I clicked the repair button and that did the trick. After the repair I could uninstall the program. I also uninstalled iTunes, Apple Application Support, Apple Mobile Device Support en Bonjour, thus all Apple programs. Then I installed iTunes 10.5 again and everything went fine.
    Success,
    Peter

  • I get itunes can't find file when I tried to play a TV show I had purchased that was supposed to be in the cloud. There are several of these, including an entire season. In the store it shows that I purchased these shows when I checked them.

    I get itunes can't find file when I tried to play a TV show I had purchased. I then checked and had this problem with an entire TV season I had purchesed. The shows were supposed to be in the cloud. I went to the itunes store, went to the tv shows and they showed that I had purchesed them. They do not show up when I click on purchesed in the store.

    Try this...
    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping. In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library.itl as iTunes Library (Corrupt).itl and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    See iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    When you get it all working make a backup!
    tt2

  • How do I get past "can't find valid dvd player" error?

    This is regarding a G4 powermac running Tiger 10.4.3
    My Sony dual layer DRX-720UL/T seems to work fine with DVD-ROM content. My kids use it for DVD-ROM games and I had no problem installing Tiger. Problem comes in when I open "DVD player" and get a "Can't find valid dvd player," error. They're connected via Firewire 400, and I've tried the USB link, just to see, but the same error comes up. I'm fairly certain that I viewed a DVD before upgrading to Tiger. The Sony is supposed to be fully mac compatiable, and even comes with Toast light 6. Again all seems to be well except for the fact that DVD player won't allow me to view a NTSC DVD. No matter how many I try.

    What drive was in this G4 prior?
    If you did not have a DVD drive, you need to use Pacifist to extract & install DVD Player.app; downloading or drag&drop won't work.
    Also, Sony drives are probably the worst when it comes to compatability; one specific model may work fine, and others not. This should be less of an issue in Tiger, but only if the problem is other than the optical drive firmware, about which you can do nothing (on a Mac), unlike Pioneer & NEC drives that have mac-based flashers available.
    If DVD Player was installed previously, based on having a DVD drive prior to Tiger install, you may want to try running the 10.4.3 Combo updater over your existing install.

  • I had to get a new ipod....they said I just needed to plug it in and sync to my itunes.. I get an error 1413 when I try to follow the instructions to restore.  I can't find any information on error 1413, what does this mean?

    I had to get a new ipod....they said I just needed to plug it in and sync to my itunes.. I get an error 1413 when I try to follow the instructions to restore.  I can't find any information on error 1413, what does this mean?

    Now it keeps saying that it is restored but there is still no music or video on it. And a new error is coming up that says "We could not complete your iTunes store request.The iTunes Store is temporarily unavailable. Please try again later."

  • Upgraded to 6.01 & "can't find file" appears

    I upgraded to Ilife 6 and DVD made in V4 open with the message "can't find file". I upgraded to 6.01 and still have this message. How do you fix this problem.
    thanks,

    teit:
    You're getting that message because iDVD uses links to iPhoto's library folder system for the photos in the iDVD project. Since V6 has changed that folder system iDVD has lost it's links and cannot find the files. Unless you only have one or two files to re-link, doing it manually is impossible. iDVD 6.0.1 was supposed to fix that problem but apparently not for you. At this point, you may not be able to recover the project unless you have a backup copy of your V4 library that you can put in the Pictures folder for iDVD to find and use.

Maybe you are looking for