Jackpine Savages' Home on the 'Net

Server stuff => Issues => Topic started by: Raptor-Man on January 15, 2022, 11:12:57 AM

Title: ELDB + EXTDB3 mods - server side
Post by: Raptor-Man on January 15, 2022, 11:12:57 AM
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.
Title: Re: ELDB + EXTDB3 mods - server side
Post by: =JpS=SgtRock on January 15, 2022, 01:50:28 PM
I forget. Did we ever discuss creating a webpage to track the stats that we are capturing now?
Title: Re: ELDB + EXTDB3 mods - server side
Post by: Raptor-Man on January 15, 2022, 04:34:16 PM
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 :)
Title: Re: ELDB + EXTDB3 mods - server side
Post by: =JpS=SgtRock on January 15, 2022, 04:55:51 PM
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.
Title: Re: ELDB + EXTDB3 mods - server side
Post by: Raptor-Man on January 16, 2022, 11:48:14 PM
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.