Implementation - way 1
  • Step 1 - upload files style.css, upload.packed.js (it's in js folder), upload.php, upload.swf (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.7.min.js'></script>
    <script type='text/javascript' src='js/upload.packed.js'></script>
    </head>
    upload.packed.js contains: upload.min.js, myupload.js, swfobject.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.7.min.js (it's in js folder), upload.min.js (it's in js folder), swfobject.js (it's in js folder), myupload.js (it's in js folder), upload.swf (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.7.min.js'></script>
    <script type='text/javascript' src='js/upload.min.js'></script>
    <script type='text/javascript' src='js/swfobject.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