forked from ZwiiCMS-Team/ZwiiCMS
Sécurité connexion options par défaut
This commit is contained in:
parent
0d68f00710
commit
4c29d94246
@ -1311,7 +1311,7 @@ class common {
|
|||||||
if ($this->getData(['core', 'dataVersion']) < 10200) {
|
if ($this->getData(['core', 'dataVersion']) < 10200) {
|
||||||
$this->deleteData(['admin','colorButtonText']);
|
$this->deleteData(['admin','colorButtonText']);
|
||||||
$this->setData(['config', 'connect', 'attempt',3]);
|
$this->setData(['config', 'connect', 'attempt',3]);
|
||||||
$this->setData(['config', 'connect', 'timeout',10]);
|
$this->setData(['config', 'connect', 'timeout',360]);
|
||||||
$this->setData(['core', 'dataVersion', 10200]);
|
$this->setData(['core', 'dataVersion', 10200]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -170,7 +170,7 @@ class config extends common {
|
|||||||
999 => 'Aucun',
|
999 => 'Aucun',
|
||||||
3 => '3 tentatives',
|
3 => '3 tentatives',
|
||||||
5 => '5 tentatives',
|
5 => '5 tentatives',
|
||||||
10=> '10 tentatives'
|
10 => '10 tentatives'
|
||||||
];
|
];
|
||||||
// Sécurité de la connexion - durée du blocage
|
// Sécurité de la connexion - durée du blocage
|
||||||
public static $connectTimeout = [
|
public static $connectTimeout = [
|
||||||
|
@ -286,6 +286,27 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<div class="block">
|
||||||
|
<h4>Connexion</h4>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::select('configConnectAttempt', $module::$connectAttempt , [
|
||||||
|
'label' => 'Echecs avant blocage',
|
||||||
|
'selected' => $this->getData(['config', 'connect', 'attempt'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::select('configConnectTimeout', $module::$connectTimeout , [
|
||||||
|
'label' => 'Durée du blocage',
|
||||||
|
'selected' => $this->getData(['config', 'connect', 'timeout'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col12">
|
<div class="col12">
|
||||||
<div class="block">
|
<div class="block">
|
||||||
@ -348,28 +369,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<div class="col12">
|
|
||||||
<div class="block">
|
|
||||||
<h4>Connexion</h4>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col4">
|
|
||||||
<?php echo template::select('configConnectAttempt', $module::$connectAttempt , [
|
|
||||||
'label' => 'Echecs avant blocage',
|
|
||||||
'selected' => $this->getData(['config', 'connect', 'attempt'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col4">
|
|
||||||
<?php echo template::select('configConnectTimeout', $module::$connectTimeout , [
|
|
||||||
'label' => 'Durée du blocage',
|
|
||||||
'selected' => $this->getData(['config', 'connect', 'timeout'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col12">
|
<div class="col12">
|
||||||
<div class="block">
|
<div class="block">
|
||||||
|
@ -25,7 +25,14 @@ class init extends common {
|
|||||||
'title' => 'Votre site en quelques clics !',
|
'title' => 'Votre site en quelques clics !',
|
||||||
'proxyUrl' => "",
|
'proxyUrl' => "",
|
||||||
'proxyPort' => "",
|
'proxyPort' => "",
|
||||||
'proxyType' => "tcp://"
|
'proxyType' => "tcp://",
|
||||||
|
'smtp' => [
|
||||||
|
'enable' => false,
|
||||||
|
],
|
||||||
|
"connect" => [
|
||||||
|
"timeout" => 360,
|
||||||
|
"attempt" => 3
|
||||||
|
]
|
||||||
],
|
],
|
||||||
'core' => [
|
'core' => [
|
||||||
'dataVersion' => 10000,
|
'dataVersion' => 10000,
|
||||||
|
Loading…
Reference in New Issue
Block a user