Цей вебсайт матиме обмежену функціональність, доки ми проводимо його обслуговування для поліпшення роботи. Якщо прочитана стаття не розв'язала вашу проблему і ви хочете поставити питання, наша спільнота підтримки з радістю допоможе вам на @FirefoxSupport у Twitter та /r/firefox на Reddit.

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Докладніше

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

second download fails

  • 1 відповідь
  • 1 має цю проблему
  • 16 переглядів
  • Остання відповідь від cor-el

more options

I developed a web site with a protected download area (using .htpasswd) containing many pdf documents and download exe files.

The website works correctly with all Microsoft browsers as well as Chrome and Opera.

It also works correctly with Firefox the first time you open or download a file in a session. On subsequent attempts to read or download a file, I get and error of the form "C:\Users\tom\AppData\Local\Temp\0tdBH5YZ.pdf.part could not be saved, because the source file could not be read."

If you shutdown firefox completely and re-login to the website, it again works one time.

I use a very simple php script to support the download where the relevant function is:

function Download($file) { $rtn = FALSE; if (file_exists($file)) { $rtn = TRUE; $size = filesize($file); $type = filetype($file); header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Type: '.$type); header('Content-Length: '.$size); header('Content_Transfer-Encoding: Binary'); header('Content-Disposition: attachment; filename='.basename($file)); header('Expires: 0'); header('Cache-Control: no-cache, must-revalidate'); header('Pragma: public'); ob_clean(); flush();

$lr = readfile($file); if ($lr == FALSE or $lr != $size) { echo "error in readfile
"; $rtn = FALSE; } } return $rtn; }

I developed a web site with a protected download area (using .htpasswd) containing many pdf documents and download exe files. The website works correctly with all Microsoft browsers as well as Chrome and Opera. It also works correctly with Firefox the first time you open or download a file in a session. On subsequent attempts to read or download a file, I get and error of the form "C:\Users\tom\AppData\Local\Temp\0tdBH5YZ.pdf.part could not be saved, because the source file could not be read." If you shutdown firefox completely and re-login to the website, it again works one time. I use a very simple php script to support the download where the relevant function is: function Download($file) { $rtn = FALSE; if (file_exists($file)) { $rtn = TRUE; $size = filesize($file); $type = filetype($file); header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Type: '.$type); header('Content-Length: '.$size); header('Content_Transfer-Encoding: Binary'); header('Content-Disposition: attachment; filename='.basename($file)); header('Expires: 0'); header('Cache-Control: no-cache, must-revalidate'); header('Pragma: public'); ob_clean(); flush(); $lr = readfile($file); if ($lr == FALSE or $lr != $size) { echo "error in readfile<br>"; $rtn = FALSE; } } return $rtn; }

Усі відповіді (1)

more options

This sounds more like a problem with your computer setup than with the website. A possible cause of this issue is a problem with your security software or with the permissions that is preventing Firefox from accessing this file in the temp folder.

You can check the temp folder when this happens (don't close this warning pop-up).


Boot the computer in Windows Safe mode with network support to see if that has effect in case security software is causing problems.