1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-02-15 01:31:37 +01:00
This commit is contained in:
2020-10-17 18:25:25 +02:00
parent a0ae0df455
commit 7163a42645
4 changed files with 5 additions and 6 deletions

View File

@@ -72,7 +72,6 @@ switch ($namepage){
$groups = array();
}
renderPage('a_newserver.twig',array('mode' => 'new'));
break;
case 'deleteserver':

View File

@@ -1,7 +1,7 @@
<?php
if (isset($_GET['logout'])){session_start(); session_destroy();} //Logout
if (!file_exists(dirname(__FILE__).'/config/config.php')){
die('Not configured yet');
if (!file_exists(__DIR__ .'/config/config.php')){
header('location: install.php');
}
require_once 'functions.php';

View File

@@ -7,7 +7,7 @@ if (file_exists(dirname(__FILE__).'/config/config.php')){
//Comprobaciones
if (!function_exists('socket_create') ){
sendmsg('error','Debes activar el soporte para socket en el php.ini');
sendmsg('error','Debes activar el soporte para socket en el php.ini si quieres que pueda hacer ping.');
}
if (!is_writable(__DIR__ .'/config/') ){
sendmsg('error','Debes dar permisos de escritura al directorio config');