Most voted "upload" questions
"Loading" or "Upload" (upload) refers to sending data from a local system to a remote system, such as a server or other client with the intention that the remote system stores a copy of the data being transferred.
Learn more…313 questions
Sort by count of
-
0
votes0
answers301
viewsGet image path and not blob://
So, we developed an app with Cordova, and now I need to upload an image to a third party webservice. I installed the Cordova-plugin-camera and can get an image from the Gallery or Camera, and insert…
-
0
votes1
answer245
viewsHow to delete an image from Storage Folder 5.2?
I’m using this code to upload image this all working my doubt and in the if condition to delete the old image I have to leave a default image.jpg as default plus my condition if this deleting that…
-
0
votes0
answers355
viewsSubmit File with Form Data
I am trying to send files without using the submit of the form. I checked that through the formData It’s possible, but I have a problem. Apparently, the file is forwarded, since with the variable…
-
0
votes0
answers25
viewsError due to upload of PHP files
The data that already exists is displayed, but I can’t register new data. function inserirCliente(){ $retorno=""; $conecta = DBConnect(); if (isset($_POST['enviaCliente'])) { //só para a imagem if…
-
0
votes1
answer65
viewsHow to transform this code to validate multiple files?
The code below is found in PHP documentation, allows you to upload files, only it only allows one file per upload. How to transform this code to validate multiple files? <?php…
-
0
votes0
answers1257
viewsSave File in Physical Path
I am uploading an image I receive via form using C# ASP.NET. My code is working like this: [HttpPost] public ActionResult UploadFile(HttpPostedFileBase file) { try { if (file.ContentLength > 0) {…
-
0
votes0
answers205
viewsHow to use the Chunk method of Laravel Excel?
public function uploadNotaCorte(Request $request, EstadoRepository $estadoRepository) { $error = array(); $path = $request->file('file')->getRealPath(); $notasCorte = Excel::load($path,…
-
0
votes0
answers249
viewsUpload image to BD Mysql using PHP
1. My Phpupload Image Script <?php // SERVIDOR ONDE AS IMAGENS ESTÃO SALVAS $caminhonoservidor='imagens'; // este caminho será gravado na variável imagem $caminhotemporario=…
-
0
votes1
answer2811
viewsUpload an entire folder via FTP using DOS
I need to upload a folder (~300mb) that contains files from a framework (Magento) to the cloud server where my application is. The server GUI only allows you to upload files individually and the…
-
0
votes0
answers398
viewsFileupload Jquery with C#
I have the following problem I am using MVC (C#) and I need to upload documents in general(. doc, . pdf , . png, etc) I am using the Fileupload library and jquery 3.1 In the example pattern that the…
-
0
votes1
answer287
viewsUploading images with added element in the image
Hello I need to upload where, in the image, the client can add a visual element to mark something. I’ll need something via javascript to do the visual interaction before uploading(simplest part).…
-
0
votes1
answer51
viewsHow to upload in php
Well, basically I’m trying to upload an mp3 file to a folder I created from the server, but I’ve done everything, and I always end up with the same mistake. That is the code: <?php…
-
0
votes1
answer61
viewsPHP-File uploaded does not go to the directory defined
$arquivocom = $_FILES['submetidocom']['name']; $diretoriocom = "C:/Users/NEWGRID/Documents/uploadcom/"; move_uploaded_file($_FILES['submetidocom']['tmp_name'], $diretoriocom.$arquivocom); if…
-
0
votes1
answer176
viewsSending PDF and JPEG files with Jquery/ajax
I am trying to implement a pdf or jpeg file upload with jquery ajax and am not succeeding, so I am in need of a help if possible. Trying to use jquery in conjunction with PHP, but cannot pass the…
-
0
votes2
answers745
viewsHow to upload an image using ajax and PHP?
I’m trying to make a upload of images with AJAX and PHP, but I get no success and do not find the error. My code is: $('.arquivo').change(function() { var fileName = $(this)[0].files[0].name; var…
-
0
votes0
answers85
viewsDeserialize an XML and display your data in an input
I need to create an upload button that by reading the xml of my invoice can display the key of the Nfe that is inside the tag , inside an input. I have used several methods and is not drying out.…
-
0
votes2
answers527
viewsUpload Images does not work PHP
I have the following page in PHP: <?php session_start(); ?> <!DOCTYPE html> <html> <head> <title>Cadastro de Operacional</title> <meta charset="utf-8">…
-
0
votes0
answers23
viewsProblem uploading iPhone to a Cordova app
Hello, I am working on a project in which I have to serve an external and responsive website from a Cordova app. Almost everything works as expected, but I’m having problems with uploading images on…
-
0
votes1
answer31
viewsCompares selected input file size with PHP disk_free_space
I need a javascript script to compare the selected file sizes on input with the disk_free_space (in my case disk_free_space('D:')") of PHP, but it has to be before sending to the page that uploads,…
-
0
votes1
answer58
viewsDoes anyone know where the error in this code is?
The error that is generated me is the following: Notice: Only variables should be passed by Ference in Can anyone tell me how to fix it? According to the error, it’s in this part: $extensoes_aceitas…
-
0
votes0
answers47
viewsClientexception
Hello I am taking the error Clientexception and do not know why, I am long trying to tidy up and I keep taking the same error to upload my files (I use Sentry) code below: That’s the first message…
-
0
votes1
answer45
viewsDoubt about image upload
I am using a php upload class, actually it’s all working, I can upload normal and display, but when I enter the respective folder inside the project the files are not there. I have put to view…
-
0
votes1
answer447
viewsUpload file via FTP - PHP
I am trying to upload files to a specific folder of my Hostgator server, however I put the exact path of the folder and the file does not appear in the folder I have set the path, it appears in the…
-
0
votes1
answer112
viewsCreate new directory according to string
I have a function that saves an image in a default directory, for all companies, and I tried to change this to save in a directory according to this string companyFolderwhich I have created. Yet you…
-
0
votes1
answer57
viewsTriple information
I made this code and must move three images to the specified folder. He names the three images, but is only moving the first. I’ve made some modifications to the code, but unfortunately it doesn’t…
-
0
votes1
answer40
viewsProblem uploading two files in PHP
I am uploading two files the first goes up to folder and bank but, the 2nd file does not go up to the bank without extension $conn = mysqli_connect($servidor, $usuario, $senha, $dbname);…
-
0
votes2
answers47
views -
0
votes1
answer1135
viewsSet maximum upload size for PHP
I have in a certain area of the system a form to uplevel images movies and music, this part usually only appears to administrator, but now it will be released to some types of users, I wanted to…
-
0
votes1
answer229
viewsNodejs send server files to server
Good afternoon, my friends, I am trying to send a file from an application of mine (in Node) to a web server made in PHP. But it is returning the message saying that the file parameter (arqCsv) was…
-
0
votes1
answer156
viewsUpload the image into the context of the java jsf project
I have a project in JSF put. One of the parts is to add the image to the product by making the upload of the image. That’s why I’m using the primefaces p:fileUpload, it works, but the image is…
-
0
votes1
answer470
viewsFile Upload Javascript + php
Hello, I need to send some files via post to handle in PHP. However, I want to post via Javascript, passing other parameters in Ubmit and be able to handle in PHP. The way I’m doing, I don’t get any…
-
0
votes1
answer78
views -
0
votes0
answers45
viewsHow to upload Manytoone entity relationship and save to database?
How do I upload (Multipartfile) with Manytoone relationship, in my case I want to upload image in a Call(Entity). Follow the code below: @Entity @DynamicUpdate public class FileInfo { @Id…
-
0
votes1
answer42
views -
0
votes2
answers316
viewsHow to access the React upload Enable in the Laravel API?
I have an app in React on, I have an option that the user can change his avatar, I am using the library ImagePicker and I have the API in Laravel. I’m having trouble accessing the chosen image in…
-
0
votes1
answer119
viewsHow to upload large files to google drive
I’m trying to upload files from 1-4gb to the google drive(v3) , using phyton3.8, but when I always have errors in the execution: Typeerror: 'Preparedrequest' Object is not callable def…
-
0
votes1
answer246
viewsHow to upload a file with PHP?
I have a function to perform file upload, where I depend on a form <form method='post' action='http://localhost/api/uploadAPI.php' enctype='multipart/form-data'><br> <input…
-
0
votes1
answer50
viewsJavascript - how to identify a file after an upload to the server
Hello, I have a script where the user can upload a .pdf. Each time it is done, the file is saved in the /tmp folder with a sequential Generic name , different from the original name. I need a way to…
-
0
votes1
answer121
viewsUpload files to separate folders in the database
Good morning, first excuse my noobisse but I’m still learning kkk I am creating a system (I am using HTML, CSS, Javascript, PHP and Mysql Database), where will have several registered users and each…
-
0
votes0
answers204
viewsUpload files to Sharepoint in a specific folder using Python
I am uploading file from my machine to Sharepoint using python with lib Office-REST-Python-Client, but I can only upload the file to the Sharepoint root and not to a certain folder. Code I’m using…
-
0
votes0
answers11
viewsUpload Files by Magic Form
I’m using the Octobercms framework, and in it I use a plugin called Magic Form (by Martin M.), and the normal form (with text inputs) works perfectly, all inputs are recorded in the database, I’ve…
-
0
votes0
answers20
viewsPHP does not upload image to Azure
Problem: When the user selected the desired image and tries to save it, it cannot move inside the server. I’ve tried so many ways but the same mistake always happens. HTML: <form…
-
-1
votes1
answer1456
viewsUpload php file to another server
Upload heavy files to another server using PHP Send Autocad files, and these files are heavy...I wanted to know if there is a way for the user to enter the site, in the sector to send these files,…
-
-1
votes1
answer74
viewsFile Upload
I am new to php and database and have never uploaded files. I have read and advise only to store the path of a file in the database and not the file itself. I was advised to see in…
-
-1
votes1
answer4358
viewsProblem with uploading files to the server
I’m learning to use a server cloud and I’m having trouble uploading files. I made a code with simple PHP and HTML: <form action="" method="post" enctype="multipart/form-data"> <input…
-
-1
votes1
answer909
viewsIs there an image upload plugin for Summernote?
I want to use Summernote and I need to upload images, but I do not know how to do, there is some plugin for this (free preference or with accessible value)?
-
-1
votes1
answer219
viewsRecord Video and Upload C# MVC
I have to record a 5s video on the webcam, after the recording upload this video to a folder. I have already searched several plugins in JS, I used this "…
-
-1
votes1
answer746
viewsUpload Files to React Native
Good afternoon, everyone, I am starting the programming in React-Native and I have a question about using Forms to upload files. It is possible? Thank you.
-
-1
votes1
answer73
viewsHow to change an image in the database by ID?
Hey, everything cool with you guys? I recently started a form where some information is sent to the database, but when I edit some information it changes everything except the image, before it only…
-
-1
votes1
answer142
viewsAngular 7: How to identify the Encounter of a File?
I have a function that runs when uploading files, I would like to identify the type of this Encounter. I am using the code below. async uploadFile(event) { var document; var reader = new…