I need to load 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 folder creation has to be manual one by one. To get aro...
Well, I have the following question: can I create a directory with mkdir and in the same PHP code insert files coming from uploads in this created directory?
For example I have a form where I get uploaded files, and I would like to create a f...
I've seen some topics that look like this, I followed the recommendations and I did not succeed, so I open a new topic.
This error occurs when I upload an image and at the time of displaying it this message appears.
PS: I already checked the pag...
I'm doing an image upload with ajax (I already tested it without ajax and it worked).
JS:
$("#upload").on("submit", function(e) {
e.preventDefault();
$.ajax({
url: $("#controller").val(),
type: "POST",
data: $(this...
When a person selects an image they will send the selected one, but if not select choose a pattern. How can I do this?
I was making a code to upload more how can I add this functionality?
$up = new Upload("file");
if(!is_dir($path)):...
Well I'm having problems with this plugin I would like to know if someone has already messed with it and if it could help in the question
I'm having problems communicating with the controller I'm taking the following error 405 Method Not Allo...
I'm using the laravel repository in my project. I created a Service to add some rules. In the upload method it is a reusable method to both save and refresh image.
The save method works perfectly with the upload method.
The update method does th...
Hello,
I would like to upload a file .txt that meets the layout as follows (follow the example of two lines of the file):
9787546;488464;2016-12-11;Carlos Fonseca;carlos.fonseca
9787547;464664;2016-12-11;Rogério Barros;rogerio.barros...
I have the following code for image upload however it only works if js is on the same page of the form and does not work coming from the external file js, I would like to use external because I use other functions, could someone explain me why d...
I get the result of an image through this function this.canvas.toDataURL('png') , this function generates the image normally, the points are:
How to upload this to the PHP server using jQuery?
Is the correct way to upload? Will not y...