0
I have an ajax request in which the method used is the POST, the information I pass is with a formData object, in it has some photos that can vary from 1 until 15, when I run it in localhost does not last 1 second, now that I’ve uploaded the site to the hosting server it takes 120 and stops running, my question is, what might be causing this since the local server runs almost instantaneously?
$.ajax({
url: '../controller/inserir_prova_banco.php',
method: 'POST',
data: formData,
processData: false,
contentType: false,
success: function(data){}
});
Possible duplicate of php request taking 1 minute when running on the server
– Sam