OliverParoczai
4 years ago
2 changed files with 21 additions and 1 deletions
@ -0,0 +1,20 @@ |
|||||
|
<?php |
||||
|
#Setup for first start |
||||
|
|
||||
|
if(!file_exists("images/company")){ |
||||
|
mkdir("images/company", 0777); |
||||
|
echo "Vállalati fotó könyvtár létrehozva"; |
||||
|
} |
||||
|
if(!file_exists("images/school")){ |
||||
|
mkdir("images/school", 0777); |
||||
|
echo "Felhasználói fotó könyvtár létrehozva"; |
||||
|
} |
||||
|
if(!file_exists("images/school")){ |
||||
|
mkdir("images/user", 0777); |
||||
|
echo "Intézményi fotó könyvtár létrehozva"; |
||||
|
} |
||||
|
if(!file_exists("creds.php")){ |
||||
|
file_put_contents("creds.php", '<?php\n$sqlserver = "localhost";\n$sqluser = "root";\n$sqlpass = "dbpass";\n$dbname = "paredu\n?>');
|
||||
|
echo "Adatbázis konfiguráció létrehozva (creds.php)"; |
||||
|
} |
||||
|
?> |
Loading…
Reference in new issue