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
votes1
answer24
viewsUpload video files with Angularjs
I have a page where I upload the image files, pdf, xml, etc. On this page, I now need to upload video files too, I searched on some sites but I did not find examples of how to do, when I try to…
-
0
votes0
answers468
viewsHow to save folder path to database?
Greeting to all, I created an application that is saving the records in the database, as shown in the figure; This application is succeeding in saving the title, date and description, and is…
-
0
votes1
answer66
viewsUpload app to Apple Store
I’m trying to upload an app to the apple store using Xcode 8, but I get the message that it’s no longer possible to upload to the apple store using Xcode 8. From what I searched, it’s possible to…
-
0
votes1
answer560
viewsError uploading apk to google play console
I’m uploading my app to google play and I’m not getting my apk up, anyone knows what the mistake is?…
-
0
votes0
answers664
viewsHow to save a Base64 to a mysql database?
I am creating an application using Angularjs and using webservlets with mysql database connection. To generate the binary, I use the following code: $scope.adicionarArquivo = function (element) {…
-
0
votes0
answers118
viewsJquery - Loop a function
Good evening everyone. I am learning a little Jquery and wanted a help. I have the following code: $(document).ready(function(){ $('#btnEnviar').click(function(){ var caminho = ("/uploads/");…
-
0
votes0
answers26
viewsPreview PDF javascript
I have a system that uploads files and image, with the js Filereader I was able to render the image according to the input file change event. My question is this: It is possible to preview text…
-
0
votes0
answers38
viewsProblems with uploading video to ftp
I have the following class: public class CameraReceiver extends BroadcastReceiver { private Cursor cursor; private MetodosUtils metodosUtils = new MetodosUtils(); private Context context; @Override…
-
0
votes1
answer53
viewsUpload Images with PHP + Mysql
I am working on a project that requires the employee’s registration with his image on the form. So far so good, is performing normally the insert, both the data and the image. But when I try update,…
-
0
votes1
answer9
viewsproblem uploading production image with php
I have a problem when creating an avatar for the user, in development environment everything goes right but in production it triggers the following error message: Error: file_exists(): open_basedir…
-
0
votes0
answers37
viewsHow to upload as attachments in email
I am trying to make a form that sends an email with the form inputs and files that the user uploads. The part of sending inputs is already ready, I’m using the Magic Form (Martin M.) in the…
-
0
votes1
answer48
viewsImage is being uploaded without extension
I put a PHP code to upload images, the images are not being saved in the directory with the code below: $post_id = $db->insert($query); $ext = explode('.', $_FILES['img']['name']); $path =…
-
0
votes1
answer182
viewsUpload. mp3 file to PHP server in Objective-C
How do I upload a file. mp3 on my iphone to my server using an upload page I managed to do with images but I’m not able to do with files . mp3 could someone help me? Follow the below the code I use:…
-
0
votes1
answer3779
viewsUpload Angularjs Files
I have a button where I select a file, I would like to upload that file to my server(Java + Vraptor). I can already get the file and also save the name of the file in the database along with the…
-
0
votes1
answer913
viewsImage upload does not work on the server even with full path
Even by placing the full path and folder having 777 permission the image does not go to its destination. safe_mode is marked off and image uploading is enabled in php.ini. It is worth adding that it…
-
0
votes1
answer6172
views"No such file or directory " error but the file is saved in the database
I have the following problem: when I submit a form containing photographs the error described in the title appears. If you only upload a photo, it will no longer appear. But even if you make a…
-
0
votes1
answer1626
viewsArray to string Conversion, Orange Validation
I have the following code: HTML: <form method="POST" enctype="multipart/form-data" action="/admin/dashboard/category/{{$action}}"> ... <fieldset class="form-group"> <label…
-
0
votes1
answer287
viewsWatermark image upload in codeigniter
Hello! I’m trying to insert watermark when registering the image, but the image is upada, only it does not insert the watermark and does not return errors, someone has some suggestion? Follows code…
-
0
votes0
answers95
viewsIs it possible to save an image with the Imagine PHP library without compressing its size?
I am using the Imagine PHP library to upload and process images and when I will upload images of the type . GIF he does this normally keeping the dimensions of the original image but he does the…
-
0
votes0
answers577
viewsUpload PHP file that passes data to MYSQL
It will be difficult to explain what I want but I will try to summarize in 2 small paragraphs. Come on I have a script that passes the file data .CSV and .TXT to the database MYSQL, but it only…
-
0
votes1
answer97
viewsJquery does not display image prewier
good evening, I’m trying to make an image prewier in a file field with multiple uploads. html <!doctype html> <html> <head> <meta charset="utf-8"> <title>Upload…
-
0
votes2
answers102
viewsError trying to submit form with AJAX file
I have the following code I implemented for testing before putting in my project: index php. <form method="post" id="formulario" enctype="multipart/form-data"> <input name="nome"…
-
0
votes1
answer806
viewsPermission issues in the directory of the user. How to reset permissions?
I have a problem in my briefcase /media/tmp/ and /media/catalog/product/ of the Gento. When trying to upload the images of the products in the creation of the product, the image is sent to the…
-
0
votes1
answer1378
viewsError uploading Images with Laravel
I’m trying to use Jasny’s Bootstrap file upload(http://www.jasny.net/bootstrap/javascript/#fileinput) to upload photos and save the photo name in the BD with Laravel 5.1 but not working. Apparently…
-
0
votes2
answers81
viewsUpload with java script
I have the following image upload code but it only works if the js is on the same form page and does not work coming from external file js, I would like to use external because I use other…
-
0
votes1
answer139
viewsSave combobox value when uploading files?
Good afternoon. I started this week in a PHP development company. I need to include a combobox on a page that uploads files. The upload already works and is being used. ** I would like help to…
-
0
votes1
answer243
viewsException when uploading Multipart from the Angularjs controller to the Spring Boot server
I’m having trouble sending files (images, pdfs) from the client side to the server side of my app. Whenever I try to send a file, Spring returns this exception: status:"Bad Request"…
-
0
votes1
answer127
viewsSend EXCEL form file without refresh
Hello, I would like to send an excel file to a php page, where I would read the data and then send it to the database. I managed to do this by refreshing the page, but I wanted when the file was…
-
0
votes1
answer795
viewsUpload PHP does not work
Good afternoon, I’m trying to make the file upload function via PHP using the code below: if(isset($_FILES['arquivo'])) { $diretorio = "D:/wamp64/www/revi/arquivos/postagens/".$postagem;…
-
0
votes2
answers135
viewsHow to upload an image that can be updated but still has the same name?
Hello. As the title of the question already says, I would like to know how to upload a file in png, jpg or jpeg in which your name is always maintained as profilepic. in the directory…
-
0
votes1
answer271
viewsImage upload and update
I have a javaEE application where one of the requirements is to upload an image used for the user profile. Everything you’re accomplishing so far: 1. Selects the image to be edited (Cut, Rotate,…
-
0
votes1
answer250
viewsUpload . txt to Mysql database
Hello, I would like to upload a file .txt which meets the layout as follows (following example of two lines of the file): 9787546;488464;2016-12-11;Carlos Fonseca;carlos.fonseca…
-
0
votes0
answers137
viewsI’m trying to send an image along with the notification via php!
I’m trying to send an image along with the notification via php, the notification is sent normally, but the image will not. Can you tell me what’s wrong with that code? <?php if…
-
0
votes1
answer868
viewsPHP - Problems uploading with Google Drive API
Good night. I am trying to upload with the Google Drive API using the following PHP code: <?php require_once 'src/Google/Client.php'; require_once 'src/contrib/Google_DriveService.php';…
-
0
votes2
answers178
viewsHow to add image upload to this php code?
I would like you to help me insert image upload into this php code! <?php $nomeresponsavel = $_POST['nomeresponsavel']; //pega os dados que foi digitado no ID subject. $telefoneresponsavel =…
-
0
votes1
answer96
viewsReturn image upload in index.php
I uploaded an image and by clicking "send" I want you to show me the image on the index.php page. Displaying image in the browser Code: <html> <body> <form method="post"…
-
0
votes1
answer1004
viewsPermissions error when trying to send a PHP file
<html> <body> <form action="" method="post" enctype="multipart/form-data"> Selecione : <input name="arquivo" type="file"> <input type="submit" value="Enviar">…
-
0
votes2
answers61
viewsDifficulty sending Image to Database
I’m having trouble sending an image to my database. Only file name is going but File is not being Uploaded to BD. Follow the Upload script: if(isset($_POST['acao']) && $_POST['acao'] ==…
-
0
votes1
answer61
viewsChanging the identification data of an upload file
I am first trying to rename a file according to what the user provides us, however error occurs, but it is given as $_FILES["arquivo_foto"]["error"] -> 0 Sending script <?php $diretorioimagens…
-
0
votes1
answer738
viewsHow to update to a collection in the Standard/Eloquent
I am using the Laravel Repository in my project. I created a Service to add some rules. In the upload method it is a reusable method for both saving and updating images. The save method works…
-
0
votes0
answers48
viewsPHP put a carinha.jpeg symbol inside a <select> and record the selected.jpeg face in the mysql database field and display in the client
I have a table that generates 5 columns, I wanted to put inside a TD a select and inside the Select put 5 default images ( type emojis of Whats but in jpeg ) indicating the presence / status of the…
-
0
votes1
answer262
viewsError While Uploading with Bootstrap fileinput
Well I’m having problems with this plugin would like to know if anyone has messed with it and if it could help in the question I am having problems communicating with the controller I am taking the…
-
0
votes0
answers62
viewsHow to create an upload system that creates and modifies html
Guys I’m trying to create an online library, I found an open-source solution that puts the pdf in the folder and changes the address in index.html. When you do this it will create a pdf viewer. Is…
-
0
votes1
answer762
viewsHow to Save the File Path to the Bank
I am having a doubt I would like to know with saving the path of images and files that I currently upload I save this files in a folder but I would also like to have the path in the database how can…
-
0
votes3
answers1010
viewsUpload with ajax and java
I am doing an image upload with ajax (already tested without ajax and it worked). JS: $("#upload").on("submit", function(e) { e.preventDefault(); $.ajax({ url: $("#controller").val(), type: "POST",…
-
0
votes2
answers251
viewsUpload multiple images by saving only one file
My code is saving only an X image that I select in the input file, for example, if I select 3 or 10, only 1 image will be saved, I’ve tried everything and I can’t get it to save all the images in…
-
0
votes3
answers268
viewsPHP How do I make an image to be the default icon if I don’t have an image selected?
When a person selects an image they will send the selected one, but if they do not select a pattern. How can I do this? I was making a code for the upload more as I can add this functionality? $up =…
-
0
votes1
answer41
viewsUpload php problem
Can anyone tell me why the file is not being received in the destination folder? private $id; private $entrada; private $saida; private $status; public function __construct($bd) { $this->bd =…
-
0
votes1
answer1582
viewsHow to create directory and upload file
Well I am with the following doubt, it is possible to create a directory with mkdir and in the same PHP code insert uploads files in this created directory? For example I have a form where I receive…
-
0
votes0
answers77
viewsUpload file with ajax ie8
I have a Multipart-fordata form where I need to send the file for processing in C#. The code below works on IE11 and Chrome. var formData= new FormData(); var planilha =…