I'm having problems with the creation of a url, which makes me feel a genuine idiot. The problem is this, I'm using the same jgrid through and create a button to display a small window like this:
- jQuery.ajax({
- url: "include/resumo_projetos.php?iduo=" + iduo + "&idorg=" + idorg,
- type:'GET',
- dataType: "html",
- success: function (data)
- {
- $("#teste").dialog({title: 'Resumo da informação sobre projetos',
- width: '800', height:'600', resizable:false, draggable:false,
- buttons: {Ok: function() {$( this ).dialog( "close" );}}});
- $('#teste').html(data);
- }
- });
The problem is that this always returns 500 (Internal Server Error). That is, you can not find the page, and the link is correct because through the developer tools in chrome can see this link and returns the same to copy and paste link in browser it shows me this information. Anyone know how I can fix this?