1,296 questions
-2
votes
1
answer
141
views
Bootstrap 5.3.5 Hide input[type='file'] with a button
I try to follow https://getbootstrap.com/docs/5.3/forms/input-group/#custom-file-input to hide the input[type='file'] with a button but it doesn't work.
<div class="input-group mb-3">
...
0
votes
2
answers
171
views
aspnetboilerplate .net core, multipage web application v8.1.0 file upload
I am trying to build a file upload with the aspnetboilerplate .net core, multi page web application, version 8.1.0. I am getting null in the controller action method. Here is my code:
var product = _$...
2
votes
0
answers
1k
views
Split either csv or xlsx file on file upload into mulitple chunked .csv or .xlsx file using javascript to be received by fastapi
Due to backend filesize limit of 5.5MB of the API, I need to chunk large files (only .csv, .xls,.xlsx) when uploaded into chunks of <= 5MB and send each chunk by calling file upload api. Each chunk ...
0
votes
1
answer
112
views
Blueimp jQuery-File-Upload Reset Options Runtime
I'm using https://github.com/blueimp/jQuery-File-Upload but can't work out if I can update the objects options once set.
I instantiate the uploader like this
var uploadOBJ = $('#fileupload')....
0
votes
0
answers
216
views
how to upload multiple images at once using php ajax
Help me please, I made several input type files in a table and wanted to upload them at once using php ajax.
HTML form
<form enctype="multipart/form-data">
<tr>
&...
0
votes
0
answers
116
views
File Upload goes to the Upload.php html page instead of echo
I am trying to create a upload using the PHP and Javascript by using Jquery-File-Upload Plugin.
Here I have a problem after the Upload.
When I check the data in upload.php by doing print_r the $...
11
votes
1
answer
742
views
BlueImp jQuery FileUpload GitHub marked as readonly/archived?
The BlueImp jQuery File Upload GitHub project has been marked "This repository has been archived by the owner. It is now read-only.".
See: https://github.com/blueimp/jQuery-File-Upload
But ...
3
votes
1
answer
6k
views
Object of type Illuminate\\Http\\Request is not callable, Laravel 8 upload file
Console Log Error
UnitController
is there someone who can help me to solve this problem?
0
votes
1
answer
893
views
How to locate the js code and php code of Wordpress website for certain function?
For example, I want to debug the code for uploading an image when composing a post in Wordpress backend. I click the "Add Media" button, right-click on the "Media Library" tab, ...
0
votes
1
answer
336
views
vb.net upload images with title and description get values from jQuery (blueimp / jQuery-File-Upload)
All.
(Downloadable Project code Upload Images with Title and Description (vb.net)
Originated from "blueimp/jQuery-File-Upload")
I am working on this Image Upload project with some text ...
0
votes
1
answer
373
views
Array to String conversion error while trying to do a single file upload in Laraver using AJAX
I'm having form which submits one file and certain texts through AJAX, only problem is with the file upload through AJAX. The form dats is being submitted through FormData instance but getting an ...
0
votes
1
answer
222
views
file-upload-with-preview.min.js showing error when uploading a large file
file-upload-with-preview.min.js showing error when uploading a large file (say a file of 30 mb).it is showing error.
the ajax call is performing on error function...
in my case I am trying to upload ...
1
vote
0
answers
644
views
How to upload Image or any files using PHP MySQL Ajax JQuery and change its File Name by Patient Name?
Can somebody help me on how to upload an Image or any type of files using PHP MySQL Ajax JQuery and change its File Name by Patient Name? I tried to use this following code:
HTML:
<div class="...
1
vote
0
answers
38
views
How to upload more than one file with jQuery and AJAX? [duplicate]
I have specific request that requires input type="file" fields built dynamically. This can vary depending on the number of files that must be uploaded for specific record. So far I was able ...
0
votes
0
answers
410
views
File upload to Jersey from Quarkus
I need to upload a file from Quarkus application to jesrey 2 rest service which is expecting two params like
@FormDataParam("file") InputStream uploadFileInputStream,
@FormDataParam("...
0
votes
0
answers
45
views
$.ajaxFileUpload is firing GET and POST call, is there a way stop the GET call?
This is my code and it is firing a GET call before the POST, I couldn't handle response because of the GET call is getting failed, is there a way to handle this situation ?
$.ajaxFileUpload({
...
1
vote
1
answer
2k
views
POST file list to controller in ajax post
I tried to upload documents but I couldnt pass to list my controllers parameter. My scenario is:
user click to "choose file" button and pick the files and press done
then my some functions ...
0
votes
0
answers
132
views
jquery file upload,1.9MB image file is too big?
$("#pic_upload").fileupload({
dataType: "json"
, minFileSize: 1
, maxFileSize: 10485760 //10 MB
, acceptFileTypes: /(.|\/)(gif|jpe?g|png|bmp)$/i
}).on("...
0
votes
0
answers
710
views
I got .fileupload is not a function error in my laravel 8 app
In my Laravel 8 / jQuery 3.5.1 / bootstrap 4.5.3 app I want to add jQuery-File-Upload library
and adding all files to my project I got error
Uncaught TypeError: $(...).fileupload is not a function
...
0
votes
0
answers
836
views
Problem validating audio file in JavaScript
I want to use Javascript to prevent users from uploading any file except audio files. For example: MP3 only.
This code works on the desktop and some phones but on some older phones it gives an error ...
0
votes
1
answer
239
views
Grails 4, Ubuntu 20, Embedded Tomcat - No Multipart files in request
I have been attempting to solve an issue with a prod environment deployment of a grails 4 application for about a week now. When I run my application locally, via run-app or java -jar warfile.war, I ...
0
votes
0
answers
157
views
Submit form without any file via jQuery-File-Upload and Asp.net MVC Core
Is it possible to submit a form without any file via jQuery-File-Upload below?
https://github.com/blueimp/jQuery-File-Upload/
I need to make file upload optional, and allow users to submit the form
My ...
0
votes
1
answer
590
views
Remove a File before Upload from FileList Ajax Upload
I have tried and It worked Well. But the issue is it is not removing the file from Upload List which is already available in the Array
Here is HTML Code
<script src="https://ajax.googleapis....
0
votes
1
answer
270
views
JQuery-File-Upload BlueImp file upload EXIF orientation rotation
I use BlueImp-jQuery-fileupload with MVC5/C# backend to upload JPGs.
On the client I need a pre resize and on the server I need the JPG with its full original EXIF for further processing.
The problem ...
0
votes
1
answer
188
views
Upload 10 MB file to SQL Database in MVC
I want to upload file up to 10MB into my SQL Database. Until now I can upload small files like 0,5MB, but my point is to upload file no bigger than 10MB.
Can somebody tell me what I'm doing wrong?
My ...