Wrong time estimate when downloading with pulsed downloads

When downloading from fileservers (using 'free' download) with some servers the
displayed download time estimate is horribly wrong. This seems to stem from their method of
'pulsed' fast packets download with long pauses between the packets. It would be nice
if this issue could be corrected in next versions (if possible at all). It is very annoying.

If the estimate time doesn't get corrected by Firefox over time if the server sends the file as separate chunks that aren't arriving constantly but at irregular intervals then there is probably not much that you can do other then being patient.

Similar Messages

  • I received a link to a iTune movie trailer in an email.  I clicked on watch now and then play.  I was told I need to download Quick Time, but when I clicked on download, I was told that QT is built into Mac OSX.  My MacBook has OSX Yosemite.

    I received a link to a iTune movie trailer in an email.  I clicked on "watch now" and then "play".  I was told I need to download Quick Time, but when I clicked on download, I was told that QT is built into Mac OSX.  How do I get QT to work?

    When I hit the play icon the little arrow thing goes all the way over to the end of the file and doesn't play at all.  What gives?
    Is this a minimum information puzzle? It is difficult to diagnose a problem long distance when you provide little or no information regarding what actions you are actually taking to export the data or which version of iPhoto you are using. Based on your latest description of how it doesn't work, my best guess is that you are exporting a single frame from your video clip rather than the "Original" file. This is easily checked by opening the file in QT and simply pressing the left/right arrow keys. If the file only contains a single frame, then your export work flow is at fault. Please select the "File > Original" (or similar) option in the export menu to export the entire file in whatever version of iPhoto you are using..

  • Just bought Photoshop Elements 12 and Photoshop Elements 12 Premiere...downloaded with Akamai Download Manager...now cannot find!  Where to look?  Have Mac OS...looked in downloads already...only one site for Photoshop Elements 12...nothing about Premiere

    Just bought Photoshop Elements 12 and Photoshop Elements 12 Premiere...downloaded with Akamai Download Manager...now cannot find!  Where to look?  Have Mac OS...looked in downloads already...only one site for Photoshop Elements 12...nothing about Premiere..when click on Install says Adobe already running...Really?  Where is it?

    restart you computer and use finder to check for downloaded/installed files.

  • Firefox used to download with Speed download along with other browsers, but since updating to version 6.0.2 it no longer does so; OS Z 10.6.8 and Speed Download v 5.2.28; what do I need to adjust and how, to get it working 'in the team' again, please?

    I have had problems with Safari and OS 10.6.8 (I think caused by Apple getting ready for Lion!) but after a lot of uninstalling etc I now have Safari, Camino and Chrome (all most recent versions) automatically sending downloads to Speed Download.
    Speed Download Plugin v 2.1.5 is installed; I do not know what or where to adjust or reset to get Firefox letting its downloads be picked up automatically once again like the other three browsers.

    Lightning is a problem for you because it hooks into Thunderbird at a low level and you need a version compiled for the platform Thunderbird is running on. So you can't do the preferred solution, which is to put your whole profile in a shared folder and have both instances of Thunderbird reference the same profile. (Ditto for Enigmail). Lightning may become an integral part of Thunderbird in an upcoming release, at which point this limitation due to Lightning should disappear.
    And if you can't use a shared profile, you can't set your Lightning, or your Address Book, to share a common set of files. Put another way, the linkage from Thunderbird to its address book files and calendar data is hard-coded, and not exposed where we can adjust it. :-(
    The halfway house is to place your mail stores in a shared place, and use the Local Directory setting in each account's settings to connect to it. They don't need to be in the profile; what's more important in your case is that they are in a folder accessible to both operating systems.
    Look in your profile; everything under Mail and ImapMail needs to be moved out to a shared folder. Note the entries in Thunderbird under Local Directory before you do this, and reconstruct those pathnames in Thunderbird, but adjusted to suit their new locations.
    (You can see here that you need to make many adjustments, one per account, in each instance of Thunderbird, so it's a high-maintenance solution and this is why we don't recommend it when the alternative, moving the whole profile, is possible.)
    I share address books and calendars between Thunderbirds on various computers (and my phone and tablet) by syncing to something in the cloud; Google Contacts and Google Calendar are my choices, using gContactSync and CalDav.
    Having made the break myself some years ago, I'd recommend you break away from Windows. ;-)

  • Date/Time erros when working with Database Connectivity toolkit

    Hi!,
    We are observing errors with date/time when working with LV. The error occurs when the system datetime format is set such that day precedes month (e.g. dd/mm/yyyy). Our VI uses LV 7.1, Database Connectivity 1.0 and SQL Server 2000 on a Win2000 machine.
    Problem details
    Our database in SQL server has a table having columns with data type "datetime"
    If the system date format (as set in control panel) is "mm/dd/yyyy", the 'insert into database' vi works fine. This function inserts the date and time (among other things) into the above mentioned table.
    However, when the system datetime is set to dd/mm/yyyy we start receiving error that date and time is beyond range for dates in which the date had the day field greater than 12 (e.g. 23/10/2005). With the same settings, if the date is such that day field is equal or less than 12 (e.g. 03/10/2005), we do not receive an error but the date is interpreted as 10 March 2005 rather than 03 September 2005.
    Clearly LV (or is it SQL) is mistaking the day field as month.
    We have taken care that when sending and receiving date, the format date and time string is set as per system settings.
    Thus, if system setting is "dd/mm/yyyy" our format string is "%d/%m/%Y"
    And if the setting is "mm/dd/yyyy" our format string is"%m/%d/%Y"
    Any help on problem cause and cure is welcome.
    Thanks,
    Gurdas
    Gurdas Singh
    PhD. Candidate | Civil Engineering | NCSU.edu

    Hi Xu,
    You answer led me to some very interesting fact finding on how SQL server handles date and time. I have attached a zip file which contains webpages that throw more light on this issue.
    The attached pages tell me that SQL has an inbuilt date/time reference format. The default in mm/dd/yyyy. Which explains why my VI worked when I used that format to write to SQL.
    However there is a catch:
    SQL expects the date/time to be in its inbuilt reference format when you WRITE data to SQL. If the date/time is in a different format, better tell SQL about it by using say the SET command you mentioned.
    BUT what about the date/time format when you are reading data from SQL?
    Our finding is that SQL sends date/time string in the system date format when you READ from SQL !!! That is very surprising behaviour (why differentiate between write and read?).
    Is our finding correct?
    So, we adopted the following simple strategy (yet to be fully tested):
    1) Whenever we write date/time to SQL, the string is formatted as mm/dd/yyyy. Presently, the user's SQL server is in the default state. Caveat is that if the user changes SQL date/time from default (which is mm/dd/yyyy) to anything else, our software will give errors. But then he changed it  ;-)
    2) When we read date/time from SQL we format the string as per system date/time format.
    I know this is not very robust coding. But assuming the user keeps his SQL in the current setting, should we expect smooth working?
    In other words, are there any errors and/or flaws in our strategy?
    Thanks,
    Gurdas
    Gurdas Singh
    PhD. Candidate | Civil Engineering | NCSU.edu

  • Downloading with Akamai Download Manager ?

    Is there anyway that i can download Acrobat 8 Professional free trial without this Akamai Download Manager or adobe download manager ?
    its pissing me off i can't downloading with it , I read the help and i followed the instruction but i still can't .
    why don't they just put a link for people who want to download with ADM and other link for normal download ?
    and it says "providing the ability to resume large downloads"
    i dont need this ability, i got a fast internet.
    software like this should be used 5 years ago not now
    also there are many software providing the ability to resume the downloading.
    anyway bak to the topic, plz if anyone know how to download without ADM plz let me know how ?
    thx for reading

    Hi
    I had exactly the same problem with the crappy Akami download manager, my way around it was to copy out the url from the url tab found in the Akami manager (next to status) directly in to my address bar and downloaded direct. For me it was url found below...
    http://trials.adobe.com/akdlm/pub/esd/trial/Acro8trials/AcroPro80_efg.exe
    Hope this solves it mate

  • HT1620 My iPad 2 will not imstall 7.0.6. When finished with the download and reboot, it only installs about 1/4th of the download before rebooting. After which it still indicates there is an update to be installed.

    My iPad2 will not completely install the new security update 7.0.6.  It will download, but during the installation it will show about 1/4th of the install before rebooting. At the completion it still indicates that I need to install the update?

    Try doing the update with device connected to a computer and using iTunes to do the update.

  • Have a Sprint iPhone 5, shows wrong time zone when LTE is on

    I live in Knoxville TN and this just started happening. I've tried resetting and restoring, but it wil go back to being wrong after 10 min or less. Is there anyone else that has ahd this problem and fixed it. Running iOS 7.0.3

    I too live in Knoxville and my phone has started doing that as well. It goes back one hour whenever LTE is on.

  • Wrong time zoon when I set it to automatic time zoon

    How can I fix it?
    Why I can set it to automatically?

    ?? There is no telephone port on a time capsule.  There are ethernet ports to plug your DSL or cable modem into the time capsule.  What type of internet connection do you have?
    You would plut an ethernet cable from your internet modem into the WAN port on the time capsule (the one nearest the USB2 port).

  • Used wrong payment method when paying with PayPal account!

    Hello, Okay so I bought tickets on StubHub and when it asked me how I would like to pay, I checked my PayPal account. But it never said which payment method from PayPal it would charge. I have my PayPal Credit as my default payment method so I assumed it would have been my PayPal Credit account that gets charged. But now I see that a hugh amount was debited out of my bank. I wanted to use my PayPal Credit account to pay because it's such a hugh amount. My question is; can I transfer the payment to my PayPal Credit account and get the money credited back to my bank account? I would like to pay incrementally and I can't afford to give up such a hugh amount all at once. I'm afraid I'll have to cancel the payment if I can't do that. Please help!!! Thanks!

    This user, lucidbydesign, claims you always get a None option in your account details in the iTunes app on a Mac or PC. -
    https://discussions.apple.com/message/15470983

  • Why everytime when i try to download iTunes it says " there is a problem with this Windows Installer package. A program required for this install to complete could not be wrong". What should i do to download it?

    Why everytime when i try to download iTunes it says " there is a problem with this Windows Installer package. A program required for this install to complete could not be wrong". What should i do to download it?

    Repair your Apple software update.
    Go to START/ALL PROGRAMS/Apple Software Update. If it offers you a newer version of Apple Software Update, do it but Deselect any other software offered at the same time. Once done, try another iTunes install
    If you don't find ASU, go to Control Panel:
    START/CONTROL PANEL/Programs n Features/highlight ASU and click REPAIR,

  • I entered a wrong email address when I first set up my iPhone 5c, I successfully changed my Apple ID but when I try to download anything it still comes up with my old apple id

    I entered an invalid email when I first set up my iPhone 5s and forgot the password for the Apple ID. I managed to successfully change the Apple ID and password and validated it through email. However when I tried to download something from the App Store it still came up with my old apple id so I can't download anything. How can I fix this?

    It appears that you have apps that need updating that were pruchased from more than one account
    - Go to settings>Store and sign out and sign into your account.
    - Apps are locked to the account that purchased them.
    - To update apps you have to sign into the account that purchased the apps. If you have apps that need updating purchased from more than one account you have to update them one at a time until the remaining apps were purchased from one account.

  • When I try to download the windows support software it is coming up with an error message saying I am not connected to the internet but having checked the network diagnostics several times I am definitely connected but it still won't work. Any ideas?

    When I try to download the windows support software it is coming up with an error message saying I am not connected to the internet but having checked the network diagnostics several times I am definitely connected but it still won't work. Any ideas?

    I get a problem like yours. I have a mac mini with 2 hdds the server and hd2 I installed windows 7 and the windows works fine. except it will not allow me to get on the net.  I get error 651.  I can boot back to lion and the internet connection works. I googled and error 651 does seem to show up.  I would like  a work around.

  • Hello, I would just like to report the little problem with the apple store. When I try to download an app it loads for about 2 seconds and then it stops downloading! I don't know what's wrong

    Hi, when I try to download an application the app stores downloads it for about 2 seconds and then it stops downloading it! I don't know what's wrong?

    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...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... (But can take Longer..)
    Release the Buttons...
    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.

  • Firefox keeps crashing when I try to launch it. I uninstalled the program, but now when I try to download it from your website the download freezes with 1 second left. This has happened several times.

    firefox keeps crashing when I try to launch it. I uninstalled the program, but now when I try to download it from your website the download freezes with 1 second left. This has happened several times.

    Hello Deb,
      Something fishy going on with those particular files. But without looking at them directly I couldn't say what. Usually in a case like this the problem is some of the metadata that is attached to the file. Where did these files come from? A camera, a scanner, the internet?
      An explanation about the Watched Folder function: It looks for changes to a folder, not just automatically grabbing whatever files are in it. Generally, you want to select an empty folder as a Watch Folder. Once this has been set up, as you add files to this folder they will be imported into the Organizer. If you start with a folder full of images, those will be ignored, any new items will be added.
    -Brett

Maybe you are looking for