ELDB + EXTDB3 mods - server side now.
There's a suspected ARMA3 engine bug involving having mods on servermod & clientside mod lists.
I don't have any details - but if issues with the server come up let us know & we can look into this more if something breaks.
Today is 1/15 - I confirmed last night at 9pm - caps was on server making blood & the db was capturing it.
I forget. Did we ever discuss creating a webpage to track the stats that we are capturing now?
We did 2 years & the decision was to hold off on official stuff as we weren't sure you'd ever email hosthavoc to ask them if writing the mod with extdb3 was even possible :)
So, now that you're able to pull reports... Is there a good way to create a view on the website? I think we need a whiteboard session at some point.
I need to redo my signins & such to see what capabilities you're paying for again. I'm still fighting github to recover those keys & started a new account incase i never do...f'ing MS.
Something as simple as this in php could work for basics if you don't want sorting etc ... that will take another level of complexity.
https://stackoverflow.com/a/32467773
function display_data($data) {
$output = '<table>';
foreach($data as $key => $var) {
$output .= '<tr>';
foreach($var as $k => $v) {
if ($key === 0) {
$output .= '<td><strong>' . $k . '</strong></td>';
} else {
$output .= '<td>' . $v . '</td>';
}
}
$output .= '</tr>';
}
$output .= '</table>';
echo $output;
}
Also - I don't think I'm going to go much farther than that myself with php - as its not the type of job I want.
I've got 11 frameworks in Javascript I've done tutorials/projects & 3 solid years in ruby on rails if it turns out you need more than an unsortable table.