Questions tagged as 'upload'

1
answer

Sending PDF and JPEG files with Jquery / ajax

I'm trying to implement a pdf or jpeg file upload with jquery ajax and I'm not succeeding, so I'm in need of help if possible. Trying to use jquery in conjunction with PHP, but I can not pass the data    JS $('#form-almoxarifado input[t...
asked by 26.03.2018 / 20:17
1
answer

PHP- Upado file does not go pro directory defined

$arquivocom = $_FILES['submetidocom']['name']; $diretoriocom = "C:/Users/NEWGRID/Documents/uploadcom/"; move_uploaded_file($_FILES['submetidocom']['tmp_name'], $diretoriocom.$arquivocom); if (file_exists($arquivocom)){ echo...
asked by 20.03.2018 / 14:38
0
answers

Upload and display on-screen loop-time with PHP, Jquery, AJAX, javascript

I want to upload an array and at the same time I want to show each file that has been "upado" in a loop, at runtime of the loop, so that the page can not refresh, then load the files on the screen. I'm looking for not only a way to do this, but...
asked by 20.03.2018 / 20:39
1
answer

How 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 myself, and I always end up with the same error. Here's the code: <?php include("connectsql.php"); isset($_GET ['mp3fil...
asked by 23.02.2018 / 03:17
0
answers

Send file links by email to download - Using Caldera Forms (wordpress)

I have a form developed with the Caldera Forms plugin, all site in wordpress. Today the files that are being sent by the form, via upload, are sent as attachments in the emails. You would need the links, just the links, of each file to be upl...
asked by 16.02.2018 / 00:21
0
answers

Android - Error in Uploading image to server C #

When uploading an image in Android to the server (C #) it generates an error converting the image to byte Array, this happens with some images which is very strange because this error is not always generated, or either depending on the image tha...
asked by 31.01.2018 / 12:14
0
answers

FileUpload Jquery with C #

I have the following problem I'm using MVC (C #) and I need to upload a document in general (.doc, .pdf, .png, etc.) I'm using the FileUpload library and with jquery 3.1 In the example standard the component has, it's jquery 1.9 (I do n...
asked by 05.02.2018 / 00:07
0
answers

Save file with date, random number and name

I have the following PHP code in an upload system, which saves the uploaded file with random number and date. In the HTML there are the fields "Branch" and "Name", I would like to know how to make these two infos be saved together with the date...
asked by 16.01.2018 / 19:06
1
answer

Upload amazon s3

I have a question, I made a small php script to upload files into my bucket and I need every file contained in it to be accessed only through a url. How can I do this? via code or configuration in my same bucket? I need this because the syste...
asked by 25.12.2017 / 22:01
0
answers

How 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, function($reader) { })->...
asked by 22.12.2017 / 21:52