I have add this :
ManiaLive\bootstrapper.php Line 63
Code: Select all
echo 'Internet -> optionnal -> ';
if (!$sock = @fsockopen('www.maniaplanet.com', 80, $num, $error, 5))
{
echo '[ No ]'. PHP_EOL;
$internet=0;
}else{
echo '[ Yes ]'. PHP_EOL;
$internet=1;
}
Code: Select all
if ($internet=1)
{
$this->checkUpdate();
$this->lastDisplayed = time() + 3600;
}
Code: Select all
if ($internet=1)
{
$plugin->onReady();
}