GET link 500 (Internal Server Error)
My role
function estadoDinamico(indice, key, width, height){
$.ajax({
type:'GET',
url : '<?= base_url(); ?>index.php/supervisaocontroller/estadoMaquinaMobAjax/'+key+'/'+indice+'/'+width+'/'+height,
success: function(data){
$('#contentSupervisao'+indice).html(data);
$.ajax({
type:'GET',
url : '<?= base_url(); ?>index.php/supervisaocontroller/ConfigPersonalizadaAjax/'+key+'/'+indice,
success: function(data){
$('#contentConfigPers'+indice).html(data);
setTimeout(
function(){
estadoDinamico(indice, key, width, height);
}, 2000
);
}
});
}
});
};
So the error occurs, someone could help ??????