Problem downloading files with Linksys E4200

I have been using my router (Linksys E4200v1) with no problem for the last 6 months, but suddenly in the last couple of weeks the problem started, every time I download a file through my router it gets corrupted, however when I download it directly through the modem it download just fine.
I tried to reset the router and used it as a bridge but the problem is still there.
Any ideas how to fix this?
Solved!
Go to Solution.

Hi Raman91,
I am assuming that you are downloading a large file. The router inspects each data that goes inside the network. If the file is too big, the router might have a hard time processing it. To prevent this from happening, you can lower down the MTU size in the router settings. It would cut big chunks of data into pieces that the router could easily process. If you are using a cable connection, lower it down to 1450. If it is DSL, lower it down to 1392.
How to change MTU

Similar Messages

  • Problem downloading files with japanese names

    I'm having trouble with Safari and a group-ware used in our company.
    The group-ware is Cybozu, made in Japan, and now it is in version 6.
    Officially, the only supported browser is MS Internet Explorer versions
    5 and above (should be there something like that? I though it was
    supposed to support ANY browser since that's the MAJOR selling point
    for browser-based group-ware solutions...). And more: it seems that
    support for Macintosh is non-existent.
    Since the Panther upgrade, me and my colleagues can't download files
    whose names are in japanese and that are stored in or sent to us by the
    group-ware . We are working in a telecommunications company (here in
    Japan), but our team focuses on media and advertising, and so are the
    only ones having Macs (in an almost exclusively Windows environment).
    To add to the complexity, our target market is brazilians who live in Japan
    (trust me, there's a lot of them!). So our Macs have to deal also with
    the accentuated characters of the Brazilian Portuguese language, english
    AND japanese.
    In a way, the Mac is the ONLY successful solution to such an environment.
    Since administrative and other mundane tasks don't require dealing with
    multilingual files, the vast majority of the employees use Windows (nothing
    new there, eh?). The problem only starts to affect us when we request help
    to the System Administrators. I called on them about this problem but it
    seems that we are deep under in the priorities list.
    So I present the problem here:
    -When clicking in the link:
    •With Firefox, Netscape and Explorer, there is no problem.
    •With Safari, I am sent to the login window of the group-ware.
    -I figured out that the problem is with the way the URLs are presented.
    Let's say that the file I want to download is <a href="http://www.geocities.jp/claytonshima/Imagem1.gif>this</a>.
    • <a href="http://www.geocities.jp/claytonshima/Imagem2.gif>Here's a sample of a good URL (in Firefox, Netscape and Explorer).
    • http://www.geocities.jp/claytonshima/Imagem3.gif>And this is the URL in Safari.
    So it seems that the problem is the way that Safari handles the japanese
    characters in the URL.
    Any insights on this?
    Thanks in advance!
    Clayton Shima
    PS: Edited and included the link to the images because I couldn't figure out how to write in japanese here in these discussion boards.....

    Hi, thanks for the reply.
    The problems occurs when I click on the link AND when I copy/paste the URL.
    In fact, I realized that something wrong was happening to the way Safari
    handles the urls after I copied and pasted.
    We are using Tiger, but the problem started to appear when we upgraded to
    Panther. In Jaguar there were no problems - or is it the other way around?
    I can't remember, but put the older in this place and I guess you can figure it
    out, sorry!
    Doing what you suggested (turning text encoding to UTF-8) solves the
    problem of downloading, but when turning the encoding, all the text in the
    page gets weird and unreadable. Even so, clicking in the link downloads the
    file, but the file gets saved with its name all messed (the file name extension
    are OK though, the same as files which file names include roman alphabet
    letters preserve the integrity of such letters). This can be a temporary
    workaround, but to rename each downloaded file can get quite painful if
    downloading lots of files!
    I have already tried changing the system language between the three ones
    we most use (english, japanese and brazilian portuguese), with and without
    system restart, in all the possible text encoding combinations, with no avail.
    Is there the possibility that this is a Safri bug? Since the links to the files are
    generated by the server running the groupware, is it possible that the
    group-ware is the culprit? One could think that URL formatting is a pretty
    standard thing....
    ありがとうございます! <- japanese test in UTF-8

  • How to download  file with Save As dialog

    I am trying to download files with a Save As dialog, according to Jason Hunter's instructions in Jave Enterprise Best Practices.
    String filename = "content.txt";
    // set the headers
    res.setContentType( "application/x-download" );
    res.setHeader( "Content-Disposition", "attachment; filename=" + filename);
    // send the file
    OutputStream out = res.getOutputStream();
    returnFile( filename, out);
    The file content.txt is in the root directory of my webapp. But I get this stack:
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.io.FileNotFoundException: content.txt (The system cannot find the file specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.(FileInputStream.java:64)
         at com.interwoven.cssdk.examples.servlets.FileDownloadServlet.returnFile(FileDownloadServlet.java:43)
         at com.interwoven.cssdk.examples.servlets.FileDownloadServlet.doGet(FileDownloadServlet.java:24)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:432)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:386)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:530)
         at java.lang.Thread.run(Thread.java:484)

    The root of the webservers changes from server to server and
    sometimes it depends on the path you run webserver exe.
    The best i have found to overcome this kind of problems is by
    using getResourceAstream() method which basically looks at classpath locations only, but still this has some problems like it should kept at the
    specified classpath becoz the getResourceAsStrem() method is not static
    method and it always associated with the class object and the file
    accessing also should be in the same package/classpath.
    by using getResourceastream you cannot look at other places (except classpaths)
    and this should be used only if you looking for .properites definitions.
    the Second best method is
    see you have a file called "context.txt" right
    before you create a file, first create a directory at the root, let say
    "\tmp"
    and then create a file \tmp\context.txt
    and then open an output stream to it either using fileoutputstreamm...
    and then write all output content to servlet/client output stream.
    this will be the best becoz you are specifying the "\" the root
    and this is common for all operating systems and definitely it will create at the root directory either serverroot or harddiskdrives root
    so you will never missout and the exceptin will also not comes along the way
    cheers..
    if you get new thing , let me know
    bye
    with regards
    Lokesh T.C

  • 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.

  • Safari 5 - Problem downloading file

    I have a problem to download files with Safari 5 (in this case a flash player plugin, but actually with any file). There is a download button on the website, if I click this button, Safari opens a new page with the extension .dmg. I think it tries to display the dmg file as an extension, so I get a black screen. Nothing gets downloaded. If I use Command-Click on this download buitton, I get the option to download the attached file, but Safari only downloads the http link to the page, the file does not get downloaded.
    I need to download this file, because Safaris doesn't display ant flash content, so now I have two issues. Any help is highly appreciated. Thanks!

    HI,
    Try this. Go to ~/Library/Safari/ and move the Downloads.plist file to the Trash.
    This is the path: Open a Finder window. Select your Home Folder in the Sidebar on the left. It has a small house icon. Then open the Library folder then the Safari folder. The Downloads.plist file is there.
    Restart your Mac.
    As for Flash. Uninstall the current copy of Flash, then reinstall fresh, then repair permissions.
    Uninstall Flash
    Install the most recent version of Flash here.
    Repair permissions...
    Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    Carolyn

  • Random problem downloading files

    I'm having a random problem downloading files from various web sites. I click the file to download it and instead of getting the save file box with the file name I'll get something like "attachment.php". It always seems to be php files.
    Clicking the file numerous times to download it will eventually download but it's very frustrating.
    I've been through all the trouble shooting guides and suggestions. Nothing made any difference. I've turn off add-ons, virus scanners etc to no avail.
    For instance, this is the last download I tried (click the download button):
    http://www.pixologic.com/zbrush/getting-started/
    I got "download.php" which isn't just the zip file with a different name. It's actually different.
    Doing it a few times I eventually got the zip file.
    It seems to happen on any web site. The common theme is that this ".php" is involved.
    Is this a bug? Any ideas?

    That is a ZIP archive (ZBrush_Getting_Started.zip) that I get when I click the Download button.
    * http://www.pixologic.com/zbrush/getting-started/
    *http://download.pixologic01.com/download.php?f=Documents/ZBrush_Getting_Started.zip
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Problem downloading file's from a .php cart

    Having problems downloading files form a php based cart software, but Firefox works fine and also on a PC they download on Explorer fine, is there a setting on Safari to fix this or is there another way around this.

    Welcome to Apple Discussions
    Usually, this type of content doesn't work on Safari due to a PC mentality when coding the site. Here, Firefox etc. are better able to read this code.
    Also, a good reason for having alternate browsers from which to choose.

  • Having problem opening files with gradients in CS2

    When I try to open an illustrator 9 file from CS2, I get "An unknown error has occurred." message. I believe this may be a CS2 problem because when I checked further, I discovered that only AI 9 files where the gradient feature was used were affected. Any suggestions would be appreciated.

    Hi Sjmitc, I followed Barbara's instructions about only about 24 hours ago and since then my files have been opening perfectly.  I tried it again before replying to you and they are still opening fine.
    I did have to go through my files a couple of times to find all the Elements preferences, but the solution is working fine so far.  I will let you know if I have any further problems.  It is maddening when it happens, so I hope you can fix yours.
    Best of Luck 
    Date: Wed, 6 Nov 2013 18:23:28 -0800
    From: [email protected]
    To: [email protected]
    Subject: Problem opening files with Mac OS Mavericks and Elements
        Re: Problem opening files with Mac OS Mavericks and Elements
        created by sjmitc in Photoshop Elements - View the full discussion
    Henwen, Is this solution still working for you? I tried this same solution on mine a few days ago and had no luck. However, it actually let me open files this afternoon then when I went back in later today, it was doing the disappearing act again.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5821793#5821793
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5821793#5821793
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5821793#5821793. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Photoshop Elements at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Problem opening files with Mac OS Mavericks and Elements

    I have recently installed Mac OS 10.9.x Mavericks.  Since this I have had problems opening files in Elements 11.  I upgraded to Elements 12, blindly hoping the problem would fix itself, however it hasn't.   When I try to open a file the Finder window pops up then disappears immediately.  Occasionally it will stay open until I scroll down but then closes.   I keep the files on an external drive but the drive is working with all other applications, so I don't think it is that.  If anyone has had a similar problem and has any ideas I would be grateful as the program is unusable for now.  Thanks very much in anticipation

    Hi Sjmitc, I followed Barbara's instructions about only about 24 hours ago and since then my files have been opening perfectly.  I tried it again before replying to you and they are still opening fine.
    I did have to go through my files a couple of times to find all the Elements preferences, but the solution is working fine so far.  I will let you know if I have any further problems.  It is maddening when it happens, so I hope you can fix yours.
    Best of Luck 
    Date: Wed, 6 Nov 2013 18:23:28 -0800
    From: [email protected]
    To: [email protected]
    Subject: Problem opening files with Mac OS Mavericks and Elements
        Re: Problem opening files with Mac OS Mavericks and Elements
        created by sjmitc in Photoshop Elements - View the full discussion
    Henwen, Is this solution still working for you? I tried this same solution on mine a few days ago and had no luck. However, it actually let me open files this afternoon then when I went back in later today, it was doing the disappearing act again.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5821793#5821793
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5821793#5821793
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5821793#5821793. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Photoshop Elements at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • I have been having problems downloading apps with my cellular data. I try installing apps from the app store and when it starts loading it just stays loading for a while but all of a sudden it loads all the way and then it restarts It goes back to waiting

    I have been having problems downloading apps with my cellular data. I try installing apps from the app store and when it starts loading it just stays loading for a while but all of a sudden it loads all the way and then it restarts. It goes back to waiting

    https://discussions.apple.com/message/19584729#19584729

  • Is anyone else having problems downloading apps with the new iOS 7?

    Is anyone else having problems downloading apps with the new iOS 7?

    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430
    If no joy...
    Reset all settings
    Settings > General > Reset > Reset all Settings.
    This will return all iDevice settings to factory defaults... you will not lose any data.... But you will have to re-enter all of the device settings.

  • I can´t download files with Real Player whwn I upsated Firefox.

    I was told to update Firefox whichI did. After that I can´t download files with Real Player which I could before I updated.

    You cannot download files to the iPad via Safari.  You download them on your computer and synch them through iTunes.
    http://manuals.info.apple.com/en_US/ipad_user_guide.pdf

  • Problem downloading music with itunes match

    I have a problem downloading music with iTunes Match. Specifically i have two discs that can't be downloaded and i'm no able to find a solution.
    Does anyone have the same problem?
    Thanks!
    Ale

    Hi,
    Can you give more details? Are the tracks in your iTunes library. What is the source of the music? What is the iCloud status of the tracks.
    Jim

  • Fail to download file with explorer 10 while explorer 9 and other browsers succeed to download the same file

    I try to download file from management website of switch device. The file size is 11.66K.
    The webserver is GoAhead, OS is windows7 and explorer version is 10 (it also happens with explorer 11). The server is using Transfer-Encoding: chunked.
    After I download the file, I get pop-up message from the browser “Do you want to open or save running-config.txt from 1.1.1.11?”
    If I press the save/open button I get message “running-config .txt couldn’t be downloaded”. If I press the retry button the file is downloaded successfully.
    When I used meddler to debug the problem, it didn’t occur and the file was downloaded successfully.
    I took capture of successful download (with meddler debugger) and  another capture of download that raised “couldn’t be downloaded” message, but I didn’t see any difference between the requests and the responses. I also made sure the last chunk
    “0” was not missing in the response and it wasn’t.
    Please note, I also tried many suggestions given to other users that reported similar problem – restart explorer, remove add-ons, etc – nothing worked!
    Please help.

    Hi,
    Did  this issue occur on when you download file from other website?
    This problem occurs if the Do not save encrypted pages to disk option in Internet Explorer is selected.
    To fix this issue, try these methods:
    Methods 1
    On the Tools menu in Internet Explorer, click Internet Options, click the
    Advanced tab, click to clear the check mark from the Do not save encrypted pages to disk check box in the
    Security area, and then click OK. (This is the default Internet Explorer setting.)
    Methods 2
    1.Start Registry Editor.
    2.For a per-user setting, locate the following registry key:
    HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings
    For a per-computer setting, locate the following registry key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings
    3.On the Edit menu, click Add Value, and then add the following value:
    "BypassSSLNoCacheCheck"=Dword:00000001
    4.Exit Registry Editor
    Karen Hu
    TechNet Community Support

  • Unable to download files with IE 9, 10 or 11

    We have a user who is not able to download files using IE. She's running Windows 7 Pro 32-bit. She's able to download using other browsers. This seems to have started when I changed her local rights from Local Admin to Standard user.
    I've disabled all plugins, downgraded from IE10 to IE9, upgraded to IE11. We've also tried running her system in Safe Mode with networking still no luck. I also changed her local rights from standard back to Admin.
    I've tried most of what was suggested here: https://social.technet.microsoft.com/Forums/ie/en-US/7a8e5897-9708-4506-9efc-8f888efbba21/ie9-and-ie10-cannot-downloadopen-any-files
    Any other suggestions?

    Hi,
    Is there any error message when this system couldn't download file through IE? Is this computer added to Domain?
    It would be better to provide a screenshot for this problem.
    Roger Lu
    TechNet Community Support

Maybe you are looking for