일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- UML
- curl
- xe
- 폼메일
- PHP
- C# IO
- C#
- javascript
- WebView
- android 효과음
- 설치
- roundcube
- php 시큐어코딩
- 안드로이드 gcm
- Mail Server
- 안드로이드
- chart.js
- soundpool
- 자동 생성
- 안드로이드 푸시
- 자바스크립트
- FCM
- 우분투
- dovecot
- Android
- php 취약점
- 안드로이드 푸쉬
- mysql
- html5
- not working
- Today
- Total
그러냐
php 파일 다운로드시 파일깨짐현상 본문
그동안 잘 쓰던 소스였다
그런데 갑자기 파일이 깨진다
$DNTYP = "0";
$DNTYP_TF = ($DNTYP) ? "attachment" : "inline";
$fSAVED = iconv('utf-8', 'euc-kr', $fSAVED);
$fREAL = iconv('utf-8', 'euc-kr', $fREAL);
if (!is_file($fREAL)) {
echo "<script language='javascript'> alert('파일경로가 잘못되었거나, 해당 파일이 삭제 되었습니다.');window.close(); </script>";
exit;
}
// Header("Content-type: file/unknown");
header("Content-Type: application/ms-x-download");
header("Content-Type: application/octet-stream");
header("Content-Transfer-Encoding: binary");
Header("Content-Length: ".(string)(filesize($fREAL)));
Header("Content-Disposition: $DNTYP_TF; filename=$fSAVED");
Header("Content-Description: PHP3 Generated Data");
Header("Pragma: no-cache");
Header("Expires: 0");
if (is_file($fREAL)) {
$fp = fopen($fREAL, "rb");
if (!fpassthru($fp))
fclose($fp);
}
뭐 이런 소스다
문제는 에러 로그를 출력하도록 설정되어있기때문
이를테면 Notice : .......23 Line 뭐 이런거
그래서 로그 출력 off
잘된다
'php' 카테고리의 다른 글
filecopy (0) | 2018.12.17 |
---|---|
php array to json 한글깨짐 완전해결 (0) | 2018.12.06 |
ipTIME NAS 에 설치한 XE, 다올CMS 첨부파일 버튼 무반응 해결 (0) | 2018.07.16 |
[xe개발] 게시판 글 쓰기 처리 순서 과정 (0) | 2018.07.11 |
[기초] XE구조의 비밀 그 다섯번째 - 끼어들기의 신 "트리거(trigger)"!! (0) | 2018.07.11 |