Hi.
Installed your latest version.
When i try to download a file with non ascii filename (Документ Microsoft Office Word.docx) i got a file with filename (Документ Microsoft Office Word.docx)
solution:
change OutputHandler.Class.php in private function sendDownloadHeaders($filename, $type, $mobile, $size)
old: header("Content-Disposition: attachment; filename=\"".$filename."\";");
new: header('Content-Disposition: attachment; filename*=UTF-8\'\''.rawurlencode($filename));
Hi. Installed your latest version. When i try to download a file with non ascii filename (Документ Microsoft Office Word.docx) i got a file with filename (Документ Microsoft Office Word.docx)
solution: change OutputHandler.Class.php in private function sendDownloadHeaders($filename, $type, $mobile, $size) old: header("Content-Disposition: attachment; filename=\"".$filename."\";"); new: header('Content-Disposition: attachment; filename*=UTF-8\'\''.rawurlencode($filename));