Server-side processing - ajax parameters causing page not found
Server-side processing - ajax parameters causing page not found
Hello everyone!
I'm using Datables server-side processing.
Here is the initialization code:
var oTable = $('#dt_basic').dataTable({
"processing": true,
"serverSide": true,
"ajax": "../docfleet/_includes/data_veiculo.php"
});
Checking trough Firebug, that request creates the following URL:
But i'm having some problems. I'm almost sure it's the server that refuses to decode the url parameters because i'm getting "page not found" and if I clear the parameters the page shows.
Could anyone help-me with this?
This question has an accepted answers - jump to answer
Answers
If you think the URL is the issue, you could use POST instead. I would think POST should be the default type in dataTables, but it isn't.
Thank you! I use this solution and the issue is over!
Thanks again!