Этот сайт имеет ограниченную функциональность, пока мы проводим техническое обслуживание для улучшения его работы. Если какая-либо статья не решила вашу проблему и вы хотите задать вопрос, наше сообщество поддержки ждёт вас: @FirefoxSupport в Твиттере и /r/firefox на Reddit.

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

download speed history across 1 download and total data used

  • 1 ответ
  • 1 имеет эту проблему
  • 2 просмотра
  • Последний ответ от cor-el

more options

Hello: i am mac 10.6x/Firefox 17.0.1

Is there a way to get a "logging/history record" of a download that has just completed.

I have 2 downlaod problems

1 >) am trying to see why speed changes during a download, average speed used, total time DL took i have a 900mb file from a filehost and it starts at 34kb/s then after 1.5hr goes to 300-400 kb/s. my broadband is much faster than this. it gives me 800+ reguarly when my friend dl this same file from same filehost, (different ISP of course), she gets 1000+ she is using IDM (internet download manager) to download as she is on windows.

2) > the data being consumed per ISP is 3 times size of file being data loaded.

so I wonder his there a historical tracking method in Firefox... so i may begin to troubleshoot my problem download speed and excessive data usage (e.g. file size is 900gb but using surplus monitor it showed 3gb was used)

thankyou in advance

Hello: i am mac 10.6x/Firefox 17.0.1 Is there a way to get a "logging/history record" of a download that has just completed. I have 2 downlaod problems 1 >) am trying to see why speed changes during a download, average speed used, total time DL took i have a 900mb file from a filehost and it starts at 34kb/s then after 1.5hr goes to 300-400 kb/s. my broadband is much faster than this. it gives me 800+ reguarly when my friend dl this same file from same filehost, (different ISP of course), she gets 1000+ she is using IDM (internet download manager) to download as she is on windows. 2) > the data being consumed per ISP is 3 times size of file being data loaded. so I wonder his there a historical tracking method in Firefox... so i may begin to troubleshoot my problem download speed and excessive data usage (e.g. file size is 900gb but using surplus monitor it showed 3gb was used) thankyou in advance

Все ответы (1)

more options

You can use the SQLite Manager extension to generate a list.

  1. Open Profile Directory -> downloads.sqlite -> Go
  2. Hit the Execute SQL tab
  3. Use a Select like this:
SELECT datetime(startTime/1000000,'unixepoch') AS startTime,name,source AS url,target,currBytes AS bytes,((endTime-startTime)/1e6) AS time,currBytes/((endTime-startTime)/1e6) AS speed
FROM moz_downloads
ORDER By startTime DESC
  • Click Run SQL to generate a results list
  • Click the Action button to Save the results to a CSV file