0
GET http://localhost/Ultraweb_20150629_adriano/Ultraweb/index.php/supervisaocontroller/stateMaquinaMobAjax/37/37/100/500 500 (Internal Server Error)
My job
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
);
}
});
}
});
};
then error occurs, someone could help??????