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

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.

Use if you having trouble to upload data of files with fixed file sizes. But for continuous transmission use tags with stream like or the library specific tags like , , etc.

Important Hint

In web development, there is a common mistake beginners often make during coding forms for uploading files. This mistake is not supplying the enctype attribute in the form tag, or supplying it in a form's element instead of supplying it in the form tag itself. To ensure that the form is going to submit files the form tag should be something like the following:

<form method="post" action="some/server/side" enctype="multipart/form-data">
... The form's elements...
</form> 
14140 questions
3
votes
6 answers

Upload Image from gallery to server in android

I am creating an android app. I need to implement a code for uploading profile pic either from gallery or from by capturing from camera.An alert will be shown on clicking the part where picture to be uploaded. It consists of three options One to…
user1810
  • 121
  • 1
  • 2
  • 10
3
votes
2 answers

FTP site works but I'm unable to connect from Java program. I get java.net.UnknownHostException

Greetings folks. I have this weird problem. In the project I'm working on now, I need to upload a file to a FTP site. I have written many programs that do this before and they have worked just fine. But this particular site is giving me trouble.…
Karthic Raghupathi
  • 2,011
  • 5
  • 41
  • 57
3
votes
2 answers

why my file is not modified when i re-upload it with IE?

I have a problem when upload a file for the second time with some modifications on internet explorer with javascript, modifications aren't applied, but it works on Firefox. how can i resolve this problem please ? i tried this META to deactivate…
Rayane
  • 43
  • 6
3
votes
1 answer

Upload progress bar Java Servlet?

I want to show upload progress bar for my uploads using servlet. I tried Ajax, iFrame technique. The page is not reloading and the file also getting uplaoded. But, progress bar is not coming. Is there any jQuery progress plugin available for java…
user405398
3
votes
3 answers

dot net nuke uploading files

I"m working on a dot net nuke site for a client, they are wanting to upload files of about 60mbs. I have changed the web.config file to allow files up to 65 mbs in size just for wiggle room. httpRuntime useFullyQualifiedRedirectUrl="true"…
n_starnes
  • 376
  • 1
  • 6
  • 20
3
votes
0 answers

Brief code example to upload image from iPhone to ImageShack account

I'm trying to upload a jpg image from my iPhone to my ImageShack.com account. Everyone says to use the MASSIVE THOUSANDS of lines of code in the 3rd party ASI code. Is there a simple example, just of the upload code? (I'll take either sync or…
Sally
  • 95
  • 2
  • 4
3
votes
0 answers

Trying to upload .mp4 video file with Alamofire , but uploads .mov (Swift)

I am trying to upload an .mp4 file I record from the iPhone but it sents a .mov to the API instead.I am checking the video URL path before the call and I can confirm the write to file works as expected. How can I change that ? public func…
PoolHallJunkie
  • 1,345
  • 14
  • 33
3
votes
2 answers

Best way to upload file using node js

what is the best way of handling file uploads using node js? I want my user to upload a profile image, the uploader should have this functionality: -validated that the image should be at min 200 * 200 -file must be only png, jpg, jpeg or gif -and…
Joseph
  • 1,676
  • 2
  • 10
  • 20
3
votes
1 answer

Mysql database import extremely slow

I know this question has already been asked, but no answers seem to be helpful. I have a database containing 40,000,000 entries that I need to upload to wamp. I used the mysql command line and typed the following commands... use…
John C
  • 43
  • 1
  • 6
3
votes
1 answer

Upload field with custom form requiring a custom implementation of Field()

I have some custom routes in my system: --- Name: mysiteroutes --- Director: rules: 'create//$Action': 'CreateController' Which has a custom controller to create a form: class CreateController extends Page_Controller{ private static…
Rudiger
  • 6,749
  • 13
  • 51
  • 102
3
votes
2 answers

Google developer screenshot (graphic assets) error image not valid

Trying to upload any graphics such as screenshot, icon, Feature graphic and I keep having the same error from from Google while my picture have the right spec. message is "Upload Error" "You need to check that your screenshot image is valid valid"…
Minia
  • 31
  • 4
3
votes
2 answers

Video Upload issue in android

I am trying to upload an mp4 file from sd card to remote server. The upload is getting sucessfully, but while i am trying to play that file by url using VideoView it is showing "can't play this video ". This issue is happening for only videos which…
Ramees
  • 68
  • 4
  • 16
3
votes
1 answer

Avoiding further processing on busyboy file upload size limit

I'm trying to set an upload limit in busboy. Without upload limit i'm able to upload the file successfully. But when i want to redirect if the upload file size exceeds requirement, i realize that the code is asynchronous and the writing of the file…
Vibhu Tewary
  • 282
  • 2
  • 11
3
votes
3 answers

Android:How to send data from server to android with no request from the android?

How can I send data from a server to an Android device without the device polling for data?
3
votes
0 answers

Uploading file using Javascript and execute_script in Python Selenium

I am trying to use Selenium to automatically add a file on this twitter link . I have found that I can do this by doing: # filePath is a proper path to an image uploadPhoto = driver.find_elements_by_name('media_empty')[1] …
Stuart C
  • 165
  • 3
  • 9
1 2 3
99
100