링크
http://www.phpschool.com/bbs2/inc_view.html?id=12135&code=tnt2&start=0&mode=search&s_que=다운로드&field=title&operator=and&period=all (1208) http://sir.co.kr/bbs/tb.php/g4_qa/6174 (849)
특정 서버에서 엑셀등 문서파일 열기에서 오류가 나오는경우..
하루종일 삽질하다 겨우 해결했습니다.
위 링크는 해답을 얻은 php스쿨 게시글입니다.
두번째 링크는 제가 질문한 게시글입니다.
해결방법:
=============download.php line-55 ==================================
<?
if (file_exists($filepath)) {
header("Cache-control: private"); //<---- 이부분 추가
if(eregi("msie" , $_SERVER[HTTP_USER_AGENT]) && eregi("5\.5", $_SERVER[HTTP_USER_AGENT])) {
header("content-type: doesn/matter");
header("content-length: ".filesize("$filepath"));
header("content-disposition: attachment; filename=$original");
header("content-transfer-encoding: binary");
} else {
header("content-type: file/unknown");
header("content-length: ".filesize("$filepath"));
header("content-disposition: attachment; filename=$original");
header("content-description: php generated data");
}
header("pragma: no-cache");
header("expires: 0");
flush();
?>
=============================================================
하루종일 삽질하다 겨우 해결했습니다.
위 링크는 해답을 얻은 php스쿨 게시글입니다.
두번째 링크는 제가 질문한 게시글입니다.
해결방법:
=============download.php line-55 ==================================
<?
if (file_exists($filepath)) {
header("Cache-control: private"); //<---- 이부분 추가
if(eregi("msie" , $_SERVER[HTTP_USER_AGENT]) && eregi("5\.5", $_SERVER[HTTP_USER_AGENT])) {
header("content-type: doesn/matter");
header("content-length: ".filesize("$filepath"));
header("content-disposition: attachment; filename=$original");
header("content-transfer-encoding: binary");
} else {
header("content-type: file/unknown");
header("content-length: ".filesize("$filepath"));
header("content-disposition: attachment; filename=$original");
header("content-description: php generated data");
}
header("pragma: no-cache");
header("expires: 0");
flush();
?>
=============================================================
댓글 6개
게시글 목록
| 번호 | 제목 |
|---|---|
| 620 | |
| 605 | |
| 594 | |
| 590 | |
| 589 | |
| 578 | |
| 563 | |
| 551 | |
| 550 | |
| 542 | |
| 536 | |
| 531 | |
| 529 | |
| 522 | |
| 511 | |
| 497 | |
| 471 | |
| 467 | |
| 466 | |
| 479 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기