Search code examples
phpfine-uploader

Fine-uploader out of the box questions / errors


Attempting to run fineuploader right out of the box using the same code that's on the site.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Fine Uploader Demo</title>
<link href="custom.fineuploader-4.0.3.css" rel="stylesheet">
</head>
<body>
<div id="fine-uploader"></div>
<script src="custom.fineuploader-4.0.3.js"></script>
<script>
  function createUploader() {
    var uploader = new qq.FineUploader({
      element: document.getElementById('fine-uploader'),
      request: {
        endpoint: 'server/handleUploads'
      }
    });
  }
  window.onload = createUploader;
</script>
</body>
</html>

Even before beginning to mess around with the endpoint.php I took a look at in a browser and I'm getting the following errors in Firebug:

ReferenceError: jQuery is not defined
}(jQuery));
custom....0.3.js (line 8012)
Error: Cannot find template script at ID 'qq-template'!
...ew Error(qq.format("Cannot find template script at ID '{}'!", options.templateId...

What am I missing?


Solution

  • jQuery library is missing in your code add this in your head tag

    <head>
    .
    .
    .    
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
    .
    .
    </script>
    </head>