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.
Process File Check, with this for content.
I also have the other files located in the correct areas and linked in my header.
Thanks
BG66