KeyNote files corrupted by Zip-compressing!

I've heard of people getting KeyNote files corrupted so that they are unopenable. I'd never experienced it until I Zip-compressed the file in the finder. Upon uncompressing, the file is corrupt and will NOT open. Yikes!! (Fortunately, I have the original still).
This is serious if it is general. Can anyone else tell me if they see this (and a possible solution to fix a file corrupted in this way).
Info: KeyNote '08 (4.0.3), intel mac. System 10.5.2

I have had that problem, and it happens when the source Keynote file is on an external (firewire) drive. If I copy the file to the root/main drive THEN zip it, it works fine.
....and this happens on multiple Macs and multiple external drives.

Similar Messages

  • Cannot open Keynote files

    Since upgrading the entire office to Mavericks and the new iWork suite, we are having major problems in sharing Keynote files. Seems no matter where it is authored, when sent to another coworker, the attached andn downloaded Keynote file cannot be opened.
    We have all upgraded to Mavericks and the latest versions of the new iWork apps.

    As a further update, the problem appears to be with transferring Keynote files from one Mac to another. For example, when adding a Keynote file as an attachment to an email, it loads a "ghost" file into the email that is typically less than 100K and cannot be opened. We tried a number of methods for attaching Keynote files in an email. None work.
    We then tried uploading a Keynote file as a zipped Google Doc. This produced very strange results in Google Docs (lists of hundreds of files within the zip file), but regardless, we could download the zip file and open it in Keynote 2 out of 3 times.
    The final method we tried worked 50% of the time. With this method we saved a zipped file into Dropbox and could retrieve it. This would not work if we did not zip the Keynote file.

  • Keynote with iCloud file corrupted

    I'm using Yosemite and Keynote 6.5. I was working my keynote file suddenly it says file cannot be opened. I could be working over iCloud. I tried to rename into .zip and back to .key but doesn't work. Seems the index.zip file inside has problem. It can't unzip but into a index.zip.cpgz file. I also tried to open it right on iCloud and it says presentation cannot be opened. Can anyone please help me out. I am very desperately not to redo everything again. Thanks a lot.

    Before you do anything else, make new copies of the files using the operating system to copy the file to a new folder somewhere. It may be damaged beyond recovery, but you should make backups of what you have as a precaution.
    The .idlk file is a lock file that tells ID the file is already open. This would indicate that the file wasn't closed before the crash. It is safe to delete the lock files after you close ID. If restarting ID crashes immediately, it most likely means the recovery file is corrupt. Find the recovery folder (not sure where the default location would be on a Mac), and move all the contents into a new folder on the desktop for temporary safekeeping. That should allow ID to start.
    You seem to be using version 6.0.0, which was buggy. The latest patch is 6.0.6, and you should either download and install the patch manually, or use the automatic updater, then try to open the file again. If successful, export to .inx, then save as a new .indd file. See Remove minor corruption by exporting
    Let us know what happens when you try the above.

  • How to zip keynote files?

    How to Zip or Reduce Keynote Files?

    Newer versions of Keynote zip the documents as part of the save process by default; these files can't be compressed much further without losing content. To check, control-click the document in the Finder and see if Show Package Contents is an option; if not, it's already zipped. If it is, choose to compress or archive it from that menu.
    (63532)

  • Compression of Keynote file

    When I export my keynote file to pdf it gets huge. How do I compress the file (not in zip or .dmg format)? In Powerpoint there's a compress all images function. Is there something similar in Keynote?
    Thanks in advance.

    Some have had some success using the "Print" function, then clicking the "PDF" button and choosing "Compress PDF". Give that a try and see what difference it makes for your output.

  • Trying to zip / compress a file in Windows Server 2008 & SQL Server 2008 R2 server

    Hi,
    We are trying to zip / compress a xml file that has been created by retrieving data from SQL Server 2008 R2 database running on Windows Server 2008.
    To compress this file, we cannot use any external softwares like 7-zip or WinZip.
    So, we would like to know if there is any windows default compression tool that works on command line to compress the file?
    As this is a live server we cannot apply any other softwares.
    Please suggest any ways to do it in Windows Server 2008 machine.
    Thanks & Regards
    Kalyan

    Hello Kaylan,
    and for uncompress what can I use
    This is a way to do it in SSIS
    http://sqlblog.com/blogs/jorg_klein/archive/2009/08/27/ssis-unpack-a-zip-file-with-the-script-task.aspx
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Reading a Compressed File from a ZIP File, which is an entry of ZIP File

    Hello, Experts,
    Would it be possible somebody to help me with code example for the following problem?
    I want to read a compressed file from a ZIP file, which is an entry of ZIP File, without extacting/writing files on file system. Is this possible?
    Lets say we have a ZipFile1. There is ZipFile2 inside ZipFile1. And inside ZipFile2 is FileA. The scenario is reading FileA without extracting on file system.
    Thank you in advance for your help.
    Cheers
    RADY

    The classes you want to be using are java.util.zip.ZipInputStream and and ZipEntry from the same package. Construct the ZipInputStream with the input you have for the outer zip. Loop with ZipInputStream.getNextEntry until you find the inner zip you're looking for - that method returns a ZipEntry, and you get the name of the zip entry with ZipEntry.getName. Read the ZipInputStream from that point into some buffer, and read that buffer into a new ZipInputStream - rinse and repeat until you have the contents of the file in the zip in the zip...

  • Problem with compressing unicode file names in zip file

    Hi Everyone,
    I have a problem while compressing the unicode file name in a zip file. I used the below code for compressing the unicode files.
    String[] source = null;
    // C:\\TestData\\unicode_filename.txt :  unicode_filename.txt is the file created in japanesse language
    source = new String[] {"C:\\TestData\\temp_properties.xml","C:\\TestData\\unicode_filename.txt" };
    byte[] buf = new byte[1024];
    // Create the ZIP file
    String target = "C:\\TestData\\target.zip";
    ZipOutputStream out = new ZipOutputStream(new FileOutputStream(target));
    // Compress the files
    for (int i = 0; i < source.length; i++)
         FileInputStream in = new FileInputStream(source);
         // Add ZIP entry to output stream.
         String fileName;
         File tempFile;
         ZipEntry zipEntry = new ZipEntry(source[i]);
         fileName = zipEntry.getName();
    zipEntry = new ZipEntry(fileName);
    zipEntry.setMethod(ZipEntry.DEFLATED);
    getUTF8Bytes(source[i]);
    // here I'm unable to find the unicode files and not able to understand.
    out.putNextEntry(zipEntry);
    // Transfer bytes from the file to the ZIP file
    int len;
    while ((len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
    // Complete the entry
    out.closeEntry();
    in.close();
    // Complete the ZIP file
    out.close();Please help me how to fix this issue.
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    Thanks for your time for looking into my query.
    Please check the below code for debugging the issue and throw your comments/suggestions for fixing the issue.
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipOutputStream;
    public class ZipTest
      public static void main(String[] args) {
              String[] source = new String[] {"C:\\TestData\\APP_Properties.xml","C:\\TestData\\??.txt" };
              byte[] buf = new byte[1024];
              try {
                   // Create the ZIP file
                   String target = "C:\\TestData\\target.zip";
                   ZipOutputStream out = new ZipOutputStream(new FileOutputStream(target));
                   // Compress the files
                   for (int i = 0; i < source.length; i++) {
                        FileInputStream in = new FileInputStream(source);
                        // Add ZIP entry to output stream.
                        String fileName;
                        File tempFile;
                        ZipEntry zipEntry = new ZipEntry(source[i]);
                        fileName = zipEntry.getName();
                        zipEntry = new ZipEntry(fileName);
                        zipEntry.setMethod(ZipEntry.DEFLATED);
                        getUTF8Bytes(source[i]);
                        out.putNextEntry(zipEntry);
                        // Transfer bytes from the file to the ZIP file
                        int len;
                        while ((len = in.read(buf)) > 0) {
                             out.write(buf, 0, len);
                        // Complete the entry
                        out.closeEntry();
                        in.close();
                   // Complete the ZIP file
                   out.close();
              } catch (IOException e) {
                   e.printStackTrace();
         private static byte[] getUTF8Bytes(String s) {
              char[] c = s.toCharArray();
              FileOutputStream file;
              try {
                   file = new FileOutputStream("C:\\TestData\\output.txt", true);
                   int len = c.length;
                   // Count the number of encoded bytes...
                   int count = 0;
                   for (int i = 0; i < len; i++) {
                        int ch = c[i];
                        if (ch <= 0x7f) {
                             count++;
                        } else if (ch <= 0x7ff) {
                             count += 2;
                        } else {
                             count += 3;
                   // Now return the encoded bytes...
                   byte[] b = new byte[count];
                   int off = 0;
                   for (int i = 0; i < len; i++) {
                        int ch = c[i];
                        if (ch <= 0x7f) {
                             b[off++] = (byte) ch;
                             file.write((byte) ch);
                        } else if (ch <= 0x7ff) {
                             b[off++] = (byte) ((ch >> 6) | 0xc0);
                             file.write((byte) ((ch >> 6) | 0xc0));
                             b[off++] = (byte) ((ch & 0x3f) | 0x80);
                             file.write((byte) ((ch & 0x3f) | 0x80));
                        } else {
                             b[off++] = (byte) ((ch >> 12) | 0xe0);
                             file.write((byte) ((ch >> 12) | 0xe0));
                             b[off++] = (byte) (((ch >> 6) & 0x3f) | 0x80);
                             file.write((byte) (((ch >> 6) & 0x3f) | 0x80));
                             b[off++] = (byte) ((ch & 0x3f) | 0x80);
                             file.write((byte) ((ch & 0x3f) | 0x80));
                   file.write((byte) '\n');
                   file.write((byte) '\r');
                   file.flush();
                   file.close();
                   return b;
              } catch (FileNotFoundException e1) {
                   e1.printStackTrace();
              } catch (IOException e1) {
                   e1.printStackTrace();
              return null;
    }Thanks
    Aravind                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Adobe Acrobat X Pro ZIP Compression Creates Larger Files

    Hello,
    I made a flyer in InDesign CS 6 which contains a fairly complicated vector image made with Illustrator. When I export to PDF, InDesign creates a file of the size of 26 MB (ish). I then run preflight in Acrobat which finds that the vector image isn't compressed.
    Note that my PDF settings in InDesign are set to bicubic subsampling for colour images that are above 450 px and JPG compression.
    When I tell Acrobat to apply fixes, it tries to apply ZIP compression but the file size is then 38 MB. Could anyone shed light on this for me please? There is obviously something basic about vector images and compression that I am missing.
    It also finds elements that are completely off the board, although I didn't put anything there with InDesign.

    Test Screen Name: After seeing your response I run a little test. I made a PDF straight from Illustrator just using that image then preflighted it and I got the same error.
    I then opened that same PDF in Illustrator, a lot of that artwork was turned into images. I think it's the transparency flattener as I am converting to PDF/X-1A with compatibility for Acrobat 4 (which I should have probably mentioned in the first post but I didn't make the connection between the two). As far as I understand the transparency flattener converts an image into a mix of paths and rasters (according to Adobe's own help files.)
    Preset used for preflight is sheetfed offset CMYK btw.

  • File corrupted: OWB_10.2.0.1.win.zip

    I dowloaded this file from http://download-uk.oracle.com/otn/nt/warehouse/OWB_10.2.0.1.win.zip. Because it was corrupted (some crc error in jars), i dowloaded it 4 time also (resoults by cksum.exe)...:
    548359437 809267091 OWB_10.2.0.1.win(1).zip
    2673492425 809267091 OWB_10.2.0.1.win_NEW_Explorer.zip
    28972223 809267091 OWB_10.2.0.1.win.zip
    2847439270 809267091 OWB_10.2.0.1.win.zip.BAD
    1233476194 809267091 OWB_10.2.0.1.win_DANIEL_BAD.zip
    I used Internet Explorer, Mozilla, some download managers and always i have file corrupted.
    Can You pass correct cksum value for this file?
    ps. I have similar troubles with http://download-uk.oracle.com/otndocs/products/warehouse/Education/ReviewCD.zip:
    1492354033 470677977 ReviewCD.zip
    4035398213 470677977 ReviewCD.zip.BAD

    Hi,
    there is a reproducible bug in several oracle installation files. Sometimes the setup.exe on root doesn't work, so you must take the setup.exe from the install directory. Sometimes this isn't working and only the setup.exe on root.
    Very silly, but not a problem if you know what do do.
    Regards,
    Detlef

  • How do I reduce the size of a Keynote file beyond the reduction of zip?

    Kindly advise.

    How do I reduce the size of a Keynote file beyond the reduction of zip?
    Why do you need it smaller, what size is the file, what's in the file that you think is making it large.
    If your trying to reduce file size to send by e-mail, use a file transfer service instead:  Dropbox.

  • LR 2.5 won't export TIFF files with LZW or ZIP compression??

    I've just updated to LR2.5 and CR5.5, I'm using Vista Ultimate x64 on an AMD x2 64 bit pc.
    LR worked fine until 2.4 came along and hijacked all my auto play settings. Adobe finally releases 2.5 and now I find if I export TIFF files from a Nikon D700 NEF all I get is a black box the same size as the image??? If I turn LZW or ZIP compression off and export uncompressed the export works again. JPEG also exports ok.
    Anyone else getting this? Have you found out what's causing it?
    James.

    Thanks for the feedback Jao,
    I just tried across the whole range of TIFF options and the only files that don't give me a black file are 8bit and 16 bit with no compression. LZW and ZIP both stuff up
    Might try a complete uninstall and reinstall to see if that fixes things. These sorts of things only happen when you are in a rush to get lots of work done!
    Regards
    James

  • Zip file corrupted

    Hi,
    I tried downloading developer 6irel2nt for my system but it always complains of zip file corruption. Can anyone tell me what is hapenning and what I should do?
    Your help is really appreciated.
    Thanks

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by magyemang:
    Hi,
    I tried downloading developer 6irel2nt for my system but it always complains of zip file corruption. Can anyone tell me what is hapenning and what I should do?
    Your help is really appreciated.
    Thanks<HR></BLOCKQUOTE>
    null

  • Zip/Compress a folder/file

    Hi
    recently i've try to Zip/Compress a folder...but funny...the folder is 15GB after compress...it still 15GB...haaa...
    Any problem?need helps..

    mactreouser wrote:
    But why i need the compress or Zip...that's because i need to backup my projects and files into DVDR.If,i do a compression on Video such as H.264 Quality to Low and Frame Rate 15...it'll be small the file...but it can't be use for Hi Quality project anymore...do you get what i wish?haaa...
    The problem is H.264 goes way beyond Zip in compression. Since you already applied H.264, there isn't anything else that Zip can do.
    If you want to preserve the quality, the only solution is to have big enough disks.
    I don't know whether my concept is on the track or not?!haaa...But i think it work..cause,sometimes we need to send file throught internet and we need to Zip it for email or transfering purpose..am i right?
    Probably not. When you send a document like a Word file, the text is not already compressed. There are still many patterns that can be condensed and spaces that can be closed up. When you zip that document, it can take advantage of all those opportunities for compression, and the file size goes down.
    But again, your H.264 files are already much smaller than uncompressed video. It's already crammed together as far as it will go unless you want to lose more quality. Therefore Zip cannot do anything more, and the file size stays the same.

  • Corrupted Keynote file--any fixes?

    Are there any fixes for a corrupted Keynote file? The cause of the corrupted file is unknown. I'm trying to open it with Keynote 1.1, I'll try opening it with Keynote 2 later on.
    Thanks,
    Ashley

    A Keynote file is really a directory. Make a copy of the bad file/directory. Then ctrl-click on the copy and use the "Show Package Contens" option to look inside. A lot of stuff will probably look familar to you and you should be able to check the integrity of a lot of the stuff in the directory using other applications.
    Now I cannot say that I have had this problem or tried this, but this approach might be useful. You might want to start with a copy of known good Keynote file (directory) and explore it first.
    PowerBook G4 15 Al   Mac OS X (10.4.3)  

Maybe you are looking for

  • How to get a rowcount from two different schema in two different databases?

    Hello, I want to count of rows in each table in a schema say test, of DEV1 database to another schema say test of DEV2 database. both have same schema data in both the databases. my output should look something like this. Tablename database name DEV!

  • How to create a Macro in excel to store the excel data to Oracle Database

    Hi All Does anyone has created a macro in excel which on being run stores the excel data to Oracle database. In my project I need to create one such macro for updating oracle database with excel data and another for inserting excel records. I tried d

  • How to install BitDefender? (x86_64)

    Hi all, I want to test BitDefender on my system and have downloaded two files which appear to be wrapped rpm and deb files: BitDefender-Antivirus-Scanner-7.6-4.linux-gcc4x.amd64.deb.run BitDefender-Antivirus-Scanner-7.6-4.linux-gcc4x.amd64.rpm.run Is

  • Design...where to start

    I am sure everyone asks this, but where or how is the best way to get started with website design. I am competent with HTML/CSS and server side development, but would like to be able to create my own graphics, logos, background etc. I am gone through

  • R/3-MDM-XI Scenaio!

    Hi All, Can anyone send me some Business scenarios of R/3-MDM-XI to my mail: <b>[email protected]</b> Thanks and appreciate all your help! Best Regards, Girish