I am getting error 524 while listing the details in table using Datatable (Jquery). When I went to that particular page I just get a processing wheel and then it times out. Any suggestions
Did you read this
1 Like
Ok but why would only that call fail? And not any other
I’m guessing it’s because that query takes longer than 100 seconds and the others don’t.
3 Likes
Could you say solution for this to solve. And my code is here
$('#orderTable').DataTable({
"autoWidth": false,
"processing": true,
"serverSide": true,
"ajax": {
"url": listURL,
type: 'GET',
data: {
email: email
}
},
"rowCallback": function rowCallback(row, data) {
if (data.active == 2) {
$(row).addClass("cancel-order");
}
},
"columnDefs": [{
"targets": 4,
"orderable": false
}],
"fnDrawCallback": function fnDrawCallback(oSettings) {
$('#orderTable [data-toggle="tooltip"]').tooltip();
},
"columns": [{
"data": "id"
}, {
"data": "type"
}, {
"data": "email"
}, {
"data": "total_points"
}, {
"data": "status"
}, {
"data": "points_available"
}, {
"data": "order_date"
}, {
"data": "s_order_id"
}]
});
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.