Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Saber mais

Why are some files when opened -1 bytes?

  • 2 respostas
  • 10 têm este problema
  • 2 visualizações
  • Última resposta por Scott M. Sanders

more options

This is the byte count reported in the "opening" dialog.

In particular, I see it with a PHP script that dynamically generates files, and yes, these files contain data.

I see this a lot now in Firefox 8 but do not recall such in earlier versions.

This is the byte count reported in the "opening" dialog. In particular, I see it with a PHP script that dynamically generates files, and yes, these files contain data. I see this a lot now in Firefox 8 but do not recall such in earlier versions.

Modificado por Scott M. Sanders a

Todas as respostas (2)

more options

It happens when server response with no Content-Length: field. "Transfer-Encoding: chunked" provides option to download a attached file without known file size.

POST /tmp/Control/form HTTP/1.1
Host: 192.168.0.1

HTTP/1.1 200 OK
Date: Mon, 14 Nov 2011 10:21:21 GMT
Set-Cookie: fileDownloadToken=done; Path=/; Secure
Content-disposition: attachment; filename=ClientFile.exe
:
Content-Type: application/binary
Keep-Alive: timeout=4, max=100
Transfer-Encoding: chunked
Connection: Keep-Alive

It is known problem. See https://bugzilla.mozilla.org/show_bug.cgi?id=683258

Modificado por cor-el a

more options

Thank you for the info, especially the bug report. It seems to be more or less fixed in Firefox 9 (beta). It simply doesn't show any size now if unknown.