We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 28042 ☆ A M B ☆
    • 24,524 Posts
    Uploadify is a very pretty jQuery AJAX and Flash file upload script. I’ve made a few adjustments to it and set it up for MODx.

    http://www.sottwell.com/uploadify.html
      Studying MODX in the desert - http://sottwell.com
      Tips and Tricks from the MODX Forums and Slack Channels - http://modxcookbook.com
      Join the Slack Community - http://modx.org
      • 16702 ☆ A M B ☆
      • 536 Posts
      beautifully
      I’ll try today
      Thanks
        palma non sine pulvere
        • 9757
        • 82 Posts
        Wow. Great. Any chances to integrate this with backend? It will be really useful to have custom TV with uploadify.

        Thanx for your great job!
          • 28042 ☆ A M B ☆
          • 24,524 Posts
          EvoGallery uses it.
            Studying MODX in the desert - http://sottwell.com
            Tips and Tricks from the MODX Forums and Slack Channels - http://modxcookbook.com
            Join the Slack Community - http://modx.org
            • 3722
            • 171 Posts
            Can this be setup for clients to upload files to a specific folder?
            I am setting up a directory of folders and then display them using Ditto.

            Something like this:
            Files
            --Event info
            --Sign up forms
            --Permission slips
            --Stuff

            Thanks
            BG66
              • 3722
              • 171 Posts
              ok, I can’t get this to work and it looks like the manager is locked out on sottwell.com

              I think I found a way to create separate uploads to different folders.
              However, I only get the browse bar on the screen and nothing happens after locating a file.

              This is what I have done:

              Created an upload page (Uploadify Forms), with this for content.
              <script type="text/javascript">
              jQuery(document).ready(function() {
                  jQuery("#uploadify").uploadify({
                      'uploader'          : 'assets/flash/uploadify.swf',
                      'script'            : 'process-upload.html',
                      'checkScript'       : 'process-file-check.html',
                      'cancelImg'         : '/assets/js/cancel.png',
                      'folder'            : '/assets/files/forms',
                      'queueID'           : 'fileQueue',
                      'queueSizeLimit'    : 10,
                      'displayData'       : 'speed',
                      'buttonText'        : 'Select File',
                      'auto'              : true,
                      'multi'             : false,
                      'onComplete'    : function(e,qid,fo,r,d) {
                              jQuery('#uploaded').html(fo.name + ' Uploaded.');
                              jQuery('#uploaded').show();
                              jQuery('#uploadify').uploadifySettings('buttonText','Upload Another?');
                              return true;
                        },
                      'onSelect'        : function(e,qid,fo) {
                              jQuery('#uploaded').hide();
                              return true;
                      }
                  });
              });
              </script>
              <div id="uploadFiles">
              <h2>Upload Files - Forms</h2>
              <div id="uploaded"></div>
              <div id="fileQueue"></div>
              <input type="file" name="uploadify" id="uploadify" />
              </div>


              And two resources:
              Process Upload, with this for content.
              [[ProcessUpload]]


              Process File Check, with this for content.
              [[ProcessFileCheck]]


              I also have the other files located in the correct areas and linked in my header.

              Thanks
              BG66
                • 28042 ☆ A M B ☆
                • 24,524 Posts
                I’ve had some odd things happening with my site in the last few days, so until I pin down just what’s going on the guest Manager access is blocked.

                  Studying MODX in the desert - http://sottwell.com
                  Tips and Tricks from the MODX Forums and Slack Channels - http://modxcookbook.com
                  Join the Slack Community - http://modx.org