Install tel qu'avant
This commit is contained in:
parent
5ed49819ca
commit
c21986a97e
@ -377,6 +377,7 @@ class install extends common
|
|||||||
// Configuration
|
// Configuration
|
||||||
case 4:
|
case 4:
|
||||||
$success = true;
|
$success = true;
|
||||||
|
$message = '';
|
||||||
$rewrite = $this->getInput('data');
|
$rewrite = $this->getInput('data');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -387,13 +388,11 @@ class install extends common
|
|||||||
$this->getData(['config', 'autoUpdateHtaccess']) === true
|
$this->getData(['config', 'autoUpdateHtaccess']) === true
|
||||||
) {
|
) {
|
||||||
// L'écraser avec le backup
|
// L'écraser avec le backup
|
||||||
copy('.htaccess.bak', '.htaccess');
|
$success = copy('.htaccess.bak', '.htaccess');
|
||||||
/*
|
|
||||||
if ($success === false) {
|
if ($success === false) {
|
||||||
$message = helper::translate('La copie de sauvegarde du fichier htaccess n\'a pas été restaurée !');
|
$message = helper::translate('La copie de sauvegarde du fichier htaccess n\'a pas été restaurée !');
|
||||||
http_response_code(500);
|
http_response_code(500);
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
// Effacer le backup
|
// Effacer le backup
|
||||||
unlink('.htaccess.bak');
|
unlink('.htaccess.bak');
|
||||||
} else {
|
} else {
|
||||||
@ -413,7 +412,7 @@ class install extends common
|
|||||||
'</IfModule>' . PHP_EOL .
|
'</IfModule>' . PHP_EOL .
|
||||||
'# URL rewriting' . PHP_EOL;
|
'# URL rewriting' . PHP_EOL;
|
||||||
$fileContent = str_replace('# URL rewriting', $rewriteData, $fileContent);
|
$fileContent = str_replace('# URL rewriting', $rewriteData, $fileContent);
|
||||||
file_put_contents(
|
$success = file_put_contents(
|
||||||
'.htaccess',
|
'.htaccess',
|
||||||
$fileContent
|
$fileContent
|
||||||
);
|
);
|
||||||
@ -445,8 +444,8 @@ class install extends common
|
|||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
'display' => self::DISPLAY_JSON,
|
'display' => self::DISPLAY_JSON,
|
||||||
'content' => [
|
'content' => [
|
||||||
'success' => true,
|
'success' => $success,
|
||||||
'data' => ''
|
'data' => json_encode($message, JSON_UNESCAPED_UNICODE)
|
||||||
]
|
]
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user