1

我收到一个 POST https://www.example.com/php/download.php 405(不允许),这个 ajax 调用我的 php 脚本。它用于我编写的用于下载文件的 http 文件服务器...使用 php 在 Web 根目录之外获取它们。我的其他 PHP 脚本/ajax 调用适用于我的 http 文件服务器......我只是在这个特定的 ajax 调用/php 脚本中遇到了这个问题。我正在使用 Nginx。

同样,只是为了强调....在同一台服务器上,其他 ajax 调用和其他 php 脚本工作。所以,有点输了。

<?php

$path = "/trunk/";
$file = $_POST['filename'];
$file_ext = pathinfo($file, PATHINFO_EXTENSION);
$file_name = pathinfo($file, PATHINFO_BASENAME);
$file_full = $path . $file_name;

$finfo = new finfo(FILEINFO_MIME);

$ctype = $finfo -> file($file_full);
header('Content-Disposition: attachment; filename=\"$file_name\"');
header("Content-Type: " .$ctype);

readfile($file_full);

?>

187 
188 function downloadFile(event) {
189         var fname = event.target.getAttribute("href");
190         fname.replace("#","");
191         var form = new FormData();
192         form.append("filename", fname);
193         
194         var xhr = new XMLHttpRequest();
195         xhr.onreadystatechange = function () {
196 //              setTimeout(refresh, 500);
197         }
198         
199         xhr.open("POST", "php/download.php", true);
200         xhr.send(form);
201 }

这是来自 Google 的 chrome 网络调试器:

Request URL:https://www.example.com/php/download.php
Request Method:POST
Status Code:405 Not Allowed
Request Headersview source
Accept:*/*
Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8
Connection:keep-alive
Content-Length:172
Content-Type:multipart/form-data; boundary=----WebKitFormBoundaryNGHvOaUnlBV8ADWE
Host:www.example.com
Origin:https://www.example.com
Referer:https://www.example.com/index.php
User-Agent:Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.79 Safari/537.4
Request Payload
------WebKitFormBoundaryNGHvOaUnlBV8ADWE
Content-Disposition: form-data; name="filename"

CentOS-6.3-x86_64-minimal-EFI.iso
------WebKitFormBoundaryNGHvOaUnlBV8ADWE--
Response Headersview source
Connection:keep-alive
Content-Length:568
Content-Type:text/html
Date:Fri, 30 Nov 2012 23:59:59 GMT
Keep-Alive:timeout=300
Server:nginx
4

3 回答 3

3

你的 nginx 配置,检查一下。您的位置块不允许您访问该文件。

于 2012-12-01T00:45:26.893 回答
1

我忘记了在 nginx.conf 中,我在 location 块中分别指定了每个 php 文件。我忘了将 download.php 文件添加到其中。感谢 Jacob 和 Guilherme 提供的帮助!

于 2012-12-01T00:45:40.337 回答
0

使固定:

header('Content-Disposition: attachment; filename="'.$file_name.'"');

使固定:

     xhr.onreadystatechange = function () {
        if (r.readyState===4 && r.status===200) {
           //setTimeout(refresh, 500);
        }
     }

[编辑]

尝试:

xhr.open("POST", "php/download.php", true);
xhr.onreadystatechange = function () {
    ...
}
xhr.send(form);
于 2012-11-30T23:44:53.140 回答