Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- MySQL
- MOUNT
- vsftpd
- xampp
- JavaScript
- exception
- Trac
- ubuntu
- Network
- redmine
- VirtualBox
- BIND
- Fedora
- ftp
- Subversion
- CentOS
- fstab
- Linux
- APM
- 라라벨
- tw_cli
- VMware
- GlusterFS
- Laravel
- AIR
- php
- httpd.conf
- php5
- nateon
- 명령어
Archives
- Today
- Total
어제와 똑같이 살면서 다른 미래를 기대하지 말자
다운로드 파일 열기 시 오류문제 해결(헤더 설정) 본문
■ 다운로드 파일 열기 시 오류문제 해결(헤더 설정)
if(strstr($_SERVER['HTTP_USER_AGENT'], "MSIE 6.0"))
{
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment;; filename={$this->logical}");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".(string)($this->fileSize));
header("Cache-Control: cache, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
header("Connection: close");
} else {
header("Content-type:file/unknown");
header("Content-Length: ".(string)($this->fileSize));
header("Content-Disposition: attachment;; filename={$this->logical}");
header("Content-Description:PHP3 Generated Data");
header("Pragma: no-cache");
header("Expires: 0");
header("Connection: close");
}
if(strstr($_SERVER['HTTP_USER_AGENT'], "MSIE 6.0"))
{
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment;; filename={$this->logical}");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".(string)($this->fileSize));
header("Cache-Control: cache, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
header("Connection: close");
} else {
header("Content-type:file/unknown");
header("Content-Length: ".(string)($this->fileSize));
header("Content-Disposition: attachment;; filename={$this->logical}");
header("Content-Description:PHP3 Generated Data");
header("Pragma: no-cache");
header("Expires: 0");
header("Connection: close");
}
'IT관심분야 > PHP' 카테고리의 다른 글
http 접근인지 https 접근인지 구별해주는 전역변수 비교 (0) | 2008.06.25 |
---|---|
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 6720 bytes) in /home/welfare/public_html/ylfw/classes/class.Image.php on line 29 (0) | 2008.06.17 |
PEAR에서 정의한 PHP 표준규약 (0) | 2008.06.12 |
코딩 표준 (HTML/ASP/JavaScript) (0) | 2008.06.12 |
php5 class 예제 (0) | 2007.11.22 |
Comments