I'm looking for a web based multiple file upload tool, preferably free, or an easy way/ideas to make such a tool.
Scenario:
Have team members upload multiple pictures/videos/files to a folder on the website.
Criteria:
Has to be web based - users should be able to use it from a page in the website.
Language: PHP/Flash Combination i...
Why is <form encrtype=multipart/form-data> required when uploading a file to a web-server.
...
i have a file upload control for uploading excel file into SQL Server base on the worksheet. After each upload completion, the file path will be cleared from the control, i wanna keep the file path in the control so user don't need to browse for the file again for different worksheet. How to do that?
...
I am having a file upload control in my page.
I want to get the full path of the uploaded file by javascript.
i have written
document.getElmentById('fileControl").value;
It is showing the full path in IE but in mozilla 3.5 it is showing only the filename not the path.
So how to solve this problem ?
...
When trying to access the $_FILES array, PHP returns the error "Undefined index: picture".
In my php.ini file, File Uploads are turned on, and any user can write in the /tmp directory. In the HTML form, enctype is set to "multipart/form-data". Interestingly enough, the basename for the uploaded file prints so I believe that PHP has actua...
Hi,
I have a web app, part of which accepts user uploads of csv files. There is a prospective client in China trialing the site. They report that when they try to upload a file the page 'hangs' ie the 'Please wait etc...' graphic which shows while the file is uploading is staying on their page and the file doesn't get uploaded. I have...
When I try to post a file its coming back false ie there was no file attached. Can anyone see anything wrong with this? Or what might be causing it.
<form id="Form1" enctype="multipart/form-data" method="post" runat="server">
<asp:FileUpload ID="fileUpload" runat="server" />
<asp:Button ID="cmdSubmitApplication" runat="server" T...
Idealy I would like to have the following:
<form1 ...>
...
<form2 ...>
//This form uploads a file using AJAX and writes the content into a text field below.
</form2>
<input type="text"/>
</form1>
Firefox handles this but IE likes to follow the rules of W3C this time and it doesn't really work.
So now...
How to get FullName with path info in FireFox using asp.net upload control?
With IE, I can get the FullName of a file with the full path info using asp.net upload control:
<asp:FileUpload ID="FileUpload1" runat="server" />
In IE, the FileUpload1.PostedFile.FileName is E:\iProject\Demo1\abc.jpg
But in FireFox, the FileUpload1.Post...
I am passing a GUID as a header and a photo as a body to a php file. The GUID is used to authenticate. If it's not valid, I want to end the call and I do this using
die("GUID was expired");
This works fine, but my issue is that the whole photo is uploading before that gets called. This is bad for the user. I want to read the header a...
We have a lamp server that is fairly busy, the CPU usage hovers around 90% at peak times. We are having an intermittent problem where file uploads from web forms fail. It only seems to happen with larger files (over a mb) and it seems to affect some users more than others. We've gone through and checked the obvious stuff like PHP ini ...
Want to add a nice multiple image upload feature to a site so I figured use one that most people already know. This is a .Net MVC App
Anyone know what Facebook uses?
If not, then does anyone know of one that is similar?
...
I m using asp.net 2.0 without AJAX.
The file path in the fileupload control gets vanished once the postback take places. i do some validations for other controls in code behind.
i need to upload the file again for further processing. can any one suggest me how to hold the filepath in the fileupload control even after postback.
...
Hi,
I want a robust way to upload a file. That means that I want to be able to handle interruptions, error and pauses.
So my question is: Is something like the following possible using javascript only on the client.
If so I would like pointers to libraries, tutorials, books or implementations.
If not I would like an explanation to why...
Hi guys
Here's my code
Dim amPhotoPath As String = "\graphics\Profiles\" & ViewState("fileName")
personalPhotoUpload.SaveAs(Server.MapPath("~") & amPhotoPath)
For some reason the image is not saving.. if I debug the code, and get the URL in Quickwatch, the folder opens, so the path is correct, but it just doesnt save! I have just set...
hi, is it possible to show "choose file" window, when i click on some image ? i want to hide that input and browse button, which shows when i type
thanks
...
Is there any easy way how to handle AJAX file upload in Rails? e.g. with a plugin
...
I'm having problem with Rails plugin attachment_fu. On every upload, I get validation error
Size is not included in the list
I'm currently using
Rails 2.3.3
Ruby 1.8.6
The only thing I found about this problem is quite outdated discussion, which didn't help much.
Is there any solution to this problem?
I'm using attachment_fu, b...
With Apache/PHP5, is it possible to get the contents of an uploaded file directly without having it written to the file system?
Not much on Google about this, but it appears that files are always written to a temporary directory once they are uploaded.
...
when posting back to my controller my model is populated with correct valeus and my string filed has the file name, but the Request.Files is empty.
My input at the view is:
<input id="SitePlan" name="SitePlan" type="file" value="<%= Html.Encode(Model.SitePlan) %>" />
My form tag begins with:
<% using (Html.BeginForm(new { enctype =...