I have a ajax request where the method used is POST, the information I pass is with a formData object, it has some photos that can vary from 1 to 15, when I execute this on localhost it does not last 1 second , now that I uploaded the site to the hosting server it takes 120 and stops running, my question is, what could be causing this since the local server runs almost instantly?
$.ajax({
url: '../controller/inserir_prova_banco.php',
method: 'POST',
data: formData,
processData: false,
contentType: false,
success: function(data){}
});