15

我正在使用Blueimp 的 jQuery File Upload 插件将图像上传到服务器。问题是,发送服务器是admin.example.com,而存储图像的接收服务器是www.example.com。相同的域,不同的子域。

我按照此处关于设置跨域上传的说明进行操作,就代码而言,一切似乎都是正确的,但是当我尝试上传图像时,出现此错误:

XMLHttpRequest cannot load http://www.example.com/upload/. Origin http://admin.example.com is not allowed by Access-Control-Allow-Origin.

上传文件夹确实具有读写权限。

我将在下面发布我的代码 - 如果有人可以告诉我如何解决这个问题,请告诉我。我之前曾问过这个问题,并打算尝试其他一些解决方案(iframe 上传和 ftp 文件移动)。这些都不是最适合我的情况,如果我能这样做,那将是最简单的......

接收服务器

index.php

<?php
    header('Access-Control-Allow-Origin: http://admin.example.com');  //I have also tried the * wildcard and get the same response
    header("Access-Control-Allow-Credentials: true");
    header('Access-Control-Allow-Methods: GET, PUT, POST, DELETE, OPTIONS');
    header('Access-Control-Max-Age: 1000');
    header('Access-Control-Allow-Headers: Content-Type, Content-Range, Content-Disposition, Content-Description');
?>
<?php

    error_reporting(E_ALL | E_STRICT);
    require('UploadHandler.php');
    $upload_handler = new UploadHandler();

发送服务器

main.js

$(function () {
    'use strict';

    // Initialize the jQuery File Upload widget:
    $('#fileupload').fileupload({
        // Uncomment the following to send cross-domain cookies:
        xhrFields: {withCredentials: true},
        url: 'http://admin.example.com/upload/',
        disableImageResize: false,
        dropZone: $('#dropzone'),
        imageMaxWidth: 1800,
        imageMaxHeight: 1800,
    });
});

我再次尝试了 iframe 文件上传,所以请不要建议它,除非你能给我完整的工作代码......

我也尝试过header('Access-Control-Allow-Origin: *');,但遇到了同样的错误……我正试图在周末之前完成这项工作,所以我会很感激我能得到的任何帮助。:)

谢谢!

编辑:这是失败的 OPTIONS 请求的响应标头

Allow:OPTIONS, TRACE, GET, HEAD, POST
Content-Length:0
Date:Tue, 27 Aug 2013 15:08:29 GMT
Public:OPTIONS, TRACE, GET, HEAD, POST
Server:Microsoft-IIS/7.5
X-Powered-By:ASP.NET
4

3 回答 3

26

我使用这个标题及其对我的工作

header('content-type: application/json; charset=utf-8');
header("access-control-allow-origin: *");
于 2013-08-28T13:51:24.027 回答
1

我会尝试在 web.config 上设置它,因为您在 IIS 服务器上运行:

https://gist.github.com/corydeppen/3518666

<system.webServer>
    <httpProtocol>
        <customHeaders>
            <!-- allowing all-->
            <add name="Access-Control-Allow-Origin" value="*" />
        </customHeaders>
    </httpProtocol>
</system.webServer>
于 2014-09-11T20:41:25.023 回答
0

我的解决方案是使用 UTF-8 encoding 重新保存 PHP 文件。显然,使用的原始文本文件(我复制到位并覆盖以进行快速测试)使用了其他一些时髦的编码。

于 2016-06-22T03:07:54.840 回答