免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2232 | 回复: 2
打印 上一主题 下一主题

请教下载文件的php代码! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-09-18 10:43 |只看该作者 |倒序浏览
我用了如下代码来下载.torrent文件:
  if( isset( $_REQUEST["download"] ) )
    {
        $tfile = _REQUEST["download"];
        // ../ is not allowed in the file name
        if (!ereg("(\.\.\/)", $tfile))
        {
            // Does the file exist?
            if (file_exists($tpath . $tfile))
            {
                // Prompt the user to download the new torrent file.
                header( "Content-type: application/octet-stream\n" );
                header( "Content-disposition: attachment; filename=" . $tfile . "\n" );
                header( "Content-transfer-encoding: binary\n");
                header( "Content-length: " . @filesize( $tpath . $tfile ) . "\n" );
                // Send the torrent file
                $fp = @fopen( $tpath . $tfile, "r" );
                @fpassthru( $fp );
                @fclose( $fp );
             }
        }
        exit();
    }
该代码是用来实现从https服务器下载.torrent文件的。
其中,tpath表示文件的路径。
该方法我用firefox2.0.3可以下载成功。
用opera9.23,也可以下载,但是它让我保存的文件名后缀为.htm(原本是.torrent文件)。
用IE-7的话,干脆就不能下载。
用IE-6,也不能下载,但是可以打开。
请教各位大侠,帮小弟看看怎么回事。
多谢多谢!!

[ 本帖最后由 goooogo 于 2007-9-18 15:17 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2007-09-18 13:02 |只看该作者
问题已经得到解决。
发现这个原因是默认的IE7通过HTTPS下载时,其cache缓存是不给权限的。
所以,必须先要对cache进行配置和给其权限。
加上了如下代码即可:
Header("Expires: 0");
Header("Pragma: public");
Header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
Header(“Cache-Control: public”);

但是,现在还有一个问题是,用Opera下载的时候,其文件名后缀为.htm(原本是.torrent)。
我该怎么修改啊!
谢谢!!

论坛徽章:
0
3 [报告]
发表于 2007-09-18 15:19 |只看该作者
原帖由 goooogo 于 2007-9-18 10:43 发表
我用了如下代码来下载.torrent文件:
  if( isset( $_REQUEST["download"] ) )
    {
        $tfile = _REQUEST["download"];
        // ../ is not allowed in the file name
        if (!ereg("(\.\. ...



看上去,好像那个Header("Content-Type: application/octet-stream")
并没有执行,因为通过opera看到,其MIME类型还是text/html啊?
奇怪的很
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP