JQuery Ajax Post results in 500 Internal Server Error $.ajax (anonymous function) under Linux server -


i getting (anonymous function) in chrome inspector console says because of line in script: $.ajax({

heres code. help.

$('#form-new_login').find('span i#ajax_loader').css("display","block");//ok $('#img_log').attr('src','images/onoffline.png');//ok    $('#form-new_login').find('input.ise_button.icon-paper-plane').val('en cours...');//ok var verif1=verif_ise_login($('input#ise-form-login'),6);//ok var verif2=verif_ise_password($('input#ise-form-pass'),6);//ok if (verif1 && verif2) {//ok     $.ajax({// *********** pb. here *******************     //[cursor before char of ajax({ error : post 500 (internal server error), details : (anonymous function)]     type: "post",     url: $('#form-new_login').attr('action'),//"modules/membres/profil/mon_profil.php",     data: $('#form-new_login').serialize(),     cache: false,     success: function(data)     {     ...     } 

here error enter image description here

solved me. advice such error(error 500 internal server error ) : error triggered because instruction php rejected server. review code of called file line line. example correction (i changed $_post $_request)


Comments

Popular posts from this blog

php - Invalid Cofiguration - yii\base\InvalidConfigException - Yii2 -

How to show in django cms breadcrumbs full path? -

ruby on rails - npm error: tunneling socket could not be established, cause=connect ETIMEDOUT -