Does anyone know where to to change this server status for the MyAAC webiste? This is version 0.8.6. Yes, the server is actually online AND open to the public.
I thought it was in /system/status.php, there's a section that looks like this:
PHP:
// ip check
if(isset($config['status_ip'][0]))
{
$status_ip = $config['status_ip'];
}
elseif(!isset($status_ip[0])) // try localhost if no ip specified
{
$status_ip = '127.0.0.1';
}
// port check
$status_port = $config['lua']['statusPort'];
if(isset($config['status_port'][0])) {
$status_port = $config['status_port'];
}
elseif(!isset($status_port[0])) // try 7171 if no ip specified
{
$status_port = 7171;
}
I tried setting the IP as my internal IP and external IP, as well as making sure the port was correct (I don't use 7171), it never changes to "ONLINE." There must be some other spot where I need to change the IP, can someone tell me where this is at?
Thanks,