active questions tagged upload - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T20:40:20Zhttp://stackoverflow.com/feeds/tag/uploadhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1748690/multiple-file-uploader-looking-at-google-docs-implementation0Multiple file uploader - looking at Google Docs implementationFiona Holder2009-11-17T12:56:42Z2009-11-26T14:16:15Z
<p>I'm looking to implement a multiple file uploader in my ASP.NET 3.5 site. </p>
<p>Now, the Google Docs multi-file uploader is pretty awesome, and I'd like to create something like that. Correct me if I'm wrong, but Google Docs is not open source, so I can't get my hands on the source code for it. </p>
<p>Any ideas on how this is implemented, or the best way of creating a nice interactive multi-file uploader like it?</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/1801919/easy-way-to-upload-a-screenshot-from-clipboard-through-a-browser-form1Easy way to upload a screenshot (from clipboard) through a browser formAlphaOne2009-11-26T06:40:36Z2009-11-26T06:49:21Z
<p>Hi,</p>
<p>i am pretty sure, that i've seen such a feature on a website somewhere in the web.</p>
<p>i want to give the user a form, where he can input some data and attach the current clipboard content (very likely a screenshot) to the form and then submit it as an image file.</p>
<p>after all, i don't want the user to go through all the hassle: take a screenshot, open his favorite image processing app, paste the screenshot, save it as a file, then go to my form to click a browse button and eventually search for the saved file.</p>
<p>there has to be an easier method, with all the ajax-jquery-web2.0-stuff.</p>
<p>thanks in advance</p>
http://stackoverflow.com/questions/1797697/upload-file-with-java-servlet-to-app-engine0upload file with java servlet to app enginedarren2009-11-25T15:29:02Z2009-11-25T15:30:35Z
<p>Hi</p>
<p>I would like to be able to have the user upload short audio samples to my app-engine application and store them in the provided datastore. I'm using the Java servlet version. </p>
<p>My problem is using a multi-part form to upload a file. Using the normal request.getParameter() method returns null with multi-part forms. I have read about using the oriely MultiPartForm class, but that seems to involve saving the file to the server filesystem, which is out of the question. </p>
<p>Can somebody show me how to upload a file so that it ends up in an AppEngine database Blob object? </p>
<p>thank you</p>
http://stackoverflow.com/questions/1796628/php-files-file-loop-upload0PHP $_FILES file loop uploadJadaBharata2009-11-25T12:32:49Z2009-11-25T12:41:17Z
<p>I want to insert files into mysql from php function.
The files that need to be uploaded are already present in the server.
So I don't want to use the upload form.
I want to loop through the directory and get the files info into $_FILES.</p>
<p>Please let me know how will I get the $file into $_FILES and then call upload.</p>
<p>$dir_handle = @opendir($path) or die("Unable to open folder");</p>
<p>while (false !== ($file = readdir($dir_handle))) {</p>
<p>echo "$file";</p>
<p>}</p>
<p>Thanks
Jad.</p>
http://stackoverflow.com/questions/1278375/how-do-i-kick-start-a-jcl-stream-on-the-mainframe-using-ftp-inside-vb-net-20080How do I "kick-start" a jcl stream on the mainframe using FTP inside vb.net 2008Laurie MC2009-08-14T14:59:37Z2009-11-25T03:00:04Z
<p>The following is the code that uploades a bytearray into a file DSN on our mainframe. It works very well. What I want to do is upload the jcl which should then start to execute. That's the part I am stuck on. I used to be able to do it through WININET, but I want to get away from that and use the better FTP commands in vb.net</p>
<pre><code>Public Shared Sub UploadToMainFrame( _
ByVal ftpHost As String, _
ByVal ftpMainframeDSN As String, _
ByVal UserName As String, _
ByVal Password As String, _
ByVal DataToUpload As String)
Dim ftpRequest As FtpWebRequest
Dim ftpFullMainframePath = String.Format("ftp://{2}//'{3}'", ftpHost, ftpMainframeDSN)
ftpRequest = WebRequest.Create(ftpFullMainframePath)
ftpRequest.Credentials = New NetworkCredential(UserName, Password)
ftpRequest.KeepAlive = True
ftpRequest.UseBinary = False
ftpRequest.Method = WebRequestMethods.Ftp.UploadFile
ftpRequest.
Dim byteArray() As Byte = StrToByteArray(DataToUpload)
ftpRequest.ContentLength = byteArray.Length
Dim ftpStream As Stream = ftpRequest.GetRequestStream()
ftpStream.Write(byteArray, 0, byteArray.Length)
ftpStream.Close()
ftpStream = Nothing
ftpRequest = Nothing
End Sub
</code></pre>
http://stackoverflow.com/questions/1791724/validate-upload-file-path-if-it-is-local-or-network-using-javascript-in-asp-net-w0Validate upload file path if it is local OR network using Javascript in ASP.NET web pageRama2009-11-24T17:43:37Z2009-11-24T18:54:59Z
<p>I have a file upload control on ASP.NET web page. </p>
<p>If I try to upload a file from network, then I get a runtime error. actually I want to trap this error and display a friendly message saying uploading file from network is not allowed instead of the ugly runtime error (I guess error is due to security restrictions). </p>
<p>It seems I can't do this in code behind, because it doesn't go that far and throws an exception. </p>
<p>Is it possible to validate the file path in javascript and determine if it is local or a network drive?</p>
<p>added the code
asp.net mark-up:
<br>
</p>
<p>javascript:
function ValidateFileUpload()
{
var uplFile = document.getElementById("<%= uplFile.ClientID %>");
var filePath = uplFile.value;
filePath = filePath.trim();
if (filePath.length <= 0)
{
alert('Please select a file for upload');
uplFile.focus();
return false; //no file selected;<br>
}</p>
<pre><code> return true;
}
</code></pre>
<p>code-behind:
protected void btnUploadPackage_Click(object sender, EventArgs e)
{
if (Page.IsValid)
{
if (uplFile.HasFile)
{
try
{
hdnFileName.Value = uplFile.PostedFile.FileName;
_presenter.UploadPackage(UploadService);
}
catch (Exception ex)
{
HandleError("An error has occured uploading the file", ex);
}<br>
}
else
{
DisplayMessage("The file is either empty OR does not exist");
}
}
}</p>
<p>as I said, I can't catch this exception in code behind, because asp.net is throwing exception much before that. it is not hitting the breakpoint in button click event handler</p>
<p>to clarify, I am not trying to save file to network, but I want to disallow the user from uploading a file from network by showing a custom message, not a runtime error. Thanks.</p>
<p>I found the problem and want to close this post. it was throwing runtime error, because the file size was too large. if I use a small file, then it works fine. sorry for wasting your time. I don't know how I can close this, so I am editing the post</p>
http://stackoverflow.com/questions/1788527/myproblem-in-uploading-in-php0myproblem in uploading in phpjasmine2009-11-24T07:55:18Z2009-11-24T16:20:20Z
<p>i have this page for upload:</p>
<pre><code><?php
require ('incs/db.php');
require_once ('incs/funcs.php');
?>
<?php
if (array_key_exists('upload', $_POST)) {
$directory = str_replace(basename($_SERVER['PHP_SELF']),'',$_SERVER['PHP_SELF']);
$uploadHandler = $_SERVER['DOCUMENT_ROOT']. $directory . 'images/';
// $uploadHandler = "echtitipi".$_SERVER['HTTP_HOST']. '/images/';
$max_file_size = 30000;
define('UPLOAD_DIR', $uploadHandler);
$ext= end(explode(".", $_FILES['image']['name']));
$name = rand(1111111,9999999).'.'.$ext;
if (move_uploaded_file($_FILES['image']['tmp_name'], $uploadHandler. $name))
{
$upload = true;
$title = $_POST ['title'];
$sql = "INSERT INTO photo (id, keyword, photoName)
VALUES ('','$title','$name')
";
$result = mysql_query ( $sql, $con );
}
else
{
$upload = false;
$msg = 'Cant Upload!';
}
}
?>
<?php
include ('incs/header.php');
?>
<?php
getUrlQuery();
?>
<script language="javascript">
<!--
function pick(symbol, path) {
if (window.opener && !window.opener.closed)
window.opener.document.form.img.value = symbol;
window.opener.document.form.imgbox.src = path;
window.close();
}
// -->
</script>
<form action="upload.php" method="post" enctype="multipart/form-data" name="uploadImage" id="uploadImage">
<p>
<label for="image">
Tanım:
</label>
<input type="text" name="title" id="title" />
<label for="image">
Upload image:
</label>
<input type="file" name="image" id="image" />
</p>
<p>
<input type="submit" name="upload" id="upload" value="Upload" />
</p>
</form>
<?php
if($upload == true)
{
echo "<a hrf(because spam!)=\"javascript:pick('$name','images/$name')\"><im(g) src=\"images/$name\" border=\"0\" alt=\"use\"></a>";
}
?>
<?php
include ('incs/footer.php');
?>
</code></pre>
<p>`</p>
<p>this upload image to curretnt root's images folder. My current folder is admin:</p>
<p>root/admin/images </p>
<p>root/images </p>
<p>when i use </p>
<pre><code>$uploadHandler = "http://".$_SERVER['HTTP_HOST']. '/images/';
</code></pre>
<p>script doesnot work.</p>
<pre><code><?php
if($upload == true)
{
echo "<a hrf=\"javascriptick('$name','{$uploadHandler}$name')\"><im(g) src=\"{$uploadHandler}$name\" border=\"0\" alt=\"use\"></a>";
}
?>
</code></pre>
<p>the image couldnot add to editor. I guess There is a problem with javascript.
what is wrong in script</p>
http://stackoverflow.com/questions/1789201/video-upload-in-mvc-application0Video upload in MVC application?Ritz2009-11-24T10:29:29Z2009-11-24T11:46:20Z
<p>Hello All,</p>
<p>I want to upload video in my mvc application please tell me how will I do that and what necessary steps I shall follow.</p>
<p>I am a naive user to the mvc applications</p>
<p>Thanks
Ritz</p>
http://stackoverflow.com/questions/1788320/actionscript-file-upload-very-slow0ActionScript File Upload very slowJadaBharata2009-11-24T06:56:36Z2009-11-24T11:20:54Z
<p>Hi,
My requirement is to upload 5000 images to WAMP server from AIR client.
I am using URLRequest to upload the images.
The size of each image is about 285 KB.
Able to only upload about 300 images only. The server becomes unresponsive and the client stops uploading.
This is urgently required.
Please let me know how do I finetune for performance/or go about solving this issue.</p>
<p>Thanks
Jad</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/254831/asp-net-free-ajax-file-upload-control4ASP.Net free Ajax file upload controliulianchira2008-10-31T20:22:55Z2009-11-24T05:02:23Z
<p>I need an ASP.NET control for file uploads that can work in an update panel. Any ideas?</p>
http://stackoverflow.com/questions/1786595/can-you-programmatically-create-a-filereference-in-actionscript0Can you Programmatically Create a FileReference in Actionscript?viatropos2009-11-23T22:45:57Z2009-11-24T03:41:39Z
<p>I know you can create a FileReference, and I'm familiar with uploading Files in Actionscript to Ruby:</p>
<p><pre><code>
var file:FileReference = new FileReference();
file.browse(); //...
</code></pre></p>
<p>But is there a way to programmatically create the information stored in that FileReference object? Specifically, I would like to just be able to give it a URL and have it create the FileReference object from that, instead of having to call <code>browse()</code> and <code>load</code>. Is that possible?</p>
<p>Just so I could send a File object to the server. I don't really need to do that as I could just process the url, but I'm wondering if this is possible.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1787259/upload-file-without-loading-to-ram-in-asp-net-mvc0Upload file without loading to ram in asp.net mvcDucDigital2009-11-24T01:35:30Z2009-11-24T02:06:56Z
<p>Hi, i've notice that this was not asked before so i want to ask this question...</p>
<p>currently im writing an upload controller to upload some quite a large files. but i notice when it upload large file, the CPU and RAM go peak and this is really not what i want to (of course you too)</p>
<p>my controller is look like:</p>
<pre><code>int Count = 0;
string _uploadsFolder = HostingEnvironment.MapPath("~/Upload/Files/Images/");
for (int i = 0; i < Request.Files.Count; i++)
{
HttpPostedFileBase _file = Request.Files[i];
// Validation ......
FileMIME mimetype = new FileMIME();
mimetype.AllowedMimeTypes.Add("image/png");
mimetype.AllowedMimeTypes.Add("image/jpeg");
mimetype.AllowedMimeTypes.Add("image/gif");
if ((_file.ContentLength > 0) && (_file.ContentLength < 4194304) && (mimetype.IsImage(_file)))
{
string guid = Guid.NewGuid().ToString();
string _fileLocation = Path.Combine(_uploadsFolder, Path.GetFileName(_file.FileName));
_file.SaveAs(_fileLocation);
Count++;
}
}
</code></pre>
<p>Is there anyway to make this buffer into HDD instead of ram?</p>
<p>thank you very much...</p>
http://stackoverflow.com/questions/1775760/uploading-image-using-flex-and-django0Uploading image using flex and djangojhonston2009-11-21T15:23:49Z2009-11-23T22:36:49Z
<p>Hi,
Anyone knows how to combine flex and django on upload images?
I used fileRefenrece in Flex but I don't know how to relat it with a View in Django.</p>
<p>Thanks!</p>
<p>[EDIT]
I'm using flex and django to make a site where people have an login e some data, like an mini an intern orkut. In the server-side i build my views, models etc, in the client-side, my design in flex and functions and events etc, calling the django using HTTPService with a specific url and view.
So I click on a button, for exemple, call an HttpService myHttpService.send(), give the necessary parameters to my view and get an returned xml_response from the server and show it in the screen.
But I want to allow logged people to change their onw profile photos(today in a folder on the server, and they have to send me a photo by email and a change manually when they want to change =/ ).
I,ve tried to use FileReference and call a django view/url, but i don't know how to do that. I don't find nothing about that on internet, so if anybody knows how to make photos/files upload using django and flex, no matters how, will helps a lot!</p>
<p>Thanks and sorry for my bad english.</p>
<p>Exemple to logout(the id's and names are in portuguese):</p>
<p>my view (main.py):</p>
<pre><code>@xml_view
def login(request, xml_resposta, xml_erros):
params = request.POST or request.GET
nome_usuario = params.get('usuario')
senha = params.get('senha')
sessao = Sessao.cria_autenticado(nome_usuario, senha)
xml_resposta.addChild(xml.sessao_id(sessao.get_id()))
return xml_resposta
</code></pre>
<p>url.py:</p>
<pre><code>url(r'^logout/$', 'main.logout'),
</code></pre>
<p>my httpservice on flex:</p>
<pre><code><mx:HTTPService id="logoutRequest" url="/logout/" resultFormat="e4x" method="POST">
<mx:request xmlns="">
<sessao{parentApplication.getIdSessao()}/sessao>
</mx:request>
</mx:HTTPService>
</code></pre>
<p>When I click on the Logout button I call logoutRequest.send()</p>
http://stackoverflow.com/questions/1785858/facebook-api-php-photos-upload-not-working0Facebook API + php, photos.upload() not working?metrobalderas2009-11-23T20:51:11Z2009-11-23T21:06:12Z
<p>I've set up a Facebook application, I've requested the extended permissions and now I'm trying to upload a photo but it doesn't work!</p>
<p>I've tried everything, from</p>
<pre><code>$facebook->api_client->photos_upload('photo/789165784.jpg');
</code></pre>
<p>To</p>
<pre><code>$facebook->api_client->photos_upload('photo/789165784.jpg', NULL, 'My photo', 100000287894654);
</code></pre>
<p>I'm beginning to suspect that I need to set up some extensions for php. I'm using WAMP and since the server is currently offline, I can't test it on production until tomorrow (I think..).</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1784930/ftp-vs-http-upload-on-iphone1FTP vs HTTP upload on iPhoneiamj4de2009-11-23T18:08:06Z2009-11-23T18:47:25Z
<p>In my iPhone application I need to upload images to a server. I don't worry much about security and stuffs, just need a fast and reliable method. I can embed my image data on the HTTP post request, or I can create a FTP connection to the server (using the SimpleFTPSample from Apple). The disadvantage of each method is:
- HTTP: time out if image too big without way of resuming, and no way to know the upload progress (%)?
- FTP: sometimes I got NSStreamEventErrorOccurred and don't know why (when tested on device, on simulator it works great. So maybe 3G errors?)</p>
<p>My question is, do you have any experience with this problem (upload image to server)? What method do you recommend? FTP, HTTP or other method? Thanks in advance.</p>
http://stackoverflow.com/questions/1755896/php-upload-pics-with-space0PHP upload pics with spacefrancesco2009-11-18T13:17:05Z2009-11-23T07:57:40Z
<p>Hello, please I need hep with the following.</p>
<p>I have an upload pictures form. I need to make sure that pics which contain spaces in name are replaced wiht something else, I guess is %.</p>
<p>ie pics name is: aa 22.jpg</p>
<p>If uploaded this way it does not show it because of the space between aa and 22. What it the way to get rid of the space or replace it with % when uploaded?</p>
<p>Many many thanks. Francesco</p>
http://stackoverflow.com/questions/1555806/flash-php-file-upload-speed-issues2Flash/PHP File Upload Speed IssuesJeremy White2009-10-12T17:15:56Z2009-11-23T05:43:29Z
<p>I am trying to write a simple, in-house file delivery application for uploading files for easy download on our client's end. I am using Flash with a very basic PHP script receiving the file. So far, this does work.</p>
<p>The problem statement is: using FTP, a 100 MB file will upload in 2-3 minutes. Using my simple Flash uploader and uploading to the same destination, it takes 3-5x longer. Is there any way I can adjust my PHP/Apache settings to improve upload time?</p>
<p>FLA: <a href="http://shorttext.com/ku018nj56s" rel="nofollow">http://shorttext.com/ku018nj56s</a></p>
<p>PHP: <a href="http://shorttext.com/5thixgjtr" rel="nofollow">http://shorttext.com/5thixgjtr</a></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/1105720/sharepoint-file-upload1sharepoint file uploadandre2009-07-09T18:31:08Z2009-11-22T10:00:02Z
<p>I can upload a 250MB file to sharepoint 2007 but nothing larger. I have changed the two webconfig file, set the admin site to 2047MB and it still fails.</p>
<p>Please help this was to be completed asap.</p>
<p>thanx</p>
http://stackoverflow.com/questions/1778105/read-byte-send-by-user-upload-asp-net-mvc0Read byte send by user upload asp.net mvcDucDigital2009-11-22T07:29:08Z2009-11-22T07:29:08Z
<p>Currently im trying to write a upload page on asp.net mvc...
basically my concept is to ready the request send by user and in the same time, upload it to the new server using sftp...</p>
<p>is there any way to read the user upload data at the same time user uploading it to the server in asp.net mvc? </p>
<p>Thank you very much</p>
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/1692857/limiting-the-number-of-selectable-files-in-a-flash-file-upload-dialog1Limiting the number of selectable files in a Flash file upload dialogAlex2009-11-07T12:21:46Z2009-11-20T19:54:06Z
<p>Is this possible through flash? </p>
<p>I have to create a flash uploader where you can define the maximum number of files that can be selected.</p>
http://stackoverflow.com/questions/1769431/iphone-file-upload-control0iPhone + file upload controlpratik2009-11-20T09:46:33Z2009-11-20T12:58:10Z
<p>Hello,</p>
<p>I have an application which uploads file from iPhone to web server.</p>
<p>Problem is that I want to give users a control like from which they can select the file / photo from the device and which is than uploaded on server.</p>
<p>Can anyone help me</p>
http://stackoverflow.com/questions/1766392/phpuploadprogress-wamp-refresh-information0php_uploadprogress wamp refresh informationmxg2009-11-19T20:45:56Z2009-11-20T12:20:19Z
<p>Hi!</p>
<p>Did anyone used php_uploadprogress extension for wamp? </p>
<p>When i try to use it with jquery, only the fist is relevant, and all other request show an not-updated information.</p>
<p>The configuration is the fallowing:</p>
<pre><code> uploadprogress.file.filename__template=C:\wamp\tmp\upload_progress_%s.txt
uploadprogress.get_contents=0
uploadprogress.update_interval=500
</code></pre>
<p>Pleasa tell me where can be the problem.</p>
http://stackoverflow.com/questions/1625684/upload-file-without-browse0Upload file without "Browse"Ranch2009-10-26T16:13:19Z2009-11-19T18:03:52Z
<p>I'm planning to write a web application (.net probably) that will need to analyze images found on users local machine.</p>
<p>The trivial solution would be letting the user browse and select the file to be uploaded.</p>
<p>I want to automate this process as possible and since I should know the exact location of the image file on the local disk (I'm also writing the client side),
I would like to add a simple button that when clicked (web side), it will retrieve the file to the server (upload).</p>
<p>I know this is a major security issue, and this option is always deleted, but I thought there might be a possibility to have such an option with a signed Java applet or Flash.</p>
<p>Any idea ? (Java is preferable).
I don't mind letting the user install something, since the users will need to install the client side as well.</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>
http://stackoverflow.com/questions/1680887/how-to-add-upload-utility-to-wmd-editor1How to add upload utility to wmd editor?Mask2009-11-05T14:24:32Z2009-11-18T22:08:53Z
<p>Has anyone succeeded to do this?</p>
http://stackoverflow.com/questions/1755580/upload-files-using-mobile-broadband-using-standard-browsers-not-from-phone4Upload files using mobile broadband using standard browsers (not from phone)Kenneth2009-11-18T12:14:15Z2009-11-18T21:57:11Z
<p>My issue is trying to upload photos while using mobile broadband. (PHP)</p>
<p>The situation is -</p>
<p>1) I'm using a laptop that is connected to the internet using mobile broadband (t-mobile)</p>
<p>2) I know that my web site works as I've used the php script for well over a year without issues</p>
<p>Other points which may help with an answer</p>
<p>1) uploading photos to facebook will fail when using their java uploading tool (it can work when using their simple uploader)</p>
<p>2) uploading files to attach to my webmail (godaddy) will 99% of the time FAIL or just take forever unless I use the mobile version when it may work 50% of the time.</p>
<p>3) uploading files to attach to my blueyonder/virgin webmail works fines. This is normally very quick. As a test (repeated this several times to verify) I've tried to upload files using both type of webmail and the blueyonder webmail can upload a 5 Mb file in a few minutes while the godaddy webmail will fail or take 30mins - 1 hour. I've done these one after the other, simultaneously, using same file, using different files. each time same result.</p>
<p>4) it doesn't matter what browser I use - FF, IE, Chrome.</p>
<p>5) I know t-mobile do something to the data coming in as any image is more pixilated and comes with a tooltip ("press Shift-r to improve picture quality")</p>
<p>6) speaking to t-mobile, they deny doing anything and blame the web sites for not working!</p>
<p>So, basically is there any info out there for creating an uploader that can get around mobile broadband issues. I know its possible as my blueyonder webmail can do it, but how?
Bonus question - what exactly are the mobile phone company doing to the data that makes mobile broadband different to getting broadband through your phone line or using Cable.</p>