我刚刚购买了精品上传器,但我无法让它工作。我想用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的工作示例吗?
非常感谢和亲切的问候
Netik
答案 0 :(得分:2)
现在应该更容易理解PHP示例。我调整了文档,删除了一些冗余和不必要的文件,并重新组织了目录结构。现在,对于传统端点(例如您的端点),您应该将客户端端点指向"endpoint.php" file,这需要"handler.php" file。 Widen支持的php示例位于root of the php/traditional directory中的Widen/fine-uploader-server repo on Github。还有S3端点(在php / s3目录中)和Lithium框架(不是由Widen维护,但位于php / traditional / li3中)的示例。