The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
649 views

using slick upload with mvc 2 and jquery / ajax

i'm trying to get slick upload working inside a jquery ui dialog. I've got it uploading the file just fine, and i've checked out the samples, and they all end up with the entire page re-loading. ...
3
votes
0answers
482 views

Valums file uploader xhr returns status 0, readystate 4 and responseText empty

I am using valums fileuploader in asp.net web application. It's working fine with the actual uploads as such. But the error condition checking is not working properly in Chrome and FF. The uploader ...
3
votes
5answers
3k views

SWFUpload works in IE, but not in Firefox

Using SWFUpload v2.2, Firefox 3, IE 8, Flash 10 In my ASP.NET application all uploads are being processed by upload.aspx (I have the correct upload_url set in the settings object). In IE 8 the uploads ...
2
votes
0answers
88 views
+100

qq.FileUploader doesn't work when loaded in AJAX popup

So I got a dialog box that is loaded dynamically using AJAX, in that box, I have a file input that is replaced with Valums qq.FileUploader. I do call the init on the FileUploader after loading the ...
2
votes
3answers
127 views

Is Flex a Good option?

I'm looking to learn and get efficient with an sdk. This along with making my very own interactive internet site. This site would be pretty simple in structure yet have a couple of tricky aspects ...
2
votes
1answer
169 views

Paperclip for asp.net mvc

Is it exists kind of plugin like Paperclip for Rails? it is really painful to implement own system for uploading files the resize it... will be cool to have Attribute for model that will get params ...
2
votes
1answer
96 views

Problem reading excel sheet

SqlDataReader reader; string r=""; if ((FileUpload1.PostedFile != null)&&(FileUpload1.PostedFile.ContentLength > 0)) { r = System.IO.Path.GetFullPath(FileUpload1.PostedFile.FileName); } ...
2
votes
3answers
390 views

ASP.NET Request.Files is empty on flash control postback

I'm using the new Aurigma Image Uploader Flash control, and creating sample pages works great. However, when I drop this control onto an existing page on my existing site, it doesn't work. I can ...
2
votes
6answers
934 views

Any good multiple file uploader for ASP.NET websites?

I need a multiple file uploader for an asp.net website. It'll be great if i can be a drag-and-drop file uploader. I'm assuming I would have to use something like flash to do that.
1
vote
1answer
139 views

Trouble with Carrierwave :convert

I'd like Carrierwave to produce a few versions of an image, one in png format, and one in jpeg format, but I can't seem to get it to work. I realize several similar questions have been asked both here ...
1
vote
1answer
58 views

Uploader for photo working for iPhone

I have try : http://valums.com/ajax-upload/, and http://www.plupload.com/, and http://www.uploadify.com/ but NONE is able to upload a photo to my webpage when i do it with the iphone... why, and How ...
1
vote
1answer
325 views

Rails, Paperclip, Valum's Ajax Uploader

I'm new to Rails and I'm following the below post to combine valum's ajax uploader with paperclip. The uploader appears to work, as the images post to the database and the 'system' directory that ...
1
vote
3answers
519 views

Valums Ajax Upload w/ C# ashx returns 'Index was out of range. Must be non-negative and less than the size of the collection.' error

I've been playing with Valum's AJAX upload script: http://valums.com/ajax-upload/ It ticks all the boxes for me, not using the horrid swfupload flash object for one. I have the JS point at my .ashx ...
1
vote
2answers
497 views

valums file uploader: size value for onComplete, list item hooks, and file overwrite options

I am using Valum's file uploader: http://valums.com/ajax-upload/ To upload files via PHP. 1. I would like to use the size of the file upload in the onComplete call, but I do no know how to get the ...
1
vote
4answers
306 views

Is there a Javascript support library for html5 file API and upload?

until now I was using flash based swfupload and its swfupload.js which provides users with callbacks from flash and a possibility to set it up. I was wondering if there is anything like this for ...
1
vote
1answer
564 views

How to use Aquantum Multiple File Uploader (Jquery Plugin) for DotNetNuke?

I'm trying to use Aquantum Multiple File Upload in DotNetNuke, but I cannot get it working. Aparently is because I cannot set the form tag. Does anybody know how to implement the pluing without ...
1
vote
3answers
244 views

Asp.net C# upload control

I have created an image upload control, however i'm not satisfied with its look. I only want the button shown not the text box to the left of the button. Is there any way I can just use the normal ...
1
vote
1answer
1k views

FileUpload control inside gridview (ajax updatepanel)

I've got a fileupload control inside of a gridview so that each row (item from the database) can have an attachment associated with it. I've got a button next to the fileupload control (besides the ...
1
vote
1answer
172 views

Best way to store a file on server, that is being uploaded by chunks?

Basically I'm looking for a best way to store partial uploads on server. Files are going to be uploaded chunk by chunk. Chunks may come in parallel and in arbitrary order. I will need to temporarily ...
1
vote
1answer
108 views

Facing problem in returning the ongoing upload status back to the HTML using AJAX in Django

I am trying to implement "Upload Progress Bar" in Django. Following is my code in the template file: {% extends "index_base.html" %} {% block content %} <script ...
1
vote
0answers
339 views

GWT FileUpload doesn't work on Chrome and Opera

Hi I have some appliacation written in GWT 2.2 (tested also on previuos versions) with file upload. Basicly there is FileUpload component with Struts servlet on server side. The problem is that it ...
1
vote
2answers
2k views

FileUploader plugin (PhoneGap) for iPhone

I am trying to use the PhoneGap "FileUploader" plugin to upload an image from iPhone to my server: https://github.com/phonegap/phonegap-plugins/tree/master/iPhone/FileUploader How do I use the ...
1
vote
1answer
812 views

Valums Ajax file Upload handle the up. file?

Yes so I am using this, valums ajax fileupload: http://valums.com/ajax-upload/ With these settings: function createUploader(){ var uploader = new qq.FileUploader({ element: ...
1
vote
2answers
203 views

what is safer to use SWFUpload or FileSystemObject activeX?

Due to build-in limitations in the basic file upload that HTML provides (see here: recommended-way-to-check-file-size-on-upload ...
1
vote
2answers
239 views

How can I build web file uploader that will allow multiple file uploads at once?

When you upload files to attach to a gmail message it lets you select multiple files from the browser file selector to attach at once. How could I build the same effect with a Django/Python/jquery ...
1
vote
3answers
298 views

File uploader in asp.net mvc

How can identify input (type="file") id of fileupload while file uploading to server. Let me explain in detail: I have multiple file upload control on my page and different control save file on ...
1
vote
2answers
2k views

How to set the value dynamically to a asp.net file upload control?

I have a fileupload control.I'm selecting a image using the control and saving it in the database.In the edit mode,I need to assign the path of the image in the textbox of the file upload control.Is ...
1
vote
3answers
3k views

How to upload multiple files in jsp?

I have been using "input type='file' " tag to upload single file but I want to extend the functionality to upload multiple files (selecting multiple file in the same dialog box to upload). I don't ...
0
votes
3answers
103 views

Using C# Upload function in VB.Net

This is very specific. I need help with using a C# function in my my VB.Net program The function is in a DLL and the code is below: public void UploadData(string FTPUri, string FilePath, string ...
0
votes
1answer
31 views

multiple file uploader that works well in JSF and IE7

I nead a file uploader that allows you to to select multiple files at once tu upload them. I have a seam2, jsf 1.2, richfaces3 application, we tried the richfaces uploader and uploadify but both has ...
0
votes
0answers
95 views

Symfony 2 :a weird error with file upload

hello guys following the doc to make a file uploader but i cant find out why its not workin when i hit submit its gives an error Unable to create the "uploads/cv" directory although these folders ...
0
votes
1answer
40 views

PHP unit testing form uploader with stream input

I am busy coding a unit test for an AJAX file uploader. The beginning of my save function looks like this: $input = fopen("php://input", "r"); $temp = tmpfile(); $realSize = ...
0
votes
1answer
89 views

cakephp media plugin + jQuery Fileuploader plugin

MY CASE: I'm working on a project on Cakephp, and i'm using david persson's media plugin + jquery Fileuploader plugin following this tutorial. and it works great. The problem is that my case is a ...
0
votes
0answers
63 views

Flash “Movie Not loaded” error with Solmetra uploader

I'm working on embedding Solmetra flash file uploader in a cakephp website. When I try the demo alone it works well but when I embed it to my page I got the error "Movie not loaded" I don't know why? ...
0
votes
1answer
694 views

Primefaces fileUpload fileUploadListener problem

I would like to implement a multitiple uploader in my page. I tryed with primefaces implementation, using 2.2.1 version with no success. The code in the xhtml page: <p:fileUpload ...
0
votes
2answers
140 views

asp.net C# Fileupload always returns false

I am working with a fileuploader to upload a picture. However, evertyime i select the file and click the upload button it says that the fileuploader.file returns a value of false and does not run the ...
0
votes
3answers
276 views

Java upload files to remote linux server WITHOUT ftp or scp

I am trying to write a program in java to upload some files from my local environment to a remote server. I cannot use FTP because there is no FTP server installed on that instance. Also port 22 is ...
0
votes
0answers
75 views

jQuery File Uploader - many upload forms

I have a page with a main form where to include more than one file uploader. Since I cannot put forms inside another one, I've put them at the end of the page, after the main form closure. Now I want ...
0
votes
1answer
387 views

Primefaces FileUpload Extensions Filter

I need to view only some list of extensions in the dialog not even choosing them as a possible variant of file. Using p:FileUpload.
0
votes
0answers
86 views

How to place multiply one-click upload buttons on one page?

I have a web page with several buttons that allow quick upload of additional information for objects on the page. Navigation is ajax-based and total number of one-click upload buttons is rather large ...
0
votes
1answer
680 views

browser Does not open 'Save file' dialog box

I have uploaded a file on server and given a link to that file (test.txt file say) in my asp.net page. when i click on this link, it opens the content of that text file within the browser. But i want ...
0
votes
3answers
540 views

Alfresco file uploader - how does it work?

My alfresco install(on Ubuntu 10.04.2 LTS Server) is failing to upload files via /share. for small files, the progress bar goes to 100% put later fails (after pausing for 2 minutes). There are no ...
0
votes
0answers
164 views

Jquery fileuploader, handling upload complete or file uploaded events?

I'm using JQuery fileuploader. Is there any possible way to handle file uploaded or upload complete like events?
0
votes
2answers
807 views

RichFaces fileupload and NullPointerException

I'm trying to upload file to the server using rich:fileUpload, here's the code: @Name("fileUploader") public class FileUploader { private byte[] fileData; public void ...
0
votes
2answers
207 views

HttpModule wont fire

I have an httpmodule class in my class library called API and the httpmodule in this class library is called FileUploadModule.vb. I have registered the httpmodule in the system.web section with ...
0
votes
1answer
454 views

Click event for file input type?

I am trying to implement an image/file uploader javascript component in my MVC project. The uploader jquery component is bound to a form element that contains a <input type="file" /> In my ...
0
votes
2answers
140 views

Ajax FileUpload

Does a fileuploader can be done only with ajax and not with flash,jquery plugins or frames. Is this possible??
0
votes
4answers
252 views

Multiple fileuploads with ASP.NET MVC

Hi, I have implemented this plugin by Steve Sanders from 2008. In my solution I have 3 buttons for 3 uploads and this works just fine. But ist not a perfect fit and the question is if thera is a ...
0
votes
2answers
115 views

GWT uploading a file to a unix path

I'm kinda puzzled how does a unix path looks like. I have followed an example to write a simple fileuploader using GWT. But the guide was written with Windows in mind. Say if I have C drive. In ...
0
votes
2answers
280 views

Flash uploader - crossdomain issues

I'm using YUI file uploader based on flash, and the flash requests host/crossdomain.xml file. I'm requesting localhost and it requires this file. I was using this before and I have never had this ...

1 2