Implementation - way 1
  • Step 1 - upload files style.css, upload.php, jquery-1.12.4.min.js (it's in js folder), upload.packed.js (it's in js folder) to your server
  • Step 2 - include javascript and css files to the head section of your page
  • <head>
    <link rel='stylesheet' type='text/css' href='style.css' />
    <script type='text/javascript' src='js/jquery-1.12.4.min.js'></script>
    <script type='text/javascript' src='js/upload.packed.js'></script>
    </head>
    upload.packed.js contains: jquery.uploadifive.min.js, myupload.js
  • Step 3 - create upload folder with write rights on your server
  • Step 4 - place uploader on your website and specify the path parameter with the path to the folder created in step 3
  • eg.
    <input class="IMU" type="file" path="files/" multi="true" startOn="auto" afterUpload="link" />
    You can also use other parameters, which are described in the documentation
Implementation - way 2
  • Step 1 - upload files style.css, upload.php, jquery-1.12.4.min.js (it's in js folder), jquery.uploadifive.min.js (it's in js folder), myupload.js (it's in js folder) to your server
  • Step 2 - include javascript and css files to the head section of your page
  • <head>
    <link rel='stylesheet' type='text/css' href='style.css' />
    <script type='text/javascript' src='js/jquery-1.12.4.min.js'></script>
    <script type='text/javascript' src='js/jquery.uploadifive.min.js'></script>
    <script type='text/javascript' src='js/myupload.js'></script> <head/>
  • Step 3 - create upload folder with write rights on your server
  • Step 4 - place uploader on your website and specify the path parameter with the path to the folder created in step 3
  • eg.
    <input class="IMU" type="file" path="files/" multi="true" startOn="auto" afterUpload="link" />
    You can also use other parameters, which are described in the documentation