为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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