2

fine-uploader を購入したばかりですが、動作しません。s3なしで、xamppとphpで使いたいです。

これは 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 {
    ...

uploads フォルダーが存在し、書き込み可能です (ローカルで作業しているため)。だから問題は何ですか?リポジトリにもあるqqFileUploader.phpが必要ですか?

誰でもPHPで実際の例を提供できますか?

どうもありがとうございました

ネティック

4

1 に答える 1