Cannot send .zip file

So I'm trying something for Minecraft and I need to send a file that is .zip
I tried to email it to my gmail but here's what it says
Unable to Send Email
A copy has been placed in your outbox. No password provided.
Please go to Mail Account Settings and enter a password.
What do I do? I already entered my password but it still doesn't send and keeps popping up the message above.
Please help me, I'd really appreciate it (by the way I have an iPhone 5c)
-SnowfurandThistleclaw

Since no one has an answer does anyone know where I can find iTunes File Sharing on my PC (computer)?

Similar Messages

  • How to send zip file as attachment through email

    Hi All,
    I am having a requirement that I need to download the internal table data into .txt file and I need to zip the text file. And this zip files needs to send to the customer through email.
    I am able download the data into .txt and able to zip the file. But I am not able send the .zip file through email.
    I know that we can send .xls, .txt, .csv and also .ppt, .doc file types we can send as an attachement through abap program. But I don't know about .zip files. Is there any possibilty to send .zip file as an attachment thorugh email.
    Can any one help me how to send a .zip file thorugh email as an attachment. 
    Regards,
    vinod

    hi Vinod,
    Can you please tell me how you have zipped the file.
    I am having a text file in application server. I need to zip that file. Then the middleware moves it to Legacy system.
    I used the following code. With this I am having the data in Binary format which my midleware cannot understand.
    What I need on the whole is just to reduce the size of the file.
    form ZIP_FILE .
    DATA: lt_data TYPE TABLE OF x255,
          lt_textdata TYPE TABLE OF x255.
    DATA: ls_data LIKE LINE OF lt_data.
    DATA: lv_dsn1(100) VALUE '/ECD/120/GIS/FTP/IB/DNBPAYDEX.TXT'.
    DATA: lv_dsn3(100) VALUE '/ECD/120/GIS/FTP/IB/DNBPAYDEXZIP.zip'.
    *DATA: lv_dsn3(100) VALUE '/interfaces/SM5/test.zip'. " Contains sample1.xls and sample2.xls
    DATA: lv_file_length TYPE i.
    DATA: lv_content TYPE xstring.
    DATA: lo_zip TYPE REF TO cl_abap_zip.
    CREATE OBJECT lo_zip.
    Read the data as a string
    clear lv_content .
    OPEN DATASET lv_dsn1 FOR INPUT IN BINARY MODE.
    READ DATASET lv_dsn1 INTO lv_content .
    CLOSE DATASET lv_dsn1.
    lo_zip->add( name = 'sample.TXT' content = lv_content ).
    lv_content = lo_zip->save( ).
    *clear lv_content .
    Conver the xstring content to binary
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
    EXPORTING
    buffer = lv_content
    IMPORTING
    output_length = lv_file_length
    TABLES
    binary_tab = lt_data.
    OPEN DATASET lv_dsn3 FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    LOOP AT lt_textdata INTO ls_data.
    TRANSFER ls_data TO lv_dsn3.
    ENDLOOP.
    CLOSE DATASET lv_dsn3.
    IF sy-subrc EQ '0'.
        MESSAGE s999(zfi_ap_gl) WITH text-t10.
      ENDIF.
    Can you please help.
    Thanks Aravind

  • When I download a page a message says cannot find zip file directory

    When I try to download a page a message appears after the download time saying in part that "cannot find zip file directory". This message appears on all downloads I attemp.

    Here are typical layouts for the iTunes folders:
    If you have upgraded from version 8 (or earlier) to iTunes 9 (or later) at some point, then your media folder (everything inside the red outline) may still be called iTunes Music instead of iTunes Media. The extra Music folder inside the media folder is used if you have allowed iTunes to Upgrade to iTunes Media Organization (iTunes 9) or used File > Library > Organize Library > Reorganize files in the folder "<Media Folder>" (iTunes 10). Depending on your choices for Keep iTunes Media folder organized and Copy files to iTunes Media folder when adding to library plus a little bug in which one build changed the name of the file storing the choice of layout it is quite easy for some of your files to be organized according to one layout and some the other.
    It is possible that in the upgrade to Lion iTunes has been installed with the current default options while your library is based on an older structure. Use Get Info. on a missing track, click cancel when asked to locate it and look at the path given on the summary tab. Now look for the actual file with Finder. Post both paths back here and we can try to make sense of the problem.
    tt2

  • Cannot send a file to mobile phone ????

    I have connected to my phone and browse the device.
    I can get the the files from my phone but cannot send any file to it
    What is the problems???? How can i fix it?
    My phone is W350i
    My mac is 10.4.11
    Thanks you
    Message was edited by: SM0715

    Hi,
    I am sorry to tell you that there is no such functionality. But of course, you could send URLs to the document locations via smartSync.
    Cheers, Stefan

  • "Cannot send this file" for conversion/download for Word editing

    Cannot send this file is response for conversion/download for Word editing

    As you speak to "sending" a file you'd be using  one of Adobe's online subscription services.
    The "umbrella" user forum for this is at:
    https://forums.adobe.com/community/acrobatdotcom 
    Of course a paid subscription is required.
    Note that accessing the online service of interest through Adobe Reader can be bumpy sometimes.
    Best is to just go to online and have your browser take you to the service.
    A starting point:
    https://www.acrobat.com/en_us.html   
    Select your service and then sign in.
    Be well...

  • Please help!!!!!! i filled out a job application using adobe reader but i cannot send the file back via email because the file is protected with a lock. how do i unlock this file to send it?!!!!!!!!!

    please help!!!!!! i filled out a job application using adobe reader but i cannot send the file back via email because the file is protected with a lock. how do i unlock this file to send it?!!!!!!!!!

    Hi kevinv1987,
    It doesn't sound like the PDF was password protected (or Adobe Reader would prompt you for a password). Instead, it sounds like that file may be marked locked by your operating system. Are you on Mac OS or Windows? In either case, here are instructions for removing the lock icon from the file:
    Remove the Lock Icon from a Folder in Windows 7 (check Microsoft's website if you have a different version of Windows)
    On Mac OS, select the file in the Finder, and choose File > Get Info. Then, just deselect the Lock checkbox.
    Please let us know how it goes.
    Best,
    Sara

  • Bypassing SOA MANAGER , Consume a stateless Webservice and send Zip file

    Hello,
    I have question around consuming web service via ABAP program.The scenario is consume a operation of a web-service and get the information, based on this information put the data in flat files and send it back in another operation of this web-service. Due to way web-service is implemented I cannot generate proxy class and use SOA manager the reason is web-service is using complex data type
    1) Is it possible to consume a web-service via ABAP program directly
    I have explored the SAP documentation and came up with this link
    Appendix C - SOAP Runtime for the SAP Web AS - SAP Library
    Few  Links I found are
    Manual HTTP POST from ABAP
    WebService 4.7 / WAS 620 XSTRING BASE 64
    Using any of the above approaches can  SAP program consume a web-service bypassing the SOA manager & send the zipped files in one of the operations.
    Thank you

    Appreciate if some one can answer the question above

  • Cannot extract Zip file with Winzip after zipping with java.util.zip

    Hi all,
    I write a class for zip and unzip the text files together which can be zip and unzip successfully with Java platform. However, I cannot extract the zip file with Winzip or even WinRAR after zipping with Java platform.
    Please help to comment, thanks~
    Below is the code:
    =====================================================================
    package myapp.util;
    import java.io.* ;
    import java.util.TreeMap ;
    import java.util.zip.* ;
    import myapp.exception.UserException ;
    public class CompressionUtil {
      public CompressionUtil() {
        super() ;
      public void createZip(String zipName, String fileName)
          throws ZipException, FileNotFoundException, IOException, UserException {
        FileOutputStream fos = null ;
        BufferedOutputStream bos = null ;
        ZipOutputStream zos = null ;
        File file = null ;
        try {
          file = new File(zipName) ; //new zip file
          if (file.isDirectory()) //check if it is a directory
         throw new UserException("Invalid zip file ["+zipName+"]") ;
          if (file.exists() && !file.canWrite()) //check if it is readonly
         throw new UserException("Zip file is ReadOnly ["+zipName+"]") ;
          if (file.exists()) //overwrite the existing file
         file.delete();
          file.createNewFile();
          //instantiate the ZipOutputStream
          fos = new FileOutputStream(file) ;
          bos = new BufferedOutputStream(fos) ;
          zos = new ZipOutputStream(bos) ;
          this.writeZipFileEntry(zos, fileName); //call to write the file into the zip
          zos.finish() ;
        catch (ZipException ze) {
          throw ze ;
        catch (FileNotFoundException fnfe) {
          throw fnfe ;
        catch (IOException ioe) {
          throw ioe ;
        catch (UserException ue) {
          throw ue ;
        finally {
          //close all the stream and file
          if (fos != null)
         fos.close() ;
          if (bos != null)
         bos.close();
          if (zos != null)
         zos.close();
          if (file != null)
         file = null ;
        }//end of try-catch-finally
      private void writeZipFileEntry(ZipOutputStream zos, String fileName)
          throws ZipException, FileNotFoundException, IOException, UserException {
        BufferedInputStream bis = null ;
        File file = null ;
        ZipEntry zentry = null ;
        byte[] bArray = null ;
        try {
          file = new File(fileName) ; //instantiate the file
          if (!file.exists()) //check if the file is not exist
         throw new UserException("No such file ["+fileName+"]") ;
          if (file.isDirectory()) //check if the file is a directory
         throw new UserException("Invalid file ["+fileName+"]") ;
          //instantiate the BufferedInputStream
          bis = new BufferedInputStream(new FileInputStream(file)) ;
          //Get the content of the file and put into the byte[]
          int size = (int) file.length();
          if (size == -1)
         throw new UserException("Cannot determine the file size [" +fileName + "]");
          bArray = new byte[(int) size];
          int rb = 0;
          int chunk = 0;
          while (((int) size - rb) > 0) {
         chunk = bis.read(bArray, rb, (int) size - rb);
         if (chunk == -1)
           break;
         rb += chunk;
          }//end of while (((int)size - rb) > 0)
          //instantiate the CRC32
          CRC32 crc = new CRC32() ;
          crc.update(bArray, 0, size);
          //instantiate the ZipEntry
          zentry = new ZipEntry(fileName) ;
          zentry.setMethod(ZipEntry.STORED) ;
          zentry.setSize(size);
          zentry.setCrc(crc.getValue());
          //write all the info to the ZipOutputStream
          zos.putNextEntry(zentry);
          zos.write(bArray, 0, size);
          zos.closeEntry();
        catch (ZipException ze) {
          throw ze ;
        catch (FileNotFoundException fnfe) {
          throw fnfe ;
        catch (IOException ioe) {
          throw ioe ;
        catch (UserException ue) {
          throw ue ;
        finally {
          //close all the stream and file
          if (bis != null)
         bis.close();
          if (file != null)
         file = null ;
        }//end of try-catch-finally
    }

    Tried~
    The problem is still here~ >___<
    Anyway, thanks for information sharing~
    The message is:
    Cannot open file: it does not appear to be a valid archive.
    If you downloaded this file, try downloading the file again.
    The problem may be here:
    if (fos != null)
    fos.close() ;
    if (bos != null)
    bos.close();
    if (zos != null)
    zos.close();
    if (file != null)
    file = null ;
    The fos is closed before bos so the last buffer is not
    saved.
    zos.close() is enough.

  • How to send Zip files as attachments !! Very urgent, Please help!

    I am sending PDF files as attachments using java mail (it works fine). But now my requirement is to zip the PDFs and send them as attachments instead of actual PDF's. But i don't know how to achieve that. does java mail API support zip attachment facilities? I have looked in activation API also, but i couldn't find anything helpful. even i searched the forums, but no clue. Please, anybody help me about this, it's very urgent.
    thanks
    sri

    Check the first "if". If I specify an attachment, then a myme multipart doby is created: one for text and the other for the attachemnt I use this myme ovbject only for attachemnts, because some ISPs have problems and report error in email format if the attachemnet is missing and it contains only text and no attachment.
    static public void send(String to,
         String from,
         String host,
         String smtpPort,
         String subject,
         String body,
         String fileAttachment,
         String attachmentMimeType,
         String username,
         String password,
         String debug)
    throws Exception
         // create some properties and get the default Session
         Properties props = new Properties();
         props.put("mail.smtp.host", host);
         props.put("mail.smtp.port", smtpPort);
         props.put("mail.smtp.timeout","5000");
         props.put("mail.debug", debug);
         Session session = null;
         if (username != null && password != null)
              props.put("mail.smtp.auth", "true");
              MyPasswordAuthenticator auth = new MyPasswordAuthenticator(username, password);
              session = Session.getDefaultInstance(props,auth);
         else
              session = Session.getDefaultInstance(props, null);
         //session.setDebug(true);
         // create a message
         MimeMessage message = new MimeMessage(session);
         message.setFrom(new InternetAddress(from));
         InternetAddress[] address = InternetAddress.parse(to, false);
         message.setRecipients(Message.RecipientType.TO, address);
         message.setSubject(subject);
         message.setSentDate(new Date());
         // create the message part
         if ( fileAttachment != null && fileAttachment != "NO" )
              MimeBodyPart messageBodyPart = new MimeBodyPart();
              //fill message
              messageBodyPart.setText(body);
              //Multipart multipart = new MimeMultipart();
              Multipart multipart = new MimeMultipart("alternative");
              multipart.addBodyPart(messageBodyPart);
              // Part two is attachment
              System.out.println("----->fileAttachment DISTINTO de NULL");
              messageBodyPart = new MimeBodyPart();
              FileDataSource fds = new FileDataSource(fileAttachment);
              messageBodyPart.setDataHandler( new DataHandler(fds));
              messageBodyPart.setFileName(fileAttachment); //<-- El archivo atachado.
              multipart.addBodyPart(messageBodyPart);
              //EN DESARROLLO el envio de attachment!!          
              // Put parts in message
              message.setContent(multipart);
         } else { //Envio es solamente TEXTO
              message.setText(body);
         // send the message
         Transport.send(message);
    Regards,
    Vladimir

  • Cannot see zipped files in Windows Explorer

    I used the code below to create a zip file. When I use Winzip to open a zip file named test.zip, I can see all the files (a.txt, b.class, etc.) that have been zipped. But, when I double-click on the test.zip in Windows Explorer (Windows XP Professional), I cannot see any of the zipped files.
    Can someone give me some pointers?
    import java.util.*;
    import java.util.zip.*;
    import java.io.*;
    public class CreateZip
         public CreateZip()
         public void createZipFile(String[] all_array, String zipfilename)
              FileOutputStream pout; // declare a file output object
    PrintStream p;
              String file_path = "D:\\Docs\\FedPlanner\\";
    try
    pout = new FileOutputStream(file_path + "FedPlanner_Zip_log.txt");
    p = new PrintStream( pout );
                   for (int i = 0; i < all_array.length; i++)
                        System.out.println("all_array = " + all_array);
                        p.println (all_array[i]);
    p.close();
    catch (Exception e)
    System.err.println ("Error writing to file");
              byte[] buf = new byte[1024];
              try
                   String outFilename = file_path + zipfilename;
              ZipOutputStream out = new ZipOutputStream(new FileOutputStream(outFilename));
                   for (int i=0; i< all_array.length; i++) //
                   FileInputStream in = new FileInputStream(file_path + all_array[i]);//filenames
                   out.putNextEntry(new ZipEntry(file_path +all_array[i]));//filenames
                   int len;
                   while ((len = in.read(buf)) > 0)
                   out.write(buf, 0, len);
                   out.closeEntry();
                   in.close();          
              out.close();
              catch (IOException e)
                   e.printStackTrace();
         public static void main(String args[])
              for(int i=0; i < all_array.length; i++)
                   System.out.println("x = " + all_array[i]);
              CreateZip create = new CreateZip();
              create.createZipFile(all_array);

    I have never created a zip file using Java . But from what i know about Winzip and Window Explorer, here's my takes on it:
    1. Winzip works with severals different compression algorithm 9including their own)
    2. Winzip has the ability to display the content of the zip file (if the zip file happens to be one of the compression algorithm they supported....otherwise, it's highly unlikely, winzip can even open the file)
    3. Window Explorer does not call Winzip to display the content of Winzip file. rather, Window Explorer has its own utility to look into the Winzip for files and display them. Note: they probably only do this for the popular compression algorith (such as Winzip .zip, probably .tar...but highly doubtful of the one that Java use to make a zip file).
    So..it's probably Window Explorer does not supports display that compression algorithm (the one Java use) for a Winzip file.
    Example...you created a new format for an image call .mypics
    Window Explorer can display a thumb nail for .bmp, .jpeg, and quite a few other
    You created an application to display the image. Now..in Window Explorer, when you click on the icon, the thumbnail of the pic is not display...this is because Window Explorer does not have a util to do thumbnail for that format.

  • Cannot download zip file

    Why is it that with Firefox 8 I cannot download a zip file that was sent to me as an e-mail attachment? When I select the zip file a pop asks me if I want to 'open with' or 'save file'. Whichever option I choose the file is named attachment.ashx (this is not the name of the zip file I received).
    The only way I have been able to resolve the problem so far is to open the e-mail using Windows Explorer, from which I can retrieve the zip file correctly.

    I have the same problem since updating to Firefox 8 on my MacBook Pro. Now all files download as .ashx, sometimes I can open them via Word, but often they won't open at all. Previous versions of Firefox opened them in the appropriate application and saved them to the desktop. This has become such a problem that I have abandoned Firefox and have returned to Safari .....

  • Recipient Cannot Open Zip File of photos

    This issue was happening to me with Tiger. I have upgraded to SL, and now it continues to happen. I send a Windows user a zip file of photos. They are able to open the file, but when they try to extract/open the individual photos, a dialogue box appears that indicates that they are "Password Protected, please indicate the password in the box below".
    I am doing nothing that I know of the make it password protected. Any ideas on how to solve this?

    What do you mean by that? JPEG is a file type, and ZIP is a file type. Do you mean that you are sending people a single zip file containing a bunch of plain jpeg files? Or do you mean that you are taking a bunch of individual jpeg files, zipping them one at a time, then taking all the zipped jpeg files and putting them all inside one big zip file?

  • Cannot open ZIP files???

    Hello,
    My new MacBook Pro with OS 10.5.7 doesn't seem to recognize zip files and tries to open them with TextEdit. Of course it doesn't work. I am very surprised, I thought zip support was built into the OS. I looked for a utility app but apparently there is nothing in the Application folder. Do I really need to download Stuffit Expander? There should be another option.
    Thanks for your help
    Florence

    I re-opened my old Mac, and it recognizes zip files as "zip archives" and proposes to open them with something called "archive utility" (it's a translation, I use French as a system language), which I cannot find on the hard drive but seems to work nonetheless. On the new Mac the same files are marked as text files. Where can I find this archive utility and install it? This is all very confusing.

  • Sending Zip files

    I have created a project, then while still on the ipad
    clicked the share option, selected email.
    Read email pop up explanation, one tapped the project i wish to email
    Tapped email.
    Email client loads. Tap in address but the Zip file never loads or never completes, so the
    Mail app 'send' button is never 'good to go'. It's a small file 229kb

    Can you give us more information?
    Information about your iPad, if you can share the problematic project in Creative Cloud, can you share with us?
    Thanks,
    Takashi

  • Cannot open ZIP files in mail

    Anyone else having trouble opening zip files in mail. It does not work on iPhone either - but that was not an issue since very rarely does one want to open a large document.
    Any solutions out there ?

    Zips and other archived/compressed files won't work as expected on an iPad since you can't just preview/view the contents directly from the attachment currently like you can with quicktime-compatible or other common media formats. Basically you would need to be able to save the zip file to the finder and extract it, and view the contents from there. But since the iPad doesn't have anything like a user-accessible Finder, it's tricky to implement.
    There may be third-party apps that deal with this eventually (or maybe even something from the upcoming 4.0 software, who knows), but it would probably be easier to just have people send you attachments that aren't zipped up for now.

Maybe you are looking for

  • FLASH problem on EVERY browser

    here is the text attached from the error file created when flash on youtube crashed browsers:DeepNet Explorer+Chrome+Firefox & IE Can you please direct me in resolving this issue - Thanks Unhandled Exception Code: c0000005 Description: EXCEPTION_ACCE

  • Web Page Troubles

    Hi All Im fairly new to the MAC world and I'm having a little trouble getting some pages to load and work properly. For example if I go to CARMAX.COM I can search and load available cars, but if I select a certain car, instead of displaying the detai

  • XML rendering in browser

    I have created several medium-sized (100-200 page) xml documents for my company, and successfully displayed them in a browser (formatting through css). However, the images do not display as (I believe) the entity locations don't accurately point to t

  • Can't run any JRE or JDK utilities-Win XP SP1

    Hi I'm trying for quite a few days now but can't solve this problem. I installed the J2SDK 1.4.01 and sun 1 forte co-bundle which installed JRE 1.4.1 and Web Start. The installation goes fine but when I try to run any of the utilities I get a catastr

  • Accordion behaviour on IPad

    Hi All, I am observing strange behavior of accordion in Ipad. Sometimes while expand collapse it just hangs. I am handling tap event. Also how to see the tooltip in Ipad? Note setTooltip Api does not work even on desktop. any pointers will be helpful