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.
20 lines
639 B
20 lines
639 B
4 years ago
|
<?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)";
|
||
|
}
|
||
|
?>
|