There is this code:
$s = isset($_GET['s']) ? $_GET['s'] : "";
if (is_numeric($s))
{
$lgsl_server_id = $s;
require "lgsl_files/lgsl_details.php";
}
Server identificator has to be numeric but it is IP like /index.php?s=99.99.999.999
Questions:
it is intention?
it is problem with link to detail?
or
it is problem with parameters processing?
This sounds so familiar... I just can't remember what was fix.