mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-27 17:00:52 +01:00
install.php: check that secrets.php is writable
This commit is contained in:
parent
3de9fa24dd
commit
8799c142b0
@ -5,6 +5,11 @@ define('VERSION', '5.1.4');
|
||||
require 'inc/bootstrap.php';
|
||||
loadConfig();
|
||||
|
||||
if (!is_writable('inc/secrets.php')) {
|
||||
echo 'install.php does not have permission to write to /inc/secrets.php, without permission the installer cannot continue';
|
||||
exit();
|
||||
}
|
||||
|
||||
// Salt generators
|
||||
class SaltGen {
|
||||
public $salt_length = 128;
|
||||
|
Loading…
Reference in New Issue
Block a user