Unable to open leopard files on windows server

Hi,
We had a mac which was on Leopard and saved files to the server
The file system we use is a Windows 2008 File Server, this has worked fine with leopard for years
However I understand that Leopard splits the files into resource forks - and that Lion has dropped support for these files.
That particular mac is now on Lion as we upgraded and encountering LOTS of issues
I unable to open or edit lots of the files as i believe chunks of the files are missing.
E.g an .eps file showed as 740KB on leopard - Viewing from a windows PC it was 730kb for the .eps and 10kb for the ._ resource fork.
Now that we are on the LION upgrade, we only see the .eps file and it is only 730kb. Information missing is things such as preview (quark), Font data, type of file, version number
Is there anyways to fix this? we have hundreds! of images, files etc created with leopard and now upgraded to lion they all have become useless!
Rejoining the resource forks and files together so that they are usable on lion
Thanks

You also may want to post this in the Lion forum, someone there may have some insight.

Similar Messages

  • Lion - unable to read old leopard files on windows server

    Hi,
    We had a mac which was on Leopard and saved files to the server
    The file system we use is a Windows 2008 File Server, this has worked fine with leopard for years
    However I understand that Leopard splits the files into resource forks - and that Lion has dropped support for these files.
    That particular mac is now on Lion as we upgraded and encountering LOTS of issues
    I unable to open or edit lots of the files as i believe chunks of the files are missing.
    E.g an .eps file showed as 740KB on leopard - Viewing from a windows PC it was 730kb for the .eps and 10kb for the ._ resource fork.
    Now that we are on the LION upgrade, we only see the .eps file and it is only 730kb. Information missing is things such as preview (quark), Font data, type of file, version number
    Is there anyways to fix this? we have hundreds! of images, files etc created with leopard and now upgraded to lion they all have become useless!
    Rejoining the resource forks and files together so that they are usable on lion
    Thanks

    You installed the Developer Tools and ran the command line utility fixupresourceforks?
    I would think that would work.  Can maybe try this as well:
    Check to see if the file is already created and if not create it using the first line using touch. If file is already there just run the other two lines following the touch command line: 
    sudo touch /etc/nsmb.conf
    sudo echo "[default]" > /etc/nsmb.conf
    sudo echo "streams=no" >> /etc/nsmb.conf
    If you have slow browsing and issues create or renaming folders add:
    sudo echo "notify_off=yes" >> /etc/nsmb.conf
    Then re-connect to server shares or reboot and connect to shares again.

  • Unable to open a file in Application server

    This path exist in the Application server.
            DR1/interfaces/Esker
    ORDHIST - This is the File name in whihc i need to save the data.
    I had specified the whole path as DR1/interfaces/Esker/ORDHIST
    I am trying to upload the data from the Internal table to the above specified file ORDHIST.
    It is not opening the File on the application server, it says that it 'could not open file'.
    Any suggestions will be apprecaited to open the file and transfer the data from
    Final Internal table to --> Application server
    Below is my code....If found any mistakes then plz correct me...
    *&      Form  UPLOAD_APPLSERVER
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM UPLOAD_APPLSERVER .
    DATA : GV_OUTPUT(275) TYPE C.
    DATA : P_FILE TYPE STRING.
    P_FILE = 'DR1/interfaces/Esker/ORDHIST'.
    OPEN DATASET P_FILE FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    IF SY-SUBRC <> 0.
        MESSAGE : I002(ZMSSG) WITH 'Could not open file'.
        STOP.
    ENDIF.
    LOOP AT T_FINAL1 INTO WA_FINAL1.
    CONCATENATE  WA_FINAL1-VBUND
                  WA_FINAL1-BSTNK
                  WA_FINAL1-KUNNR
                  WA_FINAL1-AUDAT
                  INTO GV_OUTPUT
                  SEPARATED BY ','.
    TRANSFER GV_OUTPUT TO P_FILE.
    IF SY-SUBRC <> 0 .
         MESSAGE : I003(ZMSSG) WITH 'Trasnfer is failed'.
         STOP.
    ENDIF.
    ENDLOOP.
    CLOSE DATASET P_FILE.
    ENDFORM.                    " UPLOAD_APPLSERVER
    Thanks & Regards,
    Krishna

    Hello Kittu,
    What was the Sy-Subrc value after executing the Open Dataset statement?
    If it is 8, then the problem could be with
    1) The path name not mentioned properly (or)
    2) User Id might not be having access to the file mentioned in the path
    Also, if you are using the App Server as UNIX then the filenames should be of case sensitive.
    Check the path first and note it down as per the actual case
    Hope this is helpful
    Thanks,
    Babu Kilari
    Edited by: Babu Kilari on Apr 6, 2009 6:18 AM

  • Unable to open Excel files on Windows Network

    I can no longer access Excel files on a windows network drive. I have tried disconnecting and reconnecting, restarting my computer and it still doesn't work. I am able to drag the files to my desktop to open it, but It will not let me save back to the network and replace the exsisting file. Says that it can not be accessed and may be read only.
    It worked for me the first week I had the computer, but then stopped. All other file types open just fine.
    Please help.
    MacBook Pro Mac OS X (10.5.4)

    Excel files can be protected by the author. That is, an 'internal to the file' flag can be set to read only.
    Additionally, for files on the network, if a file was improperly closed, then the server believes the file is still in use, therefor, marks it as read only.
    It's easier to do the next thing from a windows box... make sure the windows box is set to show hidden files.
    Navigate to the directory in which the file is located, and check it for hidden temp files. It will likely be named
    "~actual name of file.xls."
    This is an indicator someone either has the file open, or had it open, didn't close it properly, thus it is considered open.
    Deleting the hidden "~nameoffile.xls" may clear the problem.

  • Unable to create a file in Application Server using OPEN DATASET stattement.

    I am unable to create a file in Application Server using the following statement.
    OPEN DATASET filename FOR OUTPUT
    IN TEXT MODE ENCODING DEFAULT
    MESSAGE msg.
    The message I'm getting is "Permission Denied". I have checked authorisation using SU53 which says "The last authorization check was successful". Please help.

    You can use following code to capture the error.
    TRY.
          OPEN DATASET filename FOR OUTPUT IN BINARY MODE MESSAGE V_MSG.
          CATCH CX_ROOT
          INTO EXCEPTION.
          CALL METHOD O_EXCEPTION ->IF_MESSAGE~GET_TEXT
            RECEIVING
            RESULT = V_MSG.
          MESSAGE v_msg
          TYPE 'E'.
    ENDTRY.
    You can capture error in v_msg.
    Following are the exceptions for the same:
    Exceptions
    Catchable Exceptions
    CX_SY_FILE_OPEN
    Cause: The file is already open.
    Runtime Error: DATASET_REOPEN
      CX_SY_CODEPAGE_CONVERTER_INIT   
    Cause: The desired conversion is not supported. (Due to specification of invalid code page or of language not supported in the conversion, with SET LOCALE LANGUAGE.)
    Runtime Error: CONVT_CODEPAGE_INIT
    CX_SY_CONVERSION_CODEPAGE
    Cause: Internal error in the conversion.
    Runtime Error: CONVT_CODEPAGE
    CX_SY_FILE_AUTHORITY
    Cause: No authorization for access to file
    Runtime Error: OPEN_DATASET_NO_AUTHORITY
    Cause: Authorization for access to this file is missing in OPEN DATASET with addition FILTER.
    Runtime Error: OPEN_PIPE_NO_AUTHORITY
      CX_SY_PIPES_NOT_SUPPORTED   
    Cause: The operating system does not support pipes.
    Runtime Error: DATASET_NO_PIPE
    CX_SY_TOO_MANY_FILES
    Cause: Maximum number of open files exceeded.
    Runtime Error: DATASET_TOO_MANY_FILES   Non-Catchable Exceptions   
    Cause: An attempt was made to open a pipe that is already open.
    Runtime Error: DATASET_PIPE_POSITION
    Hope that will help you.
    Please reward if useful.

  • HT3678 If I download a .mov file from gmail, I am not able to open the file. I reinstalled QuickTime 7.6.6, still unable to open the file. If I download the same file from another mail server I have no trouble. What is gmail doing to my file?

    If I download a .mov file from gmail, I am not able to open the file. I reinstalled QuickTime 7.6.6, still unable to open the file. If I download the same file from another mail server I have no trouble. What is gmail doing to my file?

    Also i have reinstalled the reader9 two  times and tried with reader8 also but in both the cases same problem.
    it would be gr8 help if someone can help.

  • ERROR: Unable to open TUXCONFIG file

    Hi,
    I installed and installed the following software successfully on Windows XP
    Oracle WebLogic Server 11gR1 (10.3.1) Microsoft Windows
    PeopleSoft Enterprise PeopleTools 8.50
    PeopleSoft Enterprise Human Resources Management System 9.1 - Revision 2
    Tuxedo 10gR3 for MS Windows Server 2003 w/MS VS 2005 (32-bit x86, AMD64/EM64T x64) 32-bit
    i am at the point of installing the Application Server. Domain created sucessfully but i got boot errors as shown below.
    I searched for the TUXCONFIG file but could not find it in the tuxedo installation folder.
    I read that i have to create the TUXCONFIG,if missing, using tmloadcf.exe and the ubbconfig file, but the only UBBCONFIG file is located in "\samples\atmi\rpcsimp\" folder.
    How do i create the TUXCONFIG file?
    Did i miss something with the installation? What location should this file exist after your tuxedo installation?
    thanks
    K
    BOOT ERRORS:
    PeopleSoft Domain Boot Menu
    Domain Name: hrms
    1) Boot (Serial Boot)
    2) Parallel Boot
    q) Quit
    Command to execute (1-2, q) [q]: 1
    Attempting to boot bulletin board...
    tmadmin - Copyright (c) 2007-2008 Oracle.
    Portions * Copyright 1986-1997 RSA Data Security, Inc.
    All Rights Reserved.
    Distributed under license by Oracle.
    Tuxedo is a registered trademark.
    No bulletin board exists. Entering boot mode.
    115818.SU1491!PSWATCHSRV.5832.6140.-2: LIBTUX_CAT:1519: ERROR: TUXCONFIG value (C:\Documents an
    d Settings\klondon\psft\pt\8.50\appserv\hrms\PSTUXCFG) is longer than the allowed length of 64
    115818.SU1491!PSWATCHSRV.5832.6140.-2: LIBTUX_CAT:588: ERROR: Unable to open TUXCONFIG file
    115818.SU1491!PSWATCHSRV.5832.6140.-2: LIBTUX_CAT:6272: ERROR: Unable to get bulletin board par
    ameters
    115818.SU1491!tmboot.2652.1488.-2: CMDTUX_CAT:825: ERROR: Process PSWATCHSRV at SU1491 failed w
    ith /T tperrno (TPESYSTEM - internal system error)
    115818.SU1491!tmboot.2652.1488.-2: tmboot: CMDTUX_CAT:827: ERROR: Fatal error encountered; init
    iating user error handler
    115821.SU1491!BBL.2956.4352.0: CMDTUX_CAT:26: INFO: The BBL is exiting system
    115825.SU1491!PSADMIN.3088: End boot attempt on domain hrms
    Edited by: user2932595 on Apr 17, 2010 1:17 PM
    Edited by: user2932595 on Apr 17, 2010 1:21 PM

    Hi
    The TUXCONFIG file normally is created automatically when you create your domain.
    In this case I think you ran into trouble because the path of installation is too long!
    Note the error in your log:
    115818.SU1491!PSWATCHSRV.5832.6140.-2: LIBTUX_CAT:1519: ERROR: TUXCONFIG value (C:\Documents and Settings\klondon\psft\pt\8.50\appserv\hrms\PSTUXCFG) is longer than the allowed length of 64
    Your path is 69 chars long!
    I would suggest that you re-try the configuration with a shorter tuxedo and PS_HOME: perhaps in the root directory (c:\PSHOME)
    In the past I've also noticed that installations have problems with paths that have spaces - ex: 'Documents and settings' , so I would avoid that as well.
    Edited by: Alternate on Apr 19, 2010 2:00 AM

  • Unable to open pst file error details access to the path is denied

    Hello,
    iam trying to do a mailboximport-request from a QNAP-nas that is member of the domain.
    When doing the mailboximport i am getting the following error : unable to open pst file error details access to the path is denied.
    Which permissions do i need to have on the folder/file on the qnap to import the .pst-file?
    Thx

    Move your PST files to a windows server.  Exchange Trusted Subsystem is a universal group in Active Directory.
    Read more here: http://technet.microsoft.com/en-us/library/ee633455(v=exchg.141).aspx#Pre
    Mike Crowley | MVP
    My Blog --
    Planet Technologies

  • Unable to open .chm file from a link in Weblogic 7.0

    Unable to open .chm file from a link in weblogic server. But the same
    jsp code works in Websphere
    Sample Code :
    <!-- < a href="JavaScript:window.navigate('help/manual.CHM')">
    Linked Text</a> -->
    The above link, works well in websphere. help is a folder that
    resides in the server. But when i tried to execute the same in
    Weblogic, some junk characters appeared . so i tried to direct the
    link to Display.jsp and passed the path of the chm file as the
    parameter. I cleared teh out buffer using out.clearBuffer() . i set
    the content type to application/x-msdownload and also set the header
    to content disposition.
    Nothing worked .
    I also tried another way.. That is the following
    I even tried including the mime type
    <mime-mapping>
    <extension>chm</extension>
    <mime-type>application/x-msdownload</mime-type>
    </mime-mapping>
    in the web.xml file. and still it doesnt work
    Nothing Worked . What should i do ? I need immediate help to sort out
    this issue. Can anybody help me
    - Angel

    This could be a Launch Services issue. The following article describes how to manually reset Launch Services — the notes at the bottom of the article also provide information about the side effects of deleting each of the files involved:
    Resetting Launch Services
    If you prefer using a cache cleaning utility instead of following the manual procedure described in the previous article, take a look at this other article for general troubleshooting and cache-cleaning procedures. Actually, you should also verify/repair the startup disk (not just permissions), as described there:
    Resolving Disk, Permission, and Cache Corruption
    The most appropriate utility for this particular problem probably is Tiger Cache Cleaner, but you may also want to consider other utilities, such as OnyX, or Cache Out X, which are free. Whatever utility you choose, be sure to read this first:
    Side effects of System cache cleaning
    As an example, this is how you should proceed with OnyX:
    1. Quit all applications.
    2. Launch OnyX and enter your administrator password.
    3. Go to Maintenance > Reset and check LaunchServices database.
    4. Un-check any other pre-checked options.
    5. Click the Execute button.
    6. Restart the computer.
    BTW, if you’re running Mac OS X 10.4 (Tiger), as your profile indicates, it would have been more appropriate to discuss this in the Mail & Address Book - Tiger forum. If the discussion applies to both Mail 1.x and Mail 2.x, it doesn’t really matter, but it’s difficult to know that in advance.

  • Unable to open desktop file /usr/share/applications/redhat-email.desktop for panel launcher: No such file or directory

    Dear Experts,
    Please note that I am facing a chllenge while confiuguring the VNCServer on the local test Server. The Local Test Sver OS Version is Redhat Enterprise Linux Server 
    Release 5.5 32-bit. Please review the following error message and advise me on how to fix the vncserver issue.
    [root@test .vnc]#  cat xstartup
    #!/bin/sh
    # Uncomment the following two lines for normal desktop:
    unset SESSION_MANAGER
    exec /etc/X11/xinit/xinitrc
    gnome-session &
    [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
    [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
    xsetroot -solid grey
    vncconfig -iconic &
    #xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
    twm &
    [root@test .vnc]#  cat /etc/sysconfig/vncservers
    # The VNCSERVERS variable is a list of display:user pairs.
    # Uncomment the lines below to start a VNC server on display :2
    # as my 'myusername' (adjust this to your own).  You will also
    # need to set a VNC password; run 'man vncpasswd' to see how
    # to do that.
    # DO NOT RUN THIS SERVICE if your local area network is
    # untrusted!  For a secure way of using VNC, see
    # <URL:http://www.uk.research.att.com/archive/vnc/sshvnc.html>.
    # Use "-nolisten tcp" to prevent X connections to your VNC server via TCP.
    # Use "-nohttpd" to prevent web-based VNC clients connecting.
    # Use "-localhost" to prevent remote VNC clients connecting except when
    # doing so through a secure tunnel.  See the "-via" option in the
    # `man vncviewer' manual page.
    # VNCSERVERS="2:myusername"
    # VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -nohttpd -localhost"
    VNCSERVERS="1:oracle"
    [root@test .vnc]# ls
    passwd test.oracle.co.zm:1.pid  test.oracle.co.zm:3.log  test.oracle.co.zm:5.pid  test.oracle.co.zm:6.pid
    test.oracle.co.zm:1.log test.oracle.co.zm:2.log  test.oracle.co.zm:5.log  test.oracle.co.zm:6.log  xstartup
    [root@test .vnc]# more test.oracle.co.zm:1.log
    Xvnc Free Edition 4.1.2
    Copyright (C) 2002-2005 RealVNC Ltd.
    See http://www.realvnc.com for information on VNC.
    Underlying X server release 70101000, The X.Org Foundation
    Tue Mar 11 11:18:37 2014
    vncext:      VNC extension running!
    vncext:      Listening for VNC connections on port 5901
    vncext:      Listening for HTTP connections on port 5801
    vncext:      created VNC server for screen 0
    Could not init font path element unix/:7100, removing from list!
    localuser:root being added to access control list
    No profile for user 'root' found
    SESSION_MANAGER=local/test.oracle.co.zm:/tmp/.ICE-unix/13603
    Window manager warning: Log level 32: could not find XKB extension.
    ** (eggcups:13671): WARNING **: IPP request failed with status 1030
    ** (eggcups:13671): WARNING **: IPP request failed with status 1030
    ** (nm-applet:13697): WARNING **: No connections defined
    Initializing nautilus-open-terminal extension
    Unable to open desktop file /usr/share/applications/redhat-email.desktop for panel launcher: No such file or directory
    Unable to open desktop file /usr/share/applications/openoffice.org-1.9-writer.desktop for panel launcher: No such file or directory
    Unable to open desktop file /usr/share/applications/openoffice.org-1.9-impress.desktop for panel launcher: No such file or directory
    Unable to open desktop file /usr/share/applications/openoffice.org-1.9-calc.desktop for panel launcher: No such file or directory
    [root@test .vnc]#
    Regards
    Mohammed Abdul Muqeet

    Hi,
    Try these 3 solutions
    1. Did you start vncserver services as:
    service vncserver start
    2.Check that port 5901 has not been blocked by a firewall:
    # nc -vz localhost 5901
    You should get a connection and a termination. If you get an error, fix the firewall.
    3. service iptables stop
    Hope This Helps
    Regards,
    -DK

  • "Unable to open config file" Error when starting tomcat

    hi all,
    Here is the output from two of the log files when I start tomcat4 on my linux box. I have configured the mod_jk on the tomcat side.
    From the output of the second log file, it seems that the ajp13 worker I defined was started successfully. What I don't understand is the following:
    1) In catalina.out, where des the line 'Unable to open config file' come from? Which config file?
    2) Tomcat4 is supposed to generate a mod_jk.conf automatically, but I don't see any file generated in 'conf/auto/'.
    Content of 'catalina.out'
    Unable to open config file
    Starting service Tomcat-Standalone
    Apache Tomcat/4.0.4
    Unable to open config file
    Starting service Tomcat-Apache
    Apache Tomcat/4.0.4content of 'catalina_log.2002-08-16.txt'
    2002-08-16 01:05:22 HttpConnector Opening server socket on all host IP addresses
    2002-08-16 01:05:28 Ajp13Connector[8009] Opening server socket on all host IP addresses
    2002-08-16 01:05:28 Ajp13Connector[8009] Starting background thread
    2002-08-16 01:05:29 Ajp13Processor[8009][0] Starting background thread
    2002-08-16 01:05:29 Ajp13Processor[8009][1] Starting background thread
    2002-08-16 01:05:29 Ajp13Processor[8009][2] Starting background thread
    2002-08-16 01:05:29 Ajp13Processor[8009][3] Starting background thread
    2002-08-16 01:05:29 Ajp13Processor[8009][4] Starting background thread

    I have all those files too.
    I think the 'config file' mentioned in the error log is the mod_jk.conf.
    On Jason Hunter's tomcat4 guide, it says don't use the tomcat4 RPM to installed. What is the difference bettween the RPM version and the tar.gz version? The only difference I can think of is that in the RPM version, the conf directory is in the 'etc/tomcat4/conf'. Could it be the reason that tomcat4 cannot read the config file? But it has no problem reading the server.xml though.

  • Unable to open RAW files in CS6 after update

    Hi all,
    I have Photoshop CS6 and have been able to open my D4 Raw files with no issues using the Camera Raw version 7.1 plugin.
    Yesterday I upgraded my Mac OS from Snow Leopard to Yosemite (a big jump I agree) and proceeded to update Photoshop to the latest version as well as installing Adobe DNG Converter 8.8.
    I am apparently still using the same 7.1 plugin version as I always have but I am now no longer able to open any RAW files through Photoshop as it displays a message saying 'files not recognised' when I try to open them.
    Have I skipped too many updates? Do the latest Photoshop CS6 updates leave me unable to open RAW files? Am I being pushed down the CC route?
    Could anybody offer any help at all as I have a wedding to edit but cannot open any files!!! Stress!!!
    I backed up my system through Time Machine before I did the update but im not sure if I restore that I will still have Yosemite OS running.
    Any help or advice really is appreciated.
    Many thanks.
    Phil

    Camera RAW should be at version 8.8 for CS6
    Adobe - Photoshop : For Macintosh
    Adobe - Adobe Camera Raw and DNG Converter : For Macintosh

  • I am unable to open some file because there is "encrypt contents to secure data" attribute applied by me before format my pc

    Please see this chat session
    Shayne M: 
    3:03:06 PM 
    Hi, thanks for visiting Answer Desk! I'm Shayne M.
    You: 
    3:03:24 PM 
    Hi! I am Surendra from Lucknow Inida.
    Shayne M: 
    3:03:37 PM 
    Hello
    How can I help you?
    You: 
    3:05:35 PM 
    Madam my some file in green color and i am unable to open these file because there is encryption attribute applied by me some time before and now i am unable to remove encryption from my files
    because today I format my system please help me
    Shayne M: 
    3:06:01 PM 
    oh, sorry to hear that.
    may I know what type of files is that?
    is that a word file?
    You: 
    3:07:37 PM 
    many type files excel pdf doc docs and many more some programs also encrypted, and some folder also encrypted.
    Shayne M: 
    3:07:48 PM 
    I see.
    may I know what version of windows do you have?
    You: 
    3:08:53 PM 
    Window 7 Professional
    Shayne M: 
    3:09:16 PM 
    I see, thanks.
    Click here (Link Silverlight)
    you can try that link
    Dial toll-free: 1800 102 1100 or 1800 111 100
    Direct dial: +91 80 40103000
    or dial that number for Microsoft India.
    any other questions for me?
    You: 
    3:10:34 PM 
    I am downloading silverlight.exe please wait
    Shayne M: 
    3:10:41 PM 
    okay.
    please try the link I gave you, if that will not work, feel free to contact us back so we can look for any other options for you,
    you may also contact the number I gave you for Microsoft India support.
    You: 
    3:13:40 PM 
    program install successfully what to do now ?
    Shayne M: 
    3:13:59 PM 
    please follow the intructions I gave you.
    it's on the link.
    You: 
    3:14:45 PM 
    please repeat
    Shayne M: 
    3:14:53 PM 
    Click here
    (Link Silverlight)
    there you go,
    if that will not work,
    feel free to contact us back
    You: 
    3:15:11 PM 
    please wait i am reading
    Shayne M: 
    3:15:23 PM 
    Dial toll-free: 1800 102 1100 or 1800 111 100
    Direct dial: +91 80 40103000
    or you may dial that number/
    just take your time reading that. I cannot stay any longer Surendra.
    anything else?
    You: 
    3:17:18 PM 
    I am unable to remove attribute till now
    Shayne M: 
    3:17:28 PM 
    alright,
    you may contact the number I gave you for further assistance.
    Dial toll-free: 1800 102 1100 or 1800 111 100
    Direct dial: +91 80 40103000
    that's Microsoft for India.
    You: 
    3:18:43 PM 
    ok
    Shayne M: 
    3:18:43 PM 
    anything else?
    Thank you for contacting Microsoft Answer Desk, you Have a Great Day,Take care.
    You: 
    3:19:04 PM 
    thank you
    Shayne M: 
    3:19:10 PM 
    you're welcome.
    Your Answer Tech Shayne M has ended your chat session. Thanks for visiting Answer Desk.

    Hey guys,
    So this is follow up from my debarkle with the EDD. I found out my problem with copying files from Mac to EDD and vice versa was a result of a not so good EDD ( i had an apollo hard drive from imation) that was not very compatible with macs. So i did my research and found out that the best hard drives were Western Digital and Seagate. I bought the newest western digital EDD 1TB and formated it to FAT32 and guess what...no problems so far. The only problem is that FAT32 format doesn't copy files larger than about 4 gigs so i couldnt copy a movie from my brothers computer onto my EDD that was 1080p. You could probably resolve that by partitioning a small part of your hard drive in ExFAT? but yeah, hopefully that helped guys.
    Aaisha

  • I am unable to open video files on this website.

    When I click on video links of the following website--http://tubtub.com/--I receive an error message that reads as follows:
    "File not found
    Firefox can't find the file at mms://TITLE.tubtub.com/.
    Check the file name for capitalization or other typing errors.
    Check to see if the file was moved, renamed or deleted.
    Try Again"
    I had initially seen a window that was named "Launch Application," which, seemingly, allowed one to choose an application by which to open the video links. I chose my VLC player to do this and checked a box to associate this "Launch application" window with the VLC player, but received an error message that VLC was unable to open the file that began with an "mms" URL. Then I was never able to get back to that "Launch application" window to select another application, such as Windows Media Player, Real Player, etc. I even tried uninstalling my Firefox browser and the VLC player and reinstalling them both, all to no avail.
    Please explain how I may get these video links to play and the "Launch Application" window to open again. I recall having used TubTub.com successfully before.
    Thank you.

    Hi mendcocr,
    Please see this document about configuring web browsers to display PDF files: http://helpx.adobe.com/acrobat/using/display-pdf-browser-acrobat-xi.html.
    Please let us know if you need additional help.
    Best,
    Sara

  • "Unable to open project file" message in final cut express 3.5.1

    I have (well had now) a project with 3 video clips and multiple .psd files as stills. When the project contains just the 3 video clips and a couple of transitions I can save the project and quit Final Cut Express and relaunch FCE and when I try to re-open the same project, it opens just fine, without any problems and just the way I expected it to be. After editing the same project for a couple of hours and saving along the way (this has happened twice now and I don't think the length of time of editing matters) and adding multiple still images to the 3 video clips (this part is new in my working with FCE); I save and quit. When I return to open the same project I get the message "Unable to open project file" and click the OK button, which is my only option and I am given a new blank project. So where did my work go???

    Thank you for the response, but it hasn't worked yet...
    I read the link. I am working off my internal drive.
    I re-named the Capture Scratch folder, and any Render folders and then launched FCE. I was presented with a window that reads "To preserve the integrity of the data used by Final Cut Express HD, it is necessary to ensure the existance of the following path(s)" The path in the box below is where my project file and support files are. My 3 options are Quit, Check again and Reset Scratch disk. I choose the Reset Scratch Disk button and it took me to the Scratch Disk window and I Set/Created a new folder and clicked Choose and then OK back at the Scratch Disk window and Continue at the initial window... the Reset Scratch disk button is now labeled Continue. I am given a new Untitled Project work space. I tried to open my project file and once again with the message "Unable to open project file".
    Where did I go wrong???

Maybe you are looking for

  • Report S_ALR_87011964

    Hi, While generating the report S_ALR_87011964, it get generated only with SAP_ALL. It is not generated for this other profiles which has this Tcode in Menu. Env - SAP R/3 4.7.  We are upto date in patch level. Could not locate any auth failures too.

  • InDesign CS5 won't open

    I just received my Adobe CS5 and have installed it. Every program opens fine with the exception of inDesign. I had a trial version of inDesign CS4, but have uninstalled in incase there were any issues. I'm not sure why it won't open. I've installed a

  • Mail Server Woes

    Hey All, I could use some help debugging Mail on my Mac Mini Server (10.8.2 - All updates installed).  Two issues going on:  mail is not arriving in the inbox and outgoing mail sent from the server does not arrive at the destination - it doesn't matt

  • J2SDK 1.4.2 Installation Problems

    Hello. I have recently bought a new computer that does not have the above-mentioned installed. I cannot get DSL/Broadband installed for another month due to a backlog, and installation takes forever on a standard 44K line. Yet, if there was a way to

  • Urgent : regarding recording in qa11

    Hi abapers, In tcode-QA11, it is basically QM(Quality management) code. under UD code, when i select values from F4 help that is not recorded in recording, secondly when i put directly the value of UD code then the corresponding fields are not filled