Can't upload or download attachments

i have had no problem until yesterday and now suddenly can't upload or download any attachments on either my PC or laptop.  I'm using internet explorer / btyahoo.  Getting desperate - can somebody tell me what to do?

Sign in to BT Yahoo! webmail and check if there is anything stuck in your inbox. Messages with large attachments have been known to stick and affect downloading of subsequent messages.
You can click the white star next to this message if you think it was helpful.

Similar Messages

  • How can I upload and download files with uiXML?

    I want to implement upload and download files with uiXML. In some previouse topic I got answare to look in AbstractPageBroker class in JavaDOC. I did it but this is a very-very little resolution description for this problem. I think for developers YOU (UIX Team) must in very quick time to put some examples on the NET because this is a nice technology but with adecvate samplase and developers guide it will be dead very soon. I digging this forum for information. I see many many people have same problems about this technology. They like it and want to use and try but documentation is very very poor.
    WE WANT EXAMPLES and separate forum for UIX. I think it deserve this.
    If You have any more detailed documentation would be nice to put on the net. I have uixdemo.zip file but this is in very early fase of development. I downloaded it before fwe months. And now I can't find it anymore on youre site. What happend?

    Attila -
    I went back and re-read the JavaDoc for AbstractPageBroker and MultipartFormItem and put together the following sample PageBroker based on the description from the JavaDoc:
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletContext;
    import oracle.cabo.servlet.BajaContext;
    import oracle.cabo.servlet.Page;
    import oracle.cabo.share.util.MultipartFormItem;
    import oracle.cabo.servlet.xml.UIXPageBroker;
    * An extension of UIXPageBroker which stores all uploaded
    * files in the temporary directory.
    public class UploadingPageBroker extends UIXPageBroker
    * Override of AbstractPageBroker.doUploadFile() which saves
    * all files to the temporary directory.
    protected String doUploadFile(
    BajaContext context,
    Page page,
    MultipartFormItem item) throws IOException
    // Get the location of the file to create in the temp directory.
    // Of course a real application probably wouldn't upload files to
    // the temp directory - just using this contrived example to
    // demonstrate basic uploading support.
    File file = _getFile(context, item);
    if (file != null)
    // Create a FileOutputStream. Of course, a real application would
    // probably want to buffer the output
    FileOutputStream out = new FileOutputStream(file);
    // Write out the file
    item.writeFile(out);
    // Close up the output stream
    out.close();
    // We can return a value here to add to the PageEvent
    // if so desired.
    return null;
    // Gets the File for the item that we are uploading
    private File _getFile(
    BajaContext context,
    MultipartFormItem item
    // Get the file name
    String name = item.getFilename();
    // If we don't have a file, bail...
    if (name == null)
    return null;
    // Get the path to the temporary directory
    File dir = _getTempDir();
    // Return the File object
    return new File(dir, name);
    // Returns the path to the temprary directory
    private File _getTempDir()
    // Get the temporary directory from the ServletContext
    ServletConfig sConfig = getServlet().getServletConfig();
    ServletContext sContext = sConfig.getServletContext();
    return (File)sContext.getAttribute("javax.servlet.context.tempdir");
    In this sample, each uploaded file is simply saved in the temporary directory. You'll want to replace the code that creates the FileOutputStream for the uploaded file to use whatever OutputStream makes sense for your application.
    BTW - I used the following UIX page to test this out:
    <?xml version="1.0" encoding="UTF-8"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller">
    <content>
    <pageLayout xmlns="http://xmlns.oracle.com/uix/ui">
    <contents>
    <form name="uploadForm" usesUpload="true">
    <contents>
    <fileUpload name="uploadedFile"/>
    <submitButton name="upload" text="Upload"/>
    </contents>
    </form>
    </contents>
    </pageLayout>
    </content>
    </page>
    Hope this sample helps with the uploading part of your question. I'll see if I can provide a download sample in a later post.

  • Can't upload or download photos on my phone

    I just got the palm centro from at&t, i had the palm from sprint. When I had the sprint palm centro, i could upload and download photos or screensavers. and on my at&t palm, if i send a screensaver to my phone or use my web browser on my phone to upload or download a photo, it wont let me. there are no options to save it or anything.
    Does at&t palm centro's not allow this or how do i fix this problem?
    Post relates to: Centro (AT&T)

    Are you sync'ing the AT&T Centro to the same username in Palm Desktop as the Sprint Centro?
    If you are, this will cause problems on the new device. When you sync the device, it saves the device settings, 3rd party apps, preferences, etc. in the backup folder in the username folder on the PC. When you sync the new device it copies the contents of the backup folder for the old device to the new device. This will cause corruption in the settings for the new device thus causing erratic behavior of the new device.
    You may need to hard reset your device and rename your backup folder. Go to http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=887 and follow the directions to do a hard reset. Next before you hotsync your data back over you will need to rename your backup folder, to do that go here;
    XP
    C:\program files\palm or palm one\[hotsync username]\ and rename your backup
    folder to backup.old
    Vista
    Start-->documents\Palm OS Desktop\[hotsync username]\ and rename your backup
    folder to backup.old
    Then hotsync to your current hotsync name and all your contacts, calendar,
    tasks, and memos will come back over.
    Show file extensions for XP or Vista
    XP
    If you can not view file extensions on your PC I would like you to open a
    folder go to Tools-->Folder Options--> View (tab) and under show hidden
    files and folders uncheck hide file extensions for known file types.
    Vista
    Open control Panel go to Folder Options--> View (tab) and under show hidden
    files and folders uncheck hide file extensions for known file types.
    For reference purposes, click on the following link for the support page for your device on the kb.palm.com webpage.
    http://kb.palm.com/SRVS/NUA/launchTab.asp?t=home&fn=centro&mn=centro&cn=att
    There are links on the page to the user guide, troubleshooting, how to's, downloads, etc.
    Click on the learn tab and under guides and more there is the user guide for your Centro. On Page 169 is the section regarding pictures and videos. You should be able to download pics and use them as screensavers.
    Post relates to: Palm i705

  • Can I make firefox download attachments automatically

    I have users I am trying to switch from Chrome and Safari to Firefox and the complaint right now is to just download attachments automatically so the popup does not ask every time what to do with certain files. even when you check the box do this every time it still reappears when downloading attachments specifically testing from gmail HELP please

    When you place the mouse over a picture, right click, and select '''Save As,'''
    you should be presented with a file menu. From here, you can select how,
    where, file name and format.

  • Can't See or Download Attachments

    I receive many Word and Excel files from PC users. I can't see these attachments or save them to my desktop. Somtimes I get an attachment with a "Save" drop down menu beside it in the header, but the only option I get is to save it as a "mime-attachment" which I can't open. Any suggestions are welcome.

    don't know what happened to that pic....

  • Report to upload and download standard text

    Hi,
    Please let me know how can we upload or download standard text created using so10. Is there any report program to do this?
    Thanks
    Saravana

    hi .
    Go to Abap editor SE38 use RSTXSCRP this program ...
    Run it .. u can find the option Standard text chek this option.
    Give the TEXT ID and langauage.
    and then the mode i.e Export r Import
    by this way u can upload r down load standard text ..
    Note : By rewarding points u can also get 1 point.

  • I can no longer open any attachments that are sent to me. I click on and get cannot preview (but have had this for ages). I am clicking on download and nothing happens. It does not download. I clicked to install a new version after updating and clicking r

    I can no longer open any attachments that are sent to me. I click on and get cannot preview (but have had this for ages). I am clicking on download and nothing happens. It does not download. I clicked to install a new version after updating and clicking repair. But still the attachments won't open including invoices I have received today. It is all attachments not just pdfs.

    Angela Richens wrote:
    It is all attachments not just pdfs.
    Then most likely it is not caused by Adobe Reader.
    Anyway, perhaps someone has some idea, if you give us some details: operating system, browser, email client, ...

  • Since the update to 7.0.1 I am unable to open download updates to IE 8. Nor can I download a fresh version of AOL 9.0vr or download attachments from web beased e-mails. Is there a problem with Firefox, please?

    I have several problems.
    1. I cannot download attachments from web based e-mail accounts (AOL & Tesco.Net) without Firefox crashing and having to be restarted.
    2. I can no longer start Internet Explorer 8
    3. I can't download a new version of IE 8 or AOL 9.0VR. The .exe files download and run but the remainder of the download and installation process does not happen.

    If you can’t use a Bluetooth accessory or car kit

  • I have iCloud on MY PC and when I try to download attachments it is changing the file name to messagepart. What can i do to change this?

    I have iCloud on MY PC and when I try to download attachments it is changing the file name to messagepart. What can i do to change this?

    I don't think this is an iCloud issue- it is the latest release of Safari. Firefox attachments are still correctly downloaded.
    This needs some interest from Apple techs.

  • HT202786 If I upload a video to iCloud can it not  be downloaded again?

    If I upload a video to iCloud can it not  be downloaded again?

    Hi Debi,
    Videos (and photos) can be downloaded from iCloud photo sharing. See this article -
    iCloud Photo Sharing FAQ - Apple Support
    In particular the section Can photos and videos be saved or downloaded from a shared album?
    Yes. After photos are shared, anyone who can view the shared album can download and keep them permanently. Videos can only be downloaded to a Mac or PC. On an iOS device, videos are streamed from iCloud and can't be downloaded.
    On a compatible iOS device, you can save photos to your Photos tab or Camera Roll.
    In iPhoto or Aperture for Mac, you can add or copy shared photos or videos to your Library.
    On a Windows PC, you can copy photos and videos from a shared album to any folder.
    On the web, you can download photos and videos directly to your computer from the detail view of each photo or video.
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • Can't download attachments using the MS CRM 2011 Outlook client

    Hello,
    I am trying to Open/Save Attachment (from Notes in Meeting Entity) in MS CRM 2011 for Outlook Client. Once I click on attachement nothing happen.
    Both CRM Server (On-Premise) and Outlook client are UR13. Its ADFS deployment.
    I've tried solution here:
    https://social.microsoft.com/Forums/en-US/fc222e9a-f426-4c1b-adaa-84c0923576f4/cant-download-attachments-using-the-ms-crm-2013-outlook-client?forum=crm
    But didn't helped.
    From log files I can't get any answer:
    I can download file using direct link in web browser. Also there isn't problem when downloading from CRM web app. 
    [2015-03-19 16:20:11.788] Process:Microsoft.Crm.Application.Outlook.WebFormsHost |Organization:00000000-0000-0000-0000-000000000000 |Thread: 1 |Category: Shared |User: 00000000-0000-0000-0000-000000000000 |Level: Verbose |ReqId: | ExceptionFilter.TryFilterAllCatch ilOffset = 0xF
    at ExceptionFilter.TryFilterAllCatch(Action body, Action`1 filter) ilOffset = 0xF
    at WebBrowserForm.BeforeNavigate(Object sender, DWebBrowserEvents2_BeforeNavigate2Event e) ilOffset = 0x50
    at AxWebBrowser.RaiseOnBeforeNavigate2(Object sender, DWebBrowserEvents2_BeforeNavigate2Event eventArgs) ilOffset = 0x15
    at AxWebBrowserEventMulticaster.BeforeNavigate2(Object pDisp, Object& uRL, Object& flags, Object& targetFrameName, Object& postData, Object& headers, Boolean& cancel) ilOffset = 0x29
    at RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor) ilOffset = 0xFFFFFFFF
    at RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments) ilOffset = 0x17
    at RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) ilOffset = 0x89
    at UnsafeNativeMethods.DispatchMessageW(MSG& msg) ilOffset = 0xFFFFFFFF
    at ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData) ilOffset = 0x235
    at ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context) ilOffset = 0x1DE
    at ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context) ilOffset = 0x13
    at Application.Run(Form mainForm) ilOffset = 0x11
    at Program.Main(String[] args) ilOffset = 0xF0
    >Before Navigation for Site https://crm11.test.cz/PCSTEST/Activities/Attachment/download.aspx?AttachmentType=5&AttachmentId={1CFBD641-0BC7-E411-AC5E-005056A10023}&IsNotesTabAttachment=1 Resetting timer

    Thx for response Daniel.
    Attachements are stored directly in CRM DB (in Annotation table).
    I have also tried fiddler. And it looks response was OK (200). I think its problem with CRM for outlook client.

  • Flash Player XI successfully installed,can't upload photo's. Keeps asking me to download again.

    Even though download of Flash Player XI was successful I still can't upload photo's. Is there a missing link ? The message continually asks me to download Flash Player XI repeatedly. I have tried multiple times but still get the same message to download again.

    http://forums.adobe.com/thread/1195540
    Also, there is no such thing as "Flash Player XI"; you may get fake update notifications from somewhere else than Adobe.

  • How can I upload photos from ipad onto facebook whithout using adobe flash player which I could not download onto my ipad?

    How can I upload photos from ipad onto facebook whithout using adobe flash player which I could not download onto my ipad?

    http://www.google.com/search?q=upload+photos+to+facebook+from+ipad

  • I can't download attachments.  I get acrobat failed to connect to a DDE server.

    Can anyone help me with the error "Acrobat failed to connect to a DDE server".  I can't download attachments very easily.  HELP?  I've tried uninstalling the Adobe reader and re-installing it, but nothing has changed.

    Attachments to what - email?  What is your email client?  How do you download?

  • HT1296 I downloaded an album from i Tunes to my i Phone 4 but somehow all but two of the tracks have deleted themselves from there. When I try to synch again (from a Windows pc) I can't upload the missing tracks again. they are playable from the PC but no

    I downloaded an album from i Tunes to my i Phone 4 but somehow all but two of the tracks have deleted themselves from there. When I try to synch again (from a Windows PC) I can't upload the missing tracks again. They are playable from the PC but not the i Phone. Any ideas?

    You may have to sync all your music off your phone (by unchecking Sync Music on the Music tab of your iTunes sync settings and syncing), then sync it back on to fix this.

Maybe you are looking for

  • Printing pdf exported from InDesign

    When I print a pdf that I've exported from InDesign some of the graphic boxes or even text boxes that have effects, show up. They appear as a box with a subtle color a bit lighter than the background color of my design. These boxes do not show up on

  • Is there a way to search for photographs that are missing?

    I have discovered that some shots that I thought had been imported from iphoto are in fact missing (when I go to open them there is a badge with the yield sign and an exclamation point in it) I don't think this is the end of the world as I have the o

  • Web Cam Undetected.

    Hello, I'm on a Pavillion dm4 - 2070us with Windows 7 notebook. It has a built in web cam, which was working when I first got it. It was awhile ago, but I believe when updating the driver, I pressed cancel or disrupted it in some way. Now, my compute

  • Adding image to page results in permissions error, etc. when publishing in CS4

    I manage dozens of sites on the same server, all managed with Contribute CS4. One such site had to be rebuilt. But now, when I add an image to a page from my computer and try to publish, it gives the following error: Access denied. The file may not e

  • My HP is a Pavilion Desktop 10GB Memory1.5TB Memory with Windows 7 Home Premium possibly defective

    My computer has had problems starting 4 months after purchase. The mother board had to be replaced. And now several months later it is freezing a lot, whining, groaning and popping. Geek Squad supposedly fixed it after bouncing it around to different