diff --git a/install.php b/install.php index 2f8e417..62f6c45 100644 --- a/install.php +++ b/install.php @@ -949,7 +949,10 @@ PHP $adminMember->PasswordEncryption = Security::get_password_encryption_algorithm(); $adminMember->FirstName = $config['admin']['firstname']; $adminMember->Surname = $config['admin']['surname']; - $adminMember->write(); + try { + $adminMember->write(); + } catch(Exception $e) { + } // Syncing filesystem (so /assets/Uploads is available instantly, see ticket #2266) Filesystem::sync();