1
0
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:
Zankaria 2024-04-04 17:05:27 +02:00 committed by Zankaria
parent 3de9fa24dd
commit 8799c142b0

View File

@ -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;