When executing this query, the server IIS stops, 503 service unavailable

0
$.ajax({
      method: 'post',
      url: '<?=$base?>/ingresar_altura',
      data: $('#altura').serialize(),
      success: function(data) {
        if(data=='OK')
        {
          $('#modal-title').html('<i class="fa fa-check"></i> ¡Completado!');
          $('#modal-content').html('La altura ah sido ingresada a la base de datos correctamente.');
          $('.modal').modal();
        }
        if(data=='FAIL')
        {
          $('#modal-title').html('<i class="fa fa-alert"></i> ERROR!');
          $('#modal-content').html('Ya existe una altura ingresada para el horario y puerto especificado.');
          $('.modal').modal();
        }


        $('.puertos').change();
      }
    });

Event Viewer: w3wp.exe time stamp: 0x57899b8a webgate.dll time stamp: 0x57774a0c exception code: 0xc0000005

ajax
post
iis
http-post
server-error

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0