active questions tagged fileupload - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T01:10:56Zhttp://stackoverflow.com/feeds/tag/fileuploadhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1815908/how-to-make-a-safe-file-upload-script-in-php1How to make a safe file upload script in php?phpuploader2009-11-29T16:07:05Z2009-11-30T00:39:59Z
<p>Hi,
i check the file for its extension, and mime type - is there anything else i can be doing to help make file uploads safer?</p>
<p>its for an avatar (so all the images are in one folder). i was thinking about using htaccess to forbid any php execution just incase some php file found its way in there. what do you think?</p>
http://stackoverflow.com/questions/1508116/ssh-access-without-password0ssh access without password [closed]shantanuo2009-10-02T07:16:17Z2009-11-29T02:56:49Z
<p>I know that it is possible to ssh to another server without a password if authentication keys are set on both the servers. But I will like to know if it is possible to allow users from any IP (known/unknown) to have password-free ssh access to a directory where they can save their stuff in the easiest possible way?</p>
<p>I am looking for SSH solution and not FTP.</p>
http://stackoverflow.com/questions/1811686/link-to-retrive-pdf-file-from-db-in-asp-net0Link to retrive pdf file from DB- in asp.netRanjana2009-11-28T05:34:36Z2009-11-28T05:39:38Z
<p>i have retrived the pdf file from Database and i linked it to a tag to open pdf file using link. now i want to give the open/save dialog box before a pdf file opened . - in javascript(by using onclick event in tag to call the javascript)</p>
http://stackoverflow.com/questions/1808047/asp-net-catch-upload-of-to-big-files1Asp.Net: Catch upload of to big filesAchim2009-11-27T10:50:01Z2009-11-27T11:00:15Z
<p>Asp.Net has an upper limit for file uploads. I try to catch this situation on the server side. According to the documentation I found, it should be possible to override Application_Error in Global.asax, but it does not work for me. The second option would be to override OnError of the receiving page, but that also does not work.</p>
<p>Can anybody show some working code on how to catch this error on the server side?</p>
http://stackoverflow.com/questions/1804024/how-to-use-paperclip-with-a-file-already-on-my-server0How to use paperclip with a file already on my server?marcgg2009-11-26T14:36:55Z2009-11-27T10:22:41Z
<p>For the record, I'm working on legacy code and I'm trying to plug a new feature without breaking everything. Right now I have a bunch of files on my server as such:</p>
<pre><code> myapp/public/temp/myfile.doc
</code></pre>
<p>The thing is that I want to create a Docfile object from these files in a controller action.</p>
<p>Here is the trimmed down Docfile class:</p>
<pre><code>class DocFile < ActiveRecord::Base
has_attached_file :docs,
:path => "#{Constants::DOCFILES_PATH}:basename.:extension",
:url => "http://#{Constants::SITE_URL}/docs/:basename.:extension"
end
</code></pre>
<p>Paperclip has some nice documentation if you upload from a form, but not in my situation.</p>
<p>So how can I "simulate" the fact that I'm uploading a file?</p>
<p>So far I've tried this:</p>
<pre><code>temp_file_url = "correct_rails_root/myapp/public/temp/myfile.doc"
@docfile = DocFile.new :docs => temp_file
</code></pre>
<p>But it's not working.</p>
<p>Any pointers would be appreciated!</p>
<p>Edit:</p>
<p>I did this:</p>
<pre><code>temp_file_url = Constants::TEMPORARY_UPLOAD_PATH + "/" + params[:temp_file_upload][:doc]
temp_file = File.new(temp_file_url, "w+")
@docfile = DocFile.new :docs => File.open(temp_file_url)
</code></pre>
<p>It's still not working</p>
http://stackoverflow.com/questions/1806970/how-to-upload-pdf-file-into-my-own-server0How to upload pdf file into my own server?Vaishu2009-11-27T05:45:10Z2009-11-27T05:58:50Z
<p>Hi!
In my site, user want to upload a pdf file and I have to save it into my own server. I don't need the content to be saved. I want the exact file to be copied into my server where the published file of the site exists.How to do this?</p>
http://stackoverflow.com/questions/1802784/django-large-file-uploads-custom-processing-with-modwsgi2Django: Large file uploads - custom processing with mod_wsgithe_void2009-11-26T10:12:07Z2009-11-26T20:56:26Z
<p>I'm doing file uploads using Django's File Upload mechanism with a custom handler (by subclassing <code>django.core.files.uploadhandler.FileUploadHandler</code>) which does some additional processing in the
<code>receive_data_chunk(self, raw_data, start)</code> function.</p>
<p>I was curious when the handler is actually called (i.e. after the file has been completely uploaded by the server or as it arrives on the socket)?</p>
<p>From my tests I found out that you have access to the data as it arrives on the socket, but I would like someone to confirm this. I'm a little puzzled by this, because I thought <code>mod_wsgi</code> was a <code>content generator</code> in Apache, thus being called after the <code>input filters</code> which pre-process the client's request.</p>
<p>PS: I'm using Apache + mod_wsgi + Django.</p>
http://stackoverflow.com/questions/1804745/get-the-filename-through-javascript0get the filename through javascriptsumit2009-11-26T16:50:41Z2009-11-26T16:55:11Z
<p>var fu1 = document.getElementById("FileUpload1");</p>
<p>how can i get the filename of fileupload control with id FileUpload1</p>
http://stackoverflow.com/questions/1798544/im-searching-for-a-grails-plugin-to-attach-images-to-a-domain-class0I'm searching for a Grails-Plugin to attach images to a domain classAlphaOne2009-11-25T17:24:03Z2009-11-26T11:59:16Z
<p>Hi,</p>
<p>i am quite new to Grails and on the lookout for a plugin to attach files (images) to a model. something like a uploaded avatar-picture for a user.</p>
<p>in Ruby on Rails i used the fantastic <a href="http://jimneath.org/2008/04/17/paperclip-attaching-files-in-rails/" rel="nofollow">Paperclip</a> plugin. Someting like that would be absolute awesome.</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/1761604/how-to-limit-upload-file-size-in-wicket0How to limit upload file size in WicketJuha Syrjälä2009-11-19T07:52:13Z2009-11-26T09:11:46Z
<p>How to limit file size in uploads in <a href="http://wicket.apache.org/" rel="nofollow">Apache Wicket</a> version 1.4?</p>
<p>I am using <a href="http://wicket.apache.org/docs/1.4/org/apache/wicket/markup/html/form/upload/FileUploadField.html" rel="nofollow">FileUploadField</a> to handle upload with normal form submit without any Ajax stuff. Is it enough to use <a href="http://wicket.apache.org/docs/1.4/org/apache/wicket/markup/html/form/Form.html#getMaxSize()" rel="nofollow">Form.setMaxSize()</a> to limit the size of uploaded file? </p>
<p>If user starts to send a file that is above limit, what happens? Will the connection be closed immediately when server notices that limit has been passed, or is the size check done after the whole request have been received?</p>
<p>I'd like to prevent a case where user uploads file of several GBs that doesn't fit to memory or disk while Wicket handles the request.</p>
http://stackoverflow.com/questions/1797576/c-file-upload-read-to-memory-and-use-as-text-file-is-there-a-better-way0C# File Upload read to memory and use as text file - is there a better way?Polo Herrera2009-11-25T15:12:23Z2009-11-25T20:38:07Z
<p>I have a intranet hosted web application where the user will upload a text file with space delimited data in 5 columns. I don't wish to save the file so I wanted to just use it in memory. I tried many different examples off the web and none worked. Finally a co-worker showed me how to do this. Here is the code and I'm wondering if there is a better way to do this. In the end, all I want is a way to link the data to a gridview or repeater for viewing and later storage into a database (SQL Server).</p>
<p>I am using Visual Studio 2008, C#, .NET 3.5 </p>
<p>The upload file asp tag ID is SurveyFileUpload<br>
The SurveyDate is an asp:input field</p>
<pre><code>Int32 fileLen = SurveyFileUpload.PostedFile.ContentLength;
// Create a byte array to hold the contents of the file.
Byte[] buffer = new Byte[fileLen];
// Initialize the stream to read the uploaded file.
Stream s = SurveyFileUpload.FileContent;
// Read the file into the byte array.
s.Read(buffer, 0, fileLen);
// Convert byte array into characters.
ASCIIEncoding enc = new ASCIIEncoding();
string str = enc.GetString(buffer);
testReadFile(str, db_surveyDate.Text);
******************************
protected void testReadFile(string inFileString, string inSurveyDate)
{
string[] lines = inFileString.Split('\n');
curFileListing.InnerHtml = "";
int curRow = 1;
var readings = from line in lines
select new
{
// this is just for display purposes to show the number of rows on the page
Row = curRow++,
SurveyDate = inSurveyDate,
ItemNumber = Regex.Split(line, "[ ]+")[0],
Northing = Regex.Split(line, "[ ]+")[1],
Easting = Regex.Split(line, "[ ]+")[2],
Elevation = Regex.Split(line, "[ ]+")[3],
Name = Regex.Split(line, "[ ]+")[4]
};
saveFileData.Visible = true;
GridView fileData = new GridView();
fileData.DataSource = readings;
fileData.DataBind();
fileData.AlternatingRowStyle.BackColor =
System.Drawing.ColorTranslator.FromHtml("#eee");
curFileListing.Controls.Add(fileData);
}
</code></pre>
<p>This works OK. I'm not that knowledgeable with LINQ and I had a hard time with the file stream part. Thanx for your time.</p>
http://stackoverflow.com/questions/1797757/sending-a-file-from-iphone-to-php-server-and-got-a-blank-error-returned0Sending a file from iPhone to PHP server and got a blank error returned.unknownthreat2009-11-25T15:36:11Z2009-11-25T15:36:11Z
<p>I am developing an iPhone application which uploads a file to a server. The server is appserv Windows server 2008 running on VMWare Server.</p>
<p>Below is the PHP code on the server I am using:</p>
<pre><code>$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
echo "The file ". basename( $_FILES['uploadedfile']['name']).
" has been uploaded";
} else{
echo "There was an error uploading the file: ". $_FILES['uploadedfile']['error'];
}
</code></pre>
<p>When I upload an image using any web browser on any computer, it works just fine. The server receives the file and all is well. However, this is not the case for sending a file with iPhone. I can say that the problem should reside in PHP because the console of XCode says:</p>
<pre><code>There was an error uploading the file:
</code></pre>
<p>To make this more interesting, the $_FILES['uploadedfile']['error'] supposes to return an integer value regarding the error code, yet there is nothing return at all. It's just blank. Without any error code, I do not know how to deal with this. If you appear to know some possible causes of this, please guide me.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1793284/uploaded-file-char-set-conversion-with-ruby0Uploaded file char-set conversion with Rubyr-dub2009-11-24T22:11:25Z2009-11-24T22:11:25Z
<p>I have an application where we're having our clients upload a csv file to our server. We then process and put the data from the csv into our database. We're running into some issues with char-sets especially when we're dealing with JSON, in particular some non-converted UTF-8 characters are breaking IE on JSON responses.</p>
<p>Is there a way to convert the uploaded csv file to UTF-8 before we start processing it? Is there a way to determine the character encoding of and uploaded file. I've played with iconv a bit but we're not always sure what encoding the uploaded file will have. Thanks.</p>
http://stackoverflow.com/questions/363286/asp-net-upload-of-multiple-files-after-choosing-them-from-jquery1ASP.Net Upload of multiple files after choosing them from jQuerySteve Davies2008-12-12T16:32:19Z2009-11-24T13:38:34Z
<p>I have used a jQuery multiple file upload control [ MultiFile from fyneworks <a href="http://www.fyneworks.com/jquery/multiple-file-upload/#tab-Overview" rel="nofollow">http://www.fyneworks.com/jquery/multiple-file-upload/#tab-Overview</a> ] to collect some filenames but can't work out how to upload them on the server. </p>
<p>The standard asp:FileUpload control only seems to allow single files and I don't want to use the swfupload control, just plain old aspx.</p>
http://stackoverflow.com/questions/1775254/how-to-upload-and-download-file-from-a-server-using-c0How to upload and download file from a server using C#Sakthivel2009-11-21T11:37:32Z2009-11-24T09:59:26Z
<p>Hi Friends</p>
<p>I am developing a webpage in that user can download their Resume for Edit . So I have a link to download the article.
i use the following code for download .</p>
<pre><code>DataTable dt = user.getUserDetails(2);
user.WriteFileFromDBbyUserArticleID(Server.MapPath(Convert.ToString(dt.Rows[0].ItemArray[0])), Convert.ToInt32(2), "CV");
FileUtil.writeFileToResponse(Server.MapPath(Convert.ToString(dt.Rows[0].ItemArray[0])), Response);
////////////////////////////////////////////////
public void WriteFileFromDBbyUserArticleID(string FilePath, int UserID, string FileType)
{
DataAccessLayer dal = new DataAccessLayer();
string selectQuery = "Select Articles.Users_WriteFileFromDB(?,?,? ) from Articles.Users";
DbParameter[] parm = new DbParameter[3];
parm[0] = dal.GetParameter();
parm[0].ParameterName = "@FilePath";
parm[0].Value = FilePath;
parm[1] = dal.GetParameter();
parm[1].ParameterName = "@UserID";
parm[1].Value = UserID;
parm[2] = dal.GetParameter();
parm[2].ParameterName = "@FileType";
parm[2].Value = FileType;
DataTable dtArticleStatus = dal.ExecuteDataTable(selectQuery, parm);
}
///////////////////////////////////////////////////////////////////////////
static public void writeFileToResponse(string filePath,HttpResponse Response)
{
try
{
string FileName = Path.GetFileName(filePath);
Response.Clear();
Response.AddHeader("Content-Disposition", "attachment; filename=" + FileName);
Response.WriteFile(filePath);
Response.Flush();
File.Delete(filePath);
Response.End();
}
catch (System.Exception ex)
{
}
}
</code></pre>
<p>i got the error in the line "Response.WriteFile(filePath);" as follows ,sys.webforms.pagerequestManagerparserErrorException: The message received from the server could not be parsed . Common causes for this error are when the response is modified by calls to response.write(),response filters,httpModules,or server trace is enabled.
Details:Error parshing near .... </p>
<p>Can anyone can help me to fix this? </p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1788784/could-somebody-help-me-in-spotting-an-error-regarding-uploading-an-image-from-iph0Could somebody help me in spotting an error regarding uploading an image from iPhone to server here?unknownthreat2009-11-24T08:59:56Z2009-11-24T09:05:06Z
<p>I am strictly following the answers from <a href="http://stackoverflow.com/questions/125306/how-can-i-upload-a-photo-to-a-server-with-the-iphone">http://stackoverflow.com/questions/125306/how-can-i-upload-a-photo-to-a-server-with-the-iphone</a>.</p>
<p>This part below is the part that get called when my button is pressed.</p>
<pre><code>NSLog(@"buttonPressed: %@", [ConnectServerTryViewController getPathForFile: @"myPic.png"]);
[[EPUploader alloc] initWithURL:[NSURL URLWithString:@"http://10.27.8.251/senior/uploader.php"]
filePath: [ConnectServerTryViewController getPathForFile: @"myPic.png"]
delegate:self
doneSelector:@selector(onUploadDone:)
errorSelector:@selector(onUploadError:)];
</code></pre>
<p>and here's my static getPathForFile method of ConnectServerTryViewController class:</p>
<pre><code>+ (NSString*) getPathForFile: (NSString*) st{
NSString * path = [[NSBundle mainBundle] bundlePath];
NSString * finalPath = [path stringByAppendingPathComponent: st];
return finalPath;
}
</code></pre>
<p>I am very sure that my php is correct. I can upload an image from my mac to my server without any problem, but below shows the output from XCode's console:</p>
<pre><code>2009-11-24 15:43:31.177 ConnectServerTry[1645:20b] buttonPressed: /Users/myName/Library/Application Support/iPhone Simulator/User/Applications/4127CEB7-EFCA-4D84-B7CF-F78ED871A499/ConnectServerTry.app/myPic.png
2009-11-24 15:43:31.179 ConnectServerTry[1645:20b] Begin upload method
2009-11-24 15:43:31.180 ConnectServerTry[1645:20b] Trying urlRequest
2009-11-24 15:43:31.181 ConnectServerTry[1645:20b] Trying connection
2009-11-24 15:43:31.188 ConnectServerTry[1645:20b] Now, wait for the URL connection to call us back.
2009-11-24 15:43:33.781 ConnectServerTry[1645:20b] -[EPUploader(Private) connection:didReceiveResponse:]: self:0x0x3d19760
[Session started at 2009-11-24 15:43:33 +0700.]
2009-11-24 15:43:33.781 ConnectServerTry[1645:20b] -[EPUploader(Private) connection:didReceiveData:]: self:0x0x3d19760
2009-11-24 15:43:33.783 ConnectServerTry[1645:20b] -[EPUploader(Private) connection:didReceiveData:]: data: C:\AppServ\www\senior
There was an error uploading the file, please try again!
2009-11-24 15:43:33.784 ConnectServerTry[1645:20b] -[EPUploader(Private) connectionDidFinishLoading:]: self:0x0x3d19760
2009-11-24 15:43:33.784 ConnectServerTry[1645:20b] *** -[ConnectServerTryViewController onUploadError:]: unrecognized selector sent to instance 0x3d21c70
2009-11-24 15:43:33.785 ConnectServerTry[1645:20b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[ConnectServerTryViewController onUploadError:]: unrecognized selector sent to instance 0x3d21c70'
2009-11-24 15:43:33.785 ConnectServerTry[1645:20b] Stack: (
8307803,
2435731003,
8689723,
8259190,
8111810,
12403,
12513,
3020196,
3020051,
13428152,
13426200,
13426914,
13426914,
13429398,
13088725,
8091873,
8088648,
87949,
88146,
23633923,
8304
)
</code></pre>
<p>Do you appear to know what are some of the possible errors here? </p>
<p>Thank you very much.</p>
http://stackoverflow.com/questions/1787957/file-upload-changes-between-ie6-7-and-ie8-on-net0File Upload changes between IE6/7 and IE8 on .NETGuy2009-11-24T05:19:42Z2009-11-24T05:19:42Z
<p>I've just created an upload page on an ASP.NET MVC application using the standard HTML for file uploading and it's working great using FireFox, IE8, Chrome, and Opera but it won't work for IE6 or IE7.</p>
<p>Anybody know of any differences in IE6/7 that could be causing this to fail?</p>
http://stackoverflow.com/questions/1781312/question-about-file-transfer-for-socket-programming0Question about file transfer for socket programmingconfusedEj2009-11-23T05:49:44Z2009-11-23T06:10:57Z
<p>Is there a good method on how to transfer a file from say... a client to a server?
Probably just images, but my professor was asking for any type of files.</p>
<p>I've looked around and am a little confused as to the general idea.</p>
<p>So if we have a large file, we can split that file into segments...? Then send each segment off to the server.</p>
<p>Should I also use a while loop to receive all the files / segments on the server side? Also, how will my server know if all the segments were received without previously knowing how many segments there are?</p>
<p>I was looking on the Cplusplus website and found that there is like a binary transfer of files...</p>
<p>Thanks for all the help =)</p>
http://stackoverflow.com/questions/1777872/allow-users-to-upload-files-to-server-via-email0Allow users to upload files to server via email?Ryan2009-11-22T05:08:06Z2009-11-22T15:30:35Z
<p>I am administrating a small, private website with 100% trusted users (about 60 people, i know them all personally).</p>
<p>I am having many problems with the PHP based upload system i have in place currently, mainly with users encountering timeout errors and other varying issues due to the way the upload is handled (not to mention the complete deadzone in the UI created by making the user stare blindly at the page until the upload finishes</p>
<p>Anyways, i have been tossing around alternative forms of file uploading i could offer. FTP accounts were nixed due to the level of tech savvy required. Flash/Java uploaders were nixed because i don't really want proprietary third party applets running on my site.</p>
<p>The other idea i came up with that i think would be perfect would be to offer the ability to EMAIL the files to the server. Emailing attachments is a simple enough task, and better yet it provides the user with some tangible feedback to the uploading process.</p>
<p>My question is, how could i go about implementing such a system?</p>
<p>The server is running Gentoo Linux with Apache and i have full root access. Mail dameons can be installed to my needs.</p>
<p>If you have a better way to upload files, perhaps you could offer that instead?</p>
<p>Thanks for your time!</p>
http://stackoverflow.com/questions/1768893/upload-95gb-csv-file-into-mysql-myisam-table-via-load-data-infile-csv-engine-an1Upload 95Gb csv file into MySQL MyISAM table via Load data infile: CSV engine an alternative?Jan2009-11-20T07:28:09Z2009-11-21T23:56:37Z
<p>Hi guys,</p>
<p>I'm trying to upload a 95Gb csv file into a MySQL database (MySQL 5.1.36) via the following command:</p>
<pre><code>CREATE TABLE MOD13Q1 (
rid INT UNSIGNED NOT NULL AUTO_INCREMENT,
gid MEDIUMINT(6) UNSIGNED NOT NULL ,
yr SMALLINT(4) UNSIGNED NOT NULL ,
dyyr SMALLINT(4) UNSIGNED NOT NULL ,
ndvi DECIMAL(7,4) NOT NULL comment 'NA value is 9',
reliability TINYINT(4) NOT NULL comment 'NA value is 9',
ndviquality1 TINYINT(1) NOT NULL ,
ndviquality2 TINYINT(1) NOT NULL ,
primary key (rid),
key(gid)
) ENGINE = MyISAM ;
LOAD DATA INFILE 'datafile.csv' INTO TABLE MOD13Q1 FIELDS TERMINATED by ',' LINES TERMINATED BY '\r\n'
IGNORE 1 LINES
(gid, yr, dyyr, ndvi, reliability,
ndviquality1, ndviquality2
) ;
</code></pre>
<p>I'm running this script via dos at the moment...but the database is not responding. It works for smaller .csv files (1.5Gb) fine. Would it work for this file size?</p>
<p>Do you have any recommendation on how to do this more efficiently/faster? Would engine = csv be an alternative (indexing not activated! -> so queries might run super slow?). </p>
<p>Thanks and cheers,
Jan</p>
http://stackoverflow.com/questions/1130560/get-full-path-of-a-file-with-fileupload-control1Get full path of a file with FileUpload ControlDhanraj2009-07-15T10:19:16Z2009-11-21T23:19:58Z
<p>I am working on a web application which uses the FileUpload control. I have an xls file in the full filepath 'C:\Mailid.xls' that I am attempting to upload.</p>
<p>When I use the command </p>
<pre><code>FileUpload1.PostedFile.FileName
</code></pre>
<p>I cannot get the full filepath from my system. However, when I use the above command in another system it works fine.</p>
<p>I also tried the following commands with no success:</p>
<pre><code> System.IO.Path.GetFullPath(FileUpload1.PostedFile.FileName);
Path.GetFileName(FileUpload1.PostedFile.FileName);
System.IO.Path.GetDirectoryName(FileUpload1.PostedFile.FileName).ToString();
Convert.ToString(System.IO.Directory.GetParent(FileUpload1.PostedFile.FileName));
</code></pre>
<p>How can I get full path?</p>
http://stackoverflow.com/questions/1775016/apache-commons-file-upload-and-percentage-progress-in-google-apps0Apache commons file upload and percentage progress in Google Appsdhaval2009-11-21T09:22:56Z2009-11-21T19:27:50Z
<p>I am trying to use ProgressListener update call to obtain percentage completion of each file. Number of files are dynamically chosen and uploaded. </p>
<pre><code>public class ProgressListenerImpl implements ProgressListener
</code></pre>
<p>Will I be able to use the "item" parameter in the update call? </p>
<pre><code>update(long bytesRead, long contentLength, int item)
</code></pre>
<p>And associate them to each iframe dynamically created in UI? Is there alternative suggestions that are easier or simpler in nature?</p>
<p>The application has to be in Java hosted on Google App Engine. I am not saving files to any filesystem but using the stream to redirect data to Google sites.</p>
http://stackoverflow.com/questions/1776167/silverlight-file-upload-not-working-on-server-side-1Silverlight File Upload not working on server sidenewbie2009-11-21T17:45:14Z2009-11-21T18:18:05Z
<p>I made File Upload following this tutorial, but for some reason my server side is not working at all.</p>
<p><a href="http://www.c-sharpcorner.com/UploadFile/nipuntomar/FileUploadsilverlight03182009030537AM/FileUploadsilverlight.aspx" rel="nofollow">http://www.c-sharpcorner.com/UploadFile/nipuntomar/FileUploadsilverlight03182009030537AM/FileUploadsilverlight.aspx</a></p>
http://stackoverflow.com/questions/1774877/why-do-updating-google-site-with-file-upload-throws-file-itemskippedexception0Why do updating Google site with file upload throws File ItemSkippedException?dhaval2009-11-21T07:54:28Z2009-11-21T08:23:04Z
<p>I have a media source object </p>
<pre><code> MediaStreamSource ms = new MediaStreamSource(is, mediaType);
AttachmentEntry newAttachment = new AttachmentEntry();
</code></pre>
<p>and try to insert it and in case it already exists then update it instead of insert. </p>
<pre><code> try
{
return service.insert(new URL(getContentFeedUrl()), newAttachment);
}
catch (VersionConflictException ve) {
//update version directly
return service.updateMedia(new URL(getContentFeedUrl()), newAttachment);
}
</code></pre>
<p>But when I do so I get following stack trace</p>
<pre><code>org.apache.commons.fileupload.FileItemStream$ItemSkippedException
at org.apache.commons.fileupload.MultipartStream$ItemInputStream.read(MultipartStream.java:880)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:258)
at java.io.BufferedInputStream.read(BufferedInputStream.java:317)
at com.google.gdata.data.media.MediaSource$Output.writeTo(MediaSource.java:87)
at com.google.gdata.data.media.MediaBodyPart$MediaSourceDataHandler.writeTo(MediaBodyPart.java:74)
at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:452)
at javax.mail.internet.MimeMultipart.writeTo(MimeMultipart.java:157)
at com.google.gdata.wireformats.output.media.MediaMultipartGenerator.generate(MediaMultipartGenerator.java:58)
at com.google.gdata.wireformats.output.media.MediaMultipartGenerator.generate(MediaMultipartGenerator.java:37)
at com.google.gdata.client.Service.writeRequestData(Service.java:1831)
at com.google.gdata.client.media.MediaService.updateMedia(MediaService.java:497)
at morefile.UploadApp.uploadAttachment(UploadApp.java:105)
</code></pre>
http://stackoverflow.com/questions/1655084/yui-editor-image-upload0YUI Editor - Image Uploadtarnfeld2009-10-31T17:51:37Z2009-11-21T04:32:15Z
<p>Is there a plugin to upload images via the Images window, that will work with YUI 2.8.0r4 ?
There is one but that only works with 2.3.1 :(</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1770512/is-it-possible-to-display-a-progress-bar-using-paperclip1Is it possible to display a progress bar using paperclip?marcgg2009-11-20T13:45:46Z2009-11-20T14:03:43Z
<p>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?</p>
http://stackoverflow.com/questions/1760888/using-a-file-form-field-with-a-java-servlet0Using a file form field with a Java servletAnkur2009-11-19T04:32:16Z2009-11-19T11:36:52Z
<p>I am tring to retrieve a filename or the file itself for use in a java servlet (from a web form). </p>
<p>I have a file form field:</p>
<pre><code><form enctype="multipart/form-data" method="post" action="SaveDictionary.do">
<label>
<input type="file" name="dictionary_file" id="dictionary_file" />
<br />
</label>
<label>
<br />
<input type="submit" name="saveDic" id="saveDic" value="Save Dictionary" />
</label>
</form>
</code></pre>
<p>I wanto then process it in my servlet, what do I do to process this - for a normal text field I would use something like </p>
<blockquote>
<p>String myValue = (String) request.getParameter("parameter_name");</p>
</blockquote>
<p>Assuming I have this class, what do I put in the doPost() method to get either the file path or the actual file contents.</p>
<pre><code>@SuppressWarnings("serial")
public class SaveDictionary extends HttpServlet {
public void doPost(HttpServletRequest request,
HttpServletResponse response) throws IOException, ServletException {
// I can't work out what goes here, the same
// String myValue = (String) request.getParameter("parameter_name"); doesn't work
response.sendRedirect("dictionary.jsp");
}
}
</code></pre>
http://stackoverflow.com/questions/1761869/why-itemskippedexception0Why ItemSkippedException?dhaval2009-11-19T09:00:08Z2009-11-19T09:10:39Z
<p>I am trying to update content in Google sites and am reading the stream in exception VersionConflictException.</p>
<p>When I check the stream it is all fine and is completely loaded in POST request but then I get following error. </p>
<pre><code>org.apache.commons.fileupload.FileItemStream$ItemSkippedException
at org.apache.commons.fileupload.MultipartStream$ItemInputStream.read(MultipartStream.java:880)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:258)
at java.io.BufferedInputStream.read(BufferedInputStream.java:317)
at com.google.gdata.data.media.MediaSource$Output.writeTo(MediaSource.java:87)
at com.google.gdata.data.media.MediaBodyPart$MediaSourceDataHandler.writeTo(MediaBodyPart.java:74)
at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:452)
at javax.mail.internet.MimeMultipart.writeTo(MimeMultipart.java:157)
at com.google.gdata.wireformats.output.media.MediaMultipartGenerator.generate(MediaMultipartGenerator.java:58)
at com.google.gdata.wireformats.output.media.MediaMultipartGenerator.generate(MediaMultipartGenerator.java:37)
at com.google.gdata.client.Service.writeRequestData(Service.java:1831)
at com.google.gdata.client.media.MediaService.updateMedia(MediaService.java:497)
at com.google.gdata.data.media.MediaEntry.updateMedia(MediaEntry.java:159)
at morefile.UploadApp.updateAttachment(UploadApp.java:136)
</code></pre>
http://stackoverflow.com/questions/632074/fileupload-verifying-that-an-actual-file-was-uploaded0FileUpload - Verifying that an actual file was uploadedTom V2009-03-10T20:14:05Z2009-11-19T06:18:36Z
<p>I have a FileUpload control (FileUpload1) on my web form, as well as a "Sumbit" button, a label, and a hidden field that contains a UserID. I have the following code in the button's click event:</p>
<pre><code>string path = Server.MapPath("~/userfiles/");
if (FileUpload.HasFile)
{
try
{
FileUpload1.SaveAs(path + UserID.Value + "/image.jpg");
}
catch
{
Label1.Text = "* unable to upload file";
Label1.Visible = true;
}
}
</code></pre>
<p>It works great if I upload an actual file. However, if I type a non-existent filename (for example, "c:\a.jpg", which does not exist on my computer) into the FileUpload's textbox, and click the Sumbit button, HasFile still returns true. Furthermore, SaveAs() does not throw any exceptions, and it is a void function that returns no value indicating success or failure. How do I tell whether a file was actually uploaded?</p>
http://stackoverflow.com/questions/1718343/csrf-verification-failed-when-attempting-to-upload-a-file-or-create-a-folder-wi0"CSRF verification failed" when attempting to upload a file or create a folder with filebrowser for DjangoPheter2009-11-11T21:56:42Z2009-11-19T06:00:50Z
<p>I have installed filebrowser for Django (not filebrowser3) and when I try to upload a file I recieve the following error:</p>
<blockquote>
<p><strong>403 Forbidden</strong></p>
<p>CSRF verification failed. Request
aborted.</p>
<p>More information is available with
DEBUG=True.</p>
</blockquote>
<p>The same error occurs when I try to create a new folder which shows that the problem is that filebrowser cannot create files/direcories within my uploads directory. I am using the default settings and have manually created the <code>/media/uploads</code> directory with it's permissions set as <code>755</code>.</p>
<p>If I upload a file to the directory then file-browser admin page states:</p>
<blockquote>
<p>1 Item Folder: 0 Image: 1</p>
</blockquote>
<p>I cannot view the image that I have uploaded.</p>
<p>I have the PIL and sorl.thumbnail modules installed.</p>