upload Questions

1

Sometimes I encounter a very strange behavior of the browser's native Select File Dialog. I have a <input type="file" onchange="console.log(event.target.files)" /> e...
Fike asked 9/3, 2022 at 22:43

5

Solved

I am trying to upload a file to two different locations. The lcoations being /2x/ adn /3x/. It uploads the file on 3x but doesn't on 2x and throws this error: The file was not uploaded due to an...
Enchant asked 7/7, 2017 at 7:24

3

Solved

Im trying to use Multer to upload an array of images. At the client side i have a FormData called pictures. pictures array, from react-native-image-picker: const [pictures, setPictures] = useState(...
Chunk asked 13/5, 2021 at 17:38

5

I'm trying to upload images to aws-s3 via a signed-url from NodeJS server (not from a browser). The image to upload has been generated by NodeJS. I'm getting the signed-url from aws and succeeding ...
Picayune asked 4/10, 2019 at 10:17

6

I have 4 file inputs that I want them trigger upload proccess when their value is changed. I mean when you select a picture and click open on select image dialog, the script to upload the picture b...
Envoy asked 27/11, 2013 at 13:53

7

Solved

I'm writing code in Laravel 5 to periodically backup a MySQL database. My code thus far looks like this: $filename = 'database_backup_'.date('G_a_m_d_y').'.sql'; $destination = storage_path() . ...
Infold asked 9/4, 2015 at 0:22

2

I'd like to connect to WebDAV using PHP, and be able to upload files, etc. However, I cannot figure out how to connect to it. I imagine it would ultimately be as simple as opening a socket and send...
Autecology asked 16/11, 2010 at 0:6

2

Solved

To handle file uploads on a website we have to use a hidden <input type="file" /> element. To find out what file has been selected in the Select File Dialog, we can use the onchange...
Deleterious asked 11/3, 2022 at 8:18

6

I'm trying to send an image to a website using Java HTTP POST requests. I'm using the base code used here Upload files from Java client to a HTTP server: This is my modification: String urlToCon...
Lapin asked 18/6, 2013 at 15:52

9

Solved

I'm trying to add a MP4 video to my media library. It doesn't give any error but when I try to play the video it gives this message inside the video player: Media error: Format(s) not supported or...
Lessee asked 8/3, 2018 at 12:49

9

I can't find correct MIME type for TrueType fonts. I need it because I'm using File Uploading Class (CodeIgniter) to upload files, and I want to allow only TTF to be uploaded. Tried this: 'ttf' =&...
Opulent asked 26/2, 2011 at 16:18

3

For send ajax form i use this code : <input type="file" class="file_1" id="file" /> note : not use "FORM" tag My jQuery code : var file = $('#file').val(); $.post('form.php', {file:fil...
Reside asked 16/11, 2013 at 11:39

21

var fd = new FormData(); fd.append("fileToUpload", document.getElementById('fileToUpload').files[0]); var xhr = new XMLHttpRequest(); xhr.open("POST", "uph.php"); xhr.send(fd); uph.php: var_dump...
Gleiwitz asked 20/10, 2012 at 14:32

2

Solved

I'm building an API in PHP. One of the methods is place.new (PUT request). It expects several string fields, and it also expects an image. However I can't get it working. With a POST request ...
Mellins asked 21/5, 2011 at 10:30

4

Solved

I need to do curl uploading behind company proxy. and I've getting the following two type of problems depending on the site that I try, curl: (35) error:1408F10B:SSL routines:ssl3_get_record:wrong...
Enculturation asked 30/7, 2020 at 20:20

10

Solved

I want to add an upload function to my spring boot application; this is my upload Rest Controller package org.sid.web; import java.io.BufferedOutputStream; import java.io.File; import java.io.F...
Delve asked 12/5, 2017 at 11:9

8

I uploaded a version of my app – this error pop ups and I dont have any changes from the Google Maps portion of my app. On my first upload, there was no problem.
Me asked 13/4, 2015 at 14:45

3

Solved

How can I upload a file, either by using cURL or anything else, in PHP? In other words, the user sees a file upload button on a form, the form gets posted to my PHO script, then my PHP script needs...
Therapeutic asked 4/3, 2013 at 11:36

8

Solved

I Want to upload my apk to google play store.but its Show me error like this. **You uploaded a debuggable APK. For security reasons you need to disable debugging before it can be published in Googl...
Loiretcher asked 28/8, 2015 at 5:32

5

Solved

I am creating a Google App Engine web app to "transform" files of 10K~50M Scenario: User opens http://fixdeck.appspot.com in web browser User clicks on "Browse", select file, submits Servlet loa...
Nichols asked 1/8, 2011 at 12:58

5

Solved

I have an ASP.NET MVC solution built on Entity Framework with Microsoft SQL Server 2008. I need to create a function that lets my users upload files. What I would like is: A solution that uses ...
Federation asked 18/2, 2010 at 11:23

1

I work on a R Studio Server and I want to upload a file to the Server. I know how to do this by clicking on the upload button. https://support.rstudio.com/hc/en-us/articles/200713893-Uploading-an...
Gwen asked 6/3, 2019 at 14:19

6

Solved

I have a form with an upload field that allows users to select multiple files. However, I need to be able to allow the user to select file 1 from folder 1, then go and select file 2 from folder 2, ...
Zillah asked 22/7, 2014 at 13:50

5

Solved

Hello im getting the following error while upload an image using laravel: "Call to a member function getClientOriginalExtension() on null". Here is my controller: $imageName = rand(11111, 99999) ...
Snowfall asked 9/5, 2016 at 20:0

28

Solved

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 created a repository and want to upload my proj...
Bummer asked 9/10, 2012 at 12:9

© 2022 - 2024 — McMap. All rights reserved.