0

我正在 Windows 7 环境中开发网站。我使用 blueimp jquery 上传插件,它开箱即用。当我将它上传到我的 linux php 托管上传文件时工作正常,但使用删除按钮却不行。我下载了最新版本的 blueimp 并将其上传到我的 linux php 主机,它也不会删除。我在另一个托管商有另一个托管帐户,并且上传最新版本也可以。

有人知道什么设置会导致麻烦?

==================================================== ==========================

我安装了萤火虫,我得到以下

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access /download/server/php/
on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>

php/ 文件夹有 755 个递归权限。我还将它设置为 777 递归。还是同样的错误。

4

1 回答 1

1

我也有问题,为了工作而改变它并运行。可能对你有帮助

  1. 首先在字体末尾需要更改按钮删除的方法 Find and replce data-type="POST"

  2. 打开文件 server/php/UploadHandle.php

更改此代码

case 'POST':
  $this->post($this->options['print_response']);
break;

case 'POST':
  if ($_REQUEST['file']!='')
  {
    $this->delete($this->options['print_response']);
  } else {
    $this->post($this->options['print_response']);
  }
break;
于 2015-06-13T03:46:35.383 回答