Alex2003
Новичок
Почему меняет имя файла при download?
Вопрос:
header("Content-Disposition: inline; filename=$filename\r\n");
header("Content-Type: application/octet-stream\r\n");
header("Content-Type: application/force-download\r\n");
header("Content-Type: application/download\r\n");
header("Content-Transfer-Encoding: binary\r\n");
//-- send file.
readfile("filename");
Какого мне Експлорер предлагает сохранить файл как readme[1].zip, если $filename = "readme.zip"?
Половина headers зря написал, но, надеюсь, дело не в них...
Вопрос:
header("Content-Disposition: inline; filename=$filename\r\n");
header("Content-Type: application/octet-stream\r\n");
header("Content-Type: application/force-download\r\n");
header("Content-Type: application/download\r\n");
header("Content-Transfer-Encoding: binary\r\n");
//-- send file.
readfile("filename");
Какого мне Експлорер предлагает сохранить файл как readme[1].zip, если $filename = "readme.zip"?
Половина headers зря написал, но, надеюсь, дело не в них...