当サイトはユーザー体験を改善するためのメンテナンスを実施中に機能が制限される予定です。記事を読んでもあなたの問題が解決せず質問をしたい場合は、Twitter の @FirefoxSupport、Reddit の /r/firefox で、サポートコミュニティが皆さんを助けようと待機しています。

Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

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