create config-directory if not existing
This commit is contained in:
parent
0d43078be4
commit
da4ca087f7
1 changed files with 3 additions and 0 deletions
|
@ -19,6 +19,9 @@ include "include/tools.php";
|
||||||
<body>
|
<body>
|
||||||
<?php
|
<?php
|
||||||
if ($_GET['cmd'] =="writeconfig") {
|
if ($_GET['cmd'] =="writeconfig") {
|
||||||
|
if (!file_exists('./config')) {
|
||||||
|
mkdir('./config', 0777, true);
|
||||||
|
}
|
||||||
$configfile = fopen("config/config.php", w);
|
$configfile = fopen("config/config.php", w);
|
||||||
fwrite($configfile,"<?php\n");
|
fwrite($configfile,"<?php\n");
|
||||||
fwrite($configfile,"# This is an auto-generated config-file!\n");
|
fwrite($configfile,"# This is an auto-generated config-file!\n");
|
||||||
|
|
Loading…
Reference in a new issue