Make sure htaccess is created
parent
a30e6109bf
commit
f3df4772f9
|
@ -40,7 +40,10 @@ class Factory
|
||||||
|
|
||||||
// Protect directory against web access
|
// Protect directory against web access
|
||||||
if (!file_exists($home . '/.htaccess')) {
|
if (!file_exists($home . '/.htaccess')) {
|
||||||
@mkdir($home, 0777, true) && @file_put_contents($home . '/.htaccess', 'deny from all');
|
if (!is_dir($home)) {
|
||||||
|
@mkdir($home, 0777, true);
|
||||||
|
}
|
||||||
|
@file_put_contents($home . '/.htaccess', 'Deny from all');
|
||||||
}
|
}
|
||||||
|
|
||||||
$config = new Config();
|
$config = new Config();
|
||||||
|
|
Loading…
Reference in New Issue