uploadify

Problem with uploadify jQuery and javascript

So I'm using uploadify to upload multiple images to a folder. Along with each upload, I want to pass along a 'batch name' from a text box value. When I hard code the batch_name (Fire) below, the database updates fine, but when I replace 'fire' with $('#batch_name').val() the value doesn't seem to pass. javascript <script type="text/j...

how to update file upload to db with uplodify in C# without ashx file

i want to update database with the details of the file uploaded using the uplodify jquery control,i have uploaded the file using that,but the code behind is handle in an .ashx file which uses the process request to upload file to server, while using that it calls DB each time considering the no of files(ie if i have 3 files to upload (mu...

uploadify - go to another url when completed uploading process

how to make uploadify to redirect on completion of the uploading task I add this 'oncomplete' : function(){ location.href="imthepage"; } ...

uplodify flash button not working in bowser without flash in .net

I have done an multiple upload with uplodify jquery, but when i check it in a system with no flash player installed a blank area is present in the region of the uplodify flash button, how can i show the user some missing plug-in like in other sites to install latest flash player plug-in... or suggest some option to make upload possible...

Control where Uploadify displays queue items and progress

How can I control where uploadify displays queue items and progress indicators? I would like to move them away from the upload button. Uploadify generates html-items with this the class "uploadifyQueueItem" for items in the queue, but they are just put right after the uploadify object, as far as I can tell. ...

Implementig uploadify in a wordpress template?

hey guys, it's my first time using uploadify and i'm trying to implement it into a wordpress page template. I have a template which should users of my website allow to upload files (or more files at once) to a specific folder on my ftp-server. I want to use uploadify therefore. I really need your help, because i have no idea how i have...

Uploadify upload doesn't start - forbidden location?

hey guys, i'm currently trying to implement "UPLOADIFY" to a wordpress template page. I implemented it well, because almost everything is working now, except the Upload doesn't start, but the reason therefore is propably not wordpress. It's propably the folder I set where i want to upload the files to. The folder lies in my root of the ...

Uploadify gets blocked by http_basic_authentication in Rails

I got uploadify to work properly with a model that I have without any authentication. The problem is, a user needs to be authenticated before s/he can upload a file. When I enable the before filter, the file doesn't get uploaded. before_filter :authenticate def authenticate authenticate_or_request_with_http_basic do |name, password| ...

Has anybody had any experience with getting Uploadify file uploader to work within an asp.net updatepanel

I'm having problems getting Uploadify to work in an ASP.NET UpdatePanel. I'm not getting the "Browse" button displayed and so am unable to select any images for update. It works perfectly outside of the UpdatePanel proving I have hooked everything up correctly. Any Ideas ? ...

Uploadify and PHP FTP - $_REQUEST['folder'] not getting passed

I am trying to use uploadify and an FTP connection to upload a file. I realized the directories weren't being created because the 'folder' var from the js is not getting passed. I am wondering if this is a scope thing. Anyway, here is the js: $("#uploadify").uploadify({ 'uploader' : '/lib/jquery.uploadify-v2.1.0/uploadify.swf', 's...

How to start uploading photo when the user clicks submit button?

Hello, I have one form on the page for addition and it is related with 2 tables in the database. Eg. Say i have a table named event and one table named eventphotos. The uploadify plugin of jquery for eventphotos works just fine, however, event is the master table and eventphotos is the child table. Thus when i upload the photo due to a...

How do i get all files on server side

Hello, I am using uploadify plugin of jquery and have set multiple files upload to true. How do i retrieve these files on the server side? We need to specify file input name in files array $_FILES['fileInputName']. But i have only 1 file input present on the form which is submitting multiple files. How do i retrieve them all? Thanks i...

jquery, uploadify send data

Hi, i have uploadify script: <input type = "text" id = "file_name" name = "file_name" value = "" /> <div class="upload"> <input id="fileInput2" name="fileInput2" type="file" /> </div> <script type="text/javascript"> $(document).ready(function(){ $("#file...

uploadify response with coldfsuion

hi, I am trying to use uploadify with coldfusion, the problem i am having is with my response. My upload2.cfm file is simply hello. So I should in theory just get 'hello' in my #newsImageHolder div. What I do get is the whole html of the current page. Thanks for any help. R. <script> $(document).ready(function() { $('#newsIma...

uploadify - no response from coldfusion

I have a problem, with uploadify. when using upload.php and echo "hello" I get a response. When changing to upload.cfm and hello I get nothing, no reponse. Any ideas what I can do to get a response from CF. upload.php <?php echo "hello"; ?> upload.cfm <cfoutput>hello</cfoutput> $(document).ready(function() { $('#newsImage'...

uploadify video encode with ffmpeg and encoding progress

want to know how to encode uploaded video files through the uploadify I do tried a lot. I call the uploaded file and use the encode script using ffmpeg in uploadify.php file in the uploadify but its not doing nothing. Also I need to show he progress of encoding in the front-end interface The ffmpeg script is working correctly in ssh pu...

Getting Uploadify to work with asp.net-mvc

Hello, I am trying to get Uploadify to work with my site but I am getting a generic "HTTP Error" even before the file is sent to the server (I say this because Fiddler does not show any post request to my controller. I can browse correctly for the file to upload. The queue is correctly populated with the file to upload but when I hit o...

uploadify and sql query

Hello, i am using uploadify script to upload files as my school project. //die($_SESSION['ID'].'.....'.$_SESSION['level']); if (!empty($_FILES)) { $tempFile = $_FILES['Filedata']['tmp_name']; $targetPath = $_SERVER['DOCUMENT_ROOT'] . $_REQUEST['folder'] . '/'; $filename = substr(md5(time()), 0, 8)."-".$_FILES['Filedata']['...

Make Uploadify work in a jquery accordion header when wmode=transparent

Hi, I have a jquery accordion, and I want to insert uploadify inside the accordion header. Putting it there worked fine, but when I set the uploadify swf wmode to transparent, it does not work well: -in Chrome clicking the upload swf does nothing -in Firefox it does open the upload window, but also closes/opens the accordion -in Interne...

Uploadify to use to upload files from server itself

Is there a way to upload files directly from the server itself where the site is hosted. I really want to do that way cause all my old photo files are on the server and I want my uploadify to do grab those files directly from that server location specified. This will need frequently for my future use. please give a solutions if upload...