You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
37 lines
1.0 KiB
<?php
|
|
#Setup for first start
|
|
$error = 0;
|
|
|
|
if(!file_exists("images/company")){
|
|
if(mkdir("images/company", 0777) && $error != 1){
|
|
echo "Vállalati fotó könyvtár létrehozva<br>";
|
|
}else{
|
|
$error = 1;
|
|
}
|
|
}
|
|
if(!file_exists("images/school")){
|
|
if(mkdir("images/school", 0777) && $error != 1){
|
|
echo "Felhasználói fotó könyvtár létrehozva<br>";
|
|
}else{
|
|
$error = 1;
|
|
}
|
|
}
|
|
if(!file_exists("images/school")){
|
|
if(mkdir("images/user", 0777) && $error != 1){
|
|
echo "Intézményi fotó könyvtár létrehozva<br>";
|
|
}else{
|
|
$error = 1;
|
|
}
|
|
}
|
|
if(!file_exists("creds.php")){
|
|
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)<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ú.";
|
|
}
|
|
?>
|