gpt4 book ai didi

php - 需要帮助让 Fine Uploader PHP 服务器示例正常工作

转载 作者:行者123 更新时间:2023-12-01 04:12:36 24 4
gpt4 key购买 nike

我刚刚购买了fine-uploader,但无法使用。我想将它与 xampp 和 php 一起使用,而不使用 s3。

这是index.php:

<html>
<head>
<link href="fineuploader-3.8.2.css" rel="stylesheet" type="text/css"/>
</head>
<body>

<div id="fine-uploader">
</div>

<script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="jquery.fineuploader-3.8.2.min.js" type="text/javascript"></script>

<script>
// Wait until the DOM is 'ready'
$(document).ready(function () {
$("#fine-uploader").fineUploader({
debug: true,
request: {
endpoint: 'php.php'
},
retry: {
enableAuto: true
}
});
});
</script>

</body>
</html>

然后是服务器存储库中的 php.php:

 <?php

// list of valid extensions, ex. array("jpeg", "xml", "bmp")
$allowedExtensions = array();
// max file size in bytes
$sizeLimit = 10 * 1024 * 1024;

//require('fine-uploader/server/php.php');
$uploader = new qqFileUploader($allowedExtensions, $sizeLimit);

// Call handleUpload() with the name of the folder, relative to PHP's getcwd()
$result = $uploader->handleUpload('uploads/');

// to pass data through iframe you will need to encode all html tags
echo htmlspecialchars(json_encode($result), ENT_NOQUOTES);

/**
* Handle file uploads via XMLHttpRequest
*/
class qqUploadedFileXhr {
...

上传文件夹存在并且可写(因为我在本地工作)。所以有什么问题?我是否需要 qqFileUploader.php,它也在存储库中?

谁能提供一个 php 的工作示例吗?

非常感谢您和亲切的问候

网络

最佳答案

现在 PHP 示例应该更容易理解了。我调整了文档,删除了一些多余和不必要的文件,并重新组织了目录结构。现在,对于传统端点(例如您的端点),您应该将客户端端点指向 "endpoint.php" file ,这需要 "handler.php" file 。 Widen 支持的 php 示例位于 root of the php/traditional directoryWiden/fine-uploader-server repo on Github 。还有 S3 端点的示例(在 php/s3 目录中)和 Lithium 框架(不是由 Widen 维护,但位于 php/traditional/li3 中)。

关于php - 需要帮助让 Fine Uploader PHP 服务器示例正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18663843/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com