1
vote
2answers
31 views
Is it possible to display a progress bar using paperclip?
I'm uploading files using paperclip. Is there a way to show a bar showing the progress of the upload without breaking all the logic?
1
vote
2answers
38 views
Upload 95Gb csv file into MySQL MyISAM table via Load data infile: CSV engine an alternative?
Hi guys,
I'm trying to upload a 95Gb csv file into a MySQL database (MySQL 5.1.36) via the following command:
CREATE TABLE MOD13Q1 (
rid INT UNSIGNED NOT NULL AUTO_INCREMENT,
gid …
0
votes
2answers
33 views
foreach on Request.Files
I'm attempting upload multiple files in ASP.NET MVC and I have this simple foreach loop in my controller
foreach (HttpPostedFileBase f in Request.Files)
{
if (f.Co …
0
votes
1answer
14 views
Using a file form field with a Java servlet
I am tring to retrieve a filename or the file itself for use in a java servlet (from a web form).
I have a file form field:
<form enctype="multipart/form-data" method="post" …
0
votes
1answer
23 views
File uploads not working within jQuery UI Dialog
So I have a rather odd issue that I wanted to see if anyone has some insight into.
I have a page in which I display a grid of files that have been uploaded to our server. The too …
1
vote
4answers
35 views
Verifying Uploaded File
I am working on a document that requires a user to upload a Microsoft Word Documents.
Apart from checking the file extension to be .doc or .docx, is there any other way i can ver …
1
vote
2answers
24 views
Flash uploaders (Uploadify and SwfUpload) - problems with special characters in filenames
I need to implement a flash-based file-uploader, that will allow me to upload multiple files at once and view progress.
I tried Uploadify and SwfUpload and it was quite easy getti …
0
votes
1answer
15 views
Why ItemSkippedException?
I am trying to update content in Google sites and am reading the stream in exception VersionConflictException.
When I check the stream it is all fine and is completely loaded in P …
1
vote
2answers
28 views
upload file using inputstream in GAE java
I am trying to upload file to google sites and am obtaining the stream using apache commons file upload.
I get the input stream as under
InputStream is = fileItem.openStre …
2
votes
4answers
47 views
Streaming uploaded files directly into a database table
I have several applications that allow users to upload attachments that are stored inside a database table. This has worked fine for several years because it was initially intende …
0
votes
1answer
15 views
Upload file suggested by microsoft doest work for me in CGI.
Hi all,
we would like to upload a .zip file in windows mobile to .cgi script running at server.
in desktop we have "Webclient.uploadfile" API, it does't support in winmo. do we ha …
2
votes
1answer
38 views
Why is the jquery multi upload plugin not uploading?
I am using the multi-upload plugin found at: http://www.fyneworks.com/jquery/multiple-file-upload/
This is what I am doing:
These steps will reproduce the problem:
Create a fil …
0
votes
2answers
55 views
“CSRF verification failed” when attempting to upload a file or create a folder with filebrowser for Django
I have installed filebrowser for Django (not filebrowser3) and when I try to upload a file I recieve the following error:
403 Forbidden
CSRF verification failed. Request
…
0
votes
1answer
44 views
Uploading multiple files
I want to upload multiple files , so I what I am doing here is, I take collection object of HttpPostedFile and simply when add button click I am adding files into collection and th …
0
votes
2answers
40 views
File does not upload from web form in Django
Howdy - I've written a very simple app to accept job applications including a resume upload.
Running the bundled server for development locally, I can successfully upload files vi …
