This forum is a community forum meant for users of the plugin to collaborate and help solve issues with implementation, etc. Unfortunately, as the creator of the plugin, I do not have much time to attend to every request here as this is only a side project and I must work a full-time job to provide for my family. This is how I keep the Flash version free and the HTML5 version low cost.
UploadiFive 1.1.1 has been released which includes a small fix for added support on touch devices including iOS 6 devices.
  • hi,

    i am jusy trying v2 instead of v1.6 ! but same code has error occured with v2 while loading page for line 95

    "swfobject is not defined"

    swfobject.embedSWF(settings.uploader, settings.id + 'Uploader', settings.width, settings.height, '9.0.24', settings.expressInstall, data, {'quality':'high','wmode':settings.wmode,'allowScriptAccess':settings.scriptAccess});


    here is my sample code !
        <script type=\"text/javascript\" src=\"js/jquery-1.3.2.min.js\"></script>
    <script type=\"text/javascript\" src=\"js/jquery.uploadify.v2.0.0.js\"></script>

    <script type=\"text/javascript\">

    $(function() {

    $(\"#logoupload\").fileUpload({
    'uploader': 'media/uploader/uploader.swf',
    'cancelImg':'media/uploader/cancel.png',
    'script': 'upload.ashx',
    'folder': 'upload',
    'multi': false,
    'displayData': 'speed'
    });

    });

    </script>
    <input type=\"file\" id=\"logoupload\" />
    <a href=\"javascript:$('#logoupload').uploadifyUpload()\">Start</a>



    what is the problem ?

    tep
  • you need to link the swfobject.js file
  • correct :) it is ok now

    but new problem is when i select file i could not see any mini progress bar, nothing happens ...

    what is going on ?!?!

    may be you should do minor list to migrate from v1.6 to v2 ?

    - add link to swfobject.js file
    - .
    - .
  • make sure your using the css file from uploadify v2. The class references have changed.
  • TravisN. said:
    make sure your using the css file from uploadify v2. The class references have changed.


    Sorry, I'm having the same problem I think. When i select a file to upload, the progressbar with the cancel button (and the hole rectangle) those not appear. I link the new css(uploadify.css).

    Do i have to link too default.css??

    My link:

    <script type=\"text/javascript\" src=\"Commons/swfobject.js\"></script>
    <script type=\"text/javascript\" src=\"Commons/jquery.uploadify.v2.0.0.min.js\"></script>
    <script type=\"text/javascript\" src=\"Commons/jquery-1.3.2.min.js\"></script>
    <script type=\"text/javascript\" src=\"Commons/jquery.uploadify.v2.0.0.js\"></script>
    <link href=\"Commons/uploadify.css\" rel=\"stylesheet\" type=\"text/css\" />


    Nicte
  • first thing I see is your linking both upload.js files. you only need one. and the jquery library needs to be linked before it.

    The cancelImg should appear even if you have linked to the wrong css. For the cancel button not to appear it would indicate your paths are wrong.

    All css styling classes referred to in uploadify v2 start with .uploadify....
  • I change my links so that they stay like this:

    <link href=\"Commons/uploadify.css\" rel=\"stylesheet\" type=\"text/css\" />
    <script type=\"text/javascript\" src=\"Commons/jquery-1.3.2.min.js\"></script>
    <script type=\"text/javascript\" src=\"Commons/swfobject.js\"></script>
    <script type=\"text/javascript\" src=\"Commons/jquery.uploadify.v2.0.0.min.js\"></script>


    Even that my problem was not that one.(thanks anyways because for sure you solve me other thing)

    My problem was that i did not change all what version V2 needs, i was missing
    'uploader'   : 'Commons/uploadify.swf',


    I have the old one, now all works fine.

    Thanks for the fast reply,

    Nicte
  • to do list v1.6 -> v2.0

    [list]- add link to swfobject.js
    - be sure that replace uploadify.css with the new one ( thanks Nicte :) )
    - for server side replace Request.QueryString with Request.Form
    - do not forget to move new function names [/list:u]
    [list] * fileUpload() – uploadify()
    * fileUploadStart() - uploadifyUpload()
    * fileUploadSettings() - uploadifySettings()
    * fileUploadCancel() - uploadifyCancel()
    * fileUploadClearQueue() – uploadifyClearQueue()[/list:u]



    After that my new question is if no flash player installed on client machine , uploadify will run properly if not how can be fixed ?
  • tep said:
    to do list v1.6 -> v2.0

    [list]- add link to swfobject.js
    - add link to uploadify.css
    - be sure uploadify.css and uploadify.swf in the same directory (otherwise button is not being displayed !)
    - do not forget to move new function names [/list:u]
    [list] * fileUpload() – uploadify()
    * fileUploadStart() - uploadifyUpload()
    * fileUploadSettings() - uploadifySettings()
    * fileUploadCancel() - uploadifyCancel()
    * fileUploadClearQueue() – uploadifyClearQueue()[/list:u]


    If you let me, just clear up one thing. I supouse that "add link to uploadify.css" you mean that you should replace the old one for the new one. (just saying it because I almost forgetit... the same name.. :S)

    Nicte
  • tep said:
    be sure uploadify.css and uploadify.swf in the same directory (otherwise button is not being displayed !)


    css does not need to be in the same directory as uploadify.swf
  • correct , my mistake, sorry :)

    i added new one

    for server side replace Request.QueryString with Request.Form


    what about ?

    After that my new question is if no flash player installed on client machine , uploadify will run properly if not how can be fixed ?