Questions tagged [upload]
Upload refers to the sending of data from a local system to a remote system such as a server or another client with the intent that the remote system should store a copy of the data being transferred, or the initiation of such a process
13,776
questions
881votes
15answers
609kviews
How do I measure request and response times at once using cURL?
I have a web service that receives data in JSON format, processes the data, and then returns the result to the requester.
I want to measure the request, response, and total time using cURL.
My ...
728votes
10answers
389kviews
How to upload a file in Django? [closed]
As a newbie to Django, I am having difficulty making an upload app in Django 1.3. I could not find any up-to-date example/snippets. May someone post a minimal but complete (Model, View, Template) ...
349votes
9answers
87kviews
Invalid Bundle Error - "requires launch storyboard"
I keep getting this error when I try to submit my app to the store using Xcode:
ERROR ITMS-90475: "Invalid Bundle. iPad Multitasking support requires launch storyboard in bundle 'com.companyname....
314votes
21answers
437kviews
Upload files with HTTPWebrequest (multipart/form-data)
Is there any class, library or some piece of code which will help me to upload files with HTTPWebrequest?
Edit 2:
I do not want to upload to a WebDAV folder or something like that. I want to ...
262votes
25answers
672kviews
How to upload a project to GitHub
After checking How can I upload my project's Git repository to GitHub?, I still have no idea how to get a project uploaded to my GitHub repository.
I'm new to GitHub and I have no idea what to do. I ...
192votes
10answers
188kviews
HTML5 Pre-resize images before uploading
Here's a noodle scratcher.
Bearing in mind we have HTML5 local storage and xhr v2 and what not. I was wondering if anyone could find a working example or even just give me a yes or no for this ...
183votes
5answers
457kviews
jQuery AJAX file upload PHP
I want to implement a simple file upload in my intranet-page, with the smallest setup possible.
This is my HTML part:
<input id="sortpicture" type="file" name="sortpic" />
<button id="...
176votes
10answers
266kviews
C# HttpClient 4.5 multipart/form-data upload
Does anyone know how to use the HttpClient in .Net 4.5 with multipart/form-data upload?
I couldn't find any examples on the internet.
176votes
6answers
337kviews
How to instantiate a File object in JavaScript?
There's a File object in JavaScript. I want to instantiate one for testing purposes.
I have tried new File(), but I get an "Illegal constructor" error.
Is it possible to create a File object ?
...
174votes
5answers
404kviews
Is there a Public FTP server to test upload and download? [closed]
What I want to do is measure broadband speed using c#.
To do this, I use NetworkInterface.BytesReceived and BytesSent to get the current amount of bytes sent and received from my network adapter and ...
169votes
9answers
360kviews
How can I select and upload multiple files with HTML and PHP, using HTTP POST?
I have experience doing this with single file uploads using <input type="file">. However, I am having trouble doing uploading more than one at a time.
For example, I'd like to select ...
161votes
14answers
537kviews
move_uploaded_file gives "failed to open stream: Permission denied" error
I keep getting this error when trying to configure the upload directory with Apache 2.2 and PHP 5.3 on CentOS.
In php.ini:
upload_tmp_dir = /var/www/html/mysite/tmp_file_upload/
In httpd.conf:
...
156votes
51answers
589kviews
This application has no explicit mapping for /error
I used maven to do the tutorial https://spring.io/guides/gs/uploading-files/
All the codes I used was copied.
The Application can run, but I get the error:
Whitelabel Error Page This application ...
149votes
10answers
200kviews
HTML: How to limit file upload to be only images?
With HTML, how do I limit what kind of filetypes can be uploaded?
To easy the user experience, I want to limit file uploads to be only images (jpeg, gif, png).
<form method="post" action="..." ...
141votes
1answer
271kviews
How to upload, display and save images using node.js and express [closed]
I need to upload an image, and display it, as well as save it so that I don't lose it when I refresh the localhost. This needs to be done using an "Upload" button, which prompts for a file-selection.
...