OliverParoczai
4 years ago
11 changed files with 60 additions and 21 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,20 +1,37 @@ |
|||||
<?php |
<?php |
||||
#Setup for first start |
#Setup for first start |
||||
|
$error = 0; |
||||
|
|
||||
if(!file_exists("images/company")){ |
if(!file_exists("images/company")){ |
||||
mkdir("images/company", 0777); |
if(mkdir("images/company", 0777) && $error != 1){ |
||||
echo "Vállalati fotó könyvtár létrehozva"; |
echo "Vállalati fotó könyvtár létrehozva<br>"; |
||||
|
}else{ |
||||
|
$error = 1; |
||||
|
} |
||||
} |
} |
||||
if(!file_exists("images/school")){ |
if(!file_exists("images/school")){ |
||||
mkdir("images/school", 0777); |
if(mkdir("images/school", 0777) && $error != 1){ |
||||
echo "Felhasználói fotó könyvtár létrehozva"; |
echo "Felhasználói fotó könyvtár létrehozva<br>"; |
||||
|
}else{ |
||||
|
$error = 1; |
||||
|
} |
||||
} |
} |
||||
if(!file_exists("images/school")){ |
if(!file_exists("images/school")){ |
||||
mkdir("images/user", 0777); |
if(mkdir("images/user", 0777) && $error != 1){ |
||||
echo "Intézményi fotó könyvtár létrehozva"; |
echo "Intézményi fotó könyvtár létrehozva<br>"; |
||||
|
}else{ |
||||
|
$error = 1; |
||||
|
} |
||||
} |
} |
||||
if(!file_exists("creds.php")){ |
if(!file_exists("creds.php")){ |
||||
file_put_contents("creds.php", '<?php\n$sqlserver = "localhost";\n$sqluser = "root";\n$sqlpass = "dbpass";\n$dbname = "paredu\n?>');
|
if(file_put_contents("creds.php", '<?php $sqlserver = "localhost"; $sqluser = "root"; $sqlpass = "dbpass"; $dbname = "paredu"; ?>') && $error != 1){ |
||||
echo "Adatbázis konfiguráció létrehozva (creds.php)"; |
echo "Adatbázis konfiguráció létrehozva (creds.php)<br>"; |
||||
|
}else{ |
||||
|
$error = 1; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
if($error == 1){ |
||||
|
echo "Nincsennek a jogok megfelelően beállítva. A gyökérmappa (".basename(__DIR__) .") legyen 777 jogosultságú."; |
||||
} |
} |
||||
?> |
?> |
Loading…
Reference in new issue