Server IP : 184.154.167.98 / Your IP : 18.119.110.76 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/mesa/scp/js/ |
Upload File : |
jQuery(function($) { $("#overlay").css({ opacity : 0.3, top : 0, left : 0, width : $(window).width(), height : $(window).height() }); $("#upgrading").css({ top : ($(window).height() / 3), left : ($(window).width() / 2 - 160) }); $('form#upgrade').submit(function(e) { var form = $(this); $('input[type=submit]', this).attr('disabled', 'disabled'); $('#overlay, #upgrading').show(); if($('input#mode', form).val() == 'manual') { return true; } else { e.preventDefault(); autoUpgrade('upgrade.php',form.serialize()); return false; } }); function autoUpgrade(url, data) { if (!$.isFunction('__')) { function __(s) { return s; } } function _lp(count) { $.ajax({ type: 'POST', url: 'ajax.php/upgrader', async: true, cache: false, data: data, dataType: 'text', success: function(res) { $('#main #task').html(res); $('#upgrading #action').html(res); $('#upgrading #msg').html(__('Still busy... smile #')+count); }, statusCode: { 200: function() { setTimeout(function() { _lp(count+1); }, 200); }, 201: function() { $('#upgrading #msg').html(__("Cleaning up!...")); setTimeout(function() { location.href =url+'?c='+count+'&r='+Math.floor((Math.random()*100)+1); }, 3000); } }, error: function(jqXHR, textStatus, errorThrown) { $('#upgrading #action').html(__('Error occurred. Aborting...')); switch(jqXHR.status) { case 404: $('#upgrading #msg').html(__("Manual upgrade required (ajax failed)")); setTimeout(function() { location.href =url+'?m=manual&c='+count+'&r='+Math.floor((Math.random()*100)+1); }, 2000); break; default: $('#upgrading #msg').html(__("Something went wrong")); setTimeout(function() { location.href =url+'?c='+count+'&r='+Math.floor((Math.random()*100)+1); }, 2000); } } }); }; _lp(1); } });