init bug rewrite
This commit is contained in:
parent
ab37ed0ea9
commit
cc8dcce9e3
@ -32,5 +32,4 @@ Options -Indexes
|
|||||||
Options -MultiViews
|
Options -MultiViews
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|
||||||
# Attention, surtout ne rien modifier ci-dessous !
|
|
||||||
# URL rewriting
|
# URL rewriting
|
@ -267,7 +267,8 @@ class helper {
|
|||||||
// Ouvre et scinde le fichier .htaccess
|
// Ouvre et scinde le fichier .htaccess
|
||||||
$htaccess = explode('# URL rewriting', file_get_contents('.htaccess'));
|
$htaccess = explode('# URL rewriting', file_get_contents('.htaccess'));
|
||||||
// Retourne un boolean en fonction du contenu de la partie réservée à l'URL rewriting
|
// Retourne un boolean en fonction du contenu de la partie réservée à l'URL rewriting
|
||||||
self::$rewriteStatus = (empty($htaccess[1]) === false);
|
//self::$rewriteStatus = (empty($htaccess[1]) === false);
|
||||||
|
self::$rewriteStatus = (strpos($htaccess[1], 'RewriteEngine on') > 0) ? true : false;
|
||||||
}
|
}
|
||||||
return self::$rewriteStatus;
|
return self::$rewriteStatus;
|
||||||
}
|
}
|
||||||
|
@ -291,7 +291,6 @@ class common {
|
|||||||
]);;
|
]);;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Import version 9
|
// Import version 9
|
||||||
if (file_exists(self::DATA_DIR . 'core.json') === true &&
|
if (file_exists(self::DATA_DIR . 'core.json') === true &&
|
||||||
$this->getData(['core','dataVersion']) < 10000) {
|
$this->getData(['core','dataVersion']) < 10000) {
|
||||||
|
@ -547,17 +547,21 @@ class config extends common {
|
|||||||
AND helper::checkRewrite() === false
|
AND helper::checkRewrite() === false
|
||||||
) {
|
) {
|
||||||
// Ajout des lignes dans le .htaccess
|
// Ajout des lignes dans le .htaccess
|
||||||
|
$fileContent = file_get_contents('.htaccess');
|
||||||
|
$rewriteData = PHP_EOL .
|
||||||
|
'# URL rewriting' . PHP_EOL .
|
||||||
|
'<IfModule mod_rewrite.c>' . PHP_EOL .
|
||||||
|
"\tRewriteEngine on" . PHP_EOL .
|
||||||
|
"\tRewriteBase " . helper::baseUrl(false, false) . PHP_EOL .
|
||||||
|
"\tRewriteCond %{REQUEST_FILENAME} !-f" . PHP_EOL .
|
||||||
|
"\tRewriteCond %{REQUEST_FILENAME} !-d" . PHP_EOL .
|
||||||
|
"\tRewriteRule ^(.*)$ index.php?$1 [L]" . PHP_EOL .
|
||||||
|
'</IfModule>'. PHP_EOL .
|
||||||
|
'# URL rewriting' . PHP_EOL ;
|
||||||
|
$fileContent = str_replace('# URL rewriting', $rewriteData, $fileContent);
|
||||||
file_put_contents(
|
file_put_contents(
|
||||||
'.htaccess',
|
'.htaccess',
|
||||||
PHP_EOL .
|
$fileContent
|
||||||
'<IfModule mod_rewrite.c>' . PHP_EOL .
|
|
||||||
"\tRewriteEngine on" . PHP_EOL .
|
|
||||||
"\tRewriteBase " . helper::baseUrl(false, false) . PHP_EOL .
|
|
||||||
"\tRewriteCond %{REQUEST_FILENAME} !-f" . PHP_EOL .
|
|
||||||
"\tRewriteCond %{REQUEST_FILENAME} !-d" . PHP_EOL .
|
|
||||||
"\tRewriteRule ^(.*)$ index.php?$1 [L]" . PHP_EOL .
|
|
||||||
'</IfModule>',
|
|
||||||
FILE_APPEND
|
|
||||||
);
|
);
|
||||||
// Change le statut de la réécriture d'URL (pour le helper::baseUrl() de la redirection)
|
// Change le statut de la réécriture d'URL (pour le helper::baseUrl() de la redirection)
|
||||||
helper::$rewriteStatus = true;
|
helper::$rewriteStatus = true;
|
||||||
@ -568,8 +572,13 @@ class config extends common {
|
|||||||
AND helper::checkRewrite()
|
AND helper::checkRewrite()
|
||||||
) {
|
) {
|
||||||
// Suppression des lignes dans le .htaccess
|
// Suppression des lignes dans le .htaccess
|
||||||
$htaccess = explode('# URL rewriting', file_get_contents('.htaccess'));
|
$fileContent = file_get_contents('.htaccess');
|
||||||
file_put_contents('.htaccess', $htaccess[0] . '# URL rewriting');
|
$fileContent = explode('# URL rewriting', $fileContent);
|
||||||
|
$fileContent = $fileContent[0] . '# URL rewriting' . $fileContent[2];
|
||||||
|
file_put_contents(
|
||||||
|
'.htaccess',
|
||||||
|
$fileContent
|
||||||
|
);
|
||||||
// Change le statut de la réécriture d'URL (pour le helper::baseUrl() de la redirection)
|
// Change le statut de la réécriture d'URL (pour le helper::baseUrl() de la redirection)
|
||||||
helper::$rewriteStatus = false;
|
helper::$rewriteStatus = false;
|
||||||
}
|
}
|
||||||
|
@ -252,19 +252,23 @@ class install extends common {
|
|||||||
$success = true;
|
$success = true;
|
||||||
$rewrite = $this->getInput('data');
|
$rewrite = $this->getInput('data');
|
||||||
// Réécriture d'URL
|
// Réécriture d'URL
|
||||||
if ($rewrite === "true") {
|
if ($rewrite === "true") { // Ajout des lignes dans le .htaccess
|
||||||
$success = (file_put_contents(
|
$fileContent = file_get_contents('.htaccess');
|
||||||
|
$rewriteData = PHP_EOL .
|
||||||
|
'# URL rewriting' . PHP_EOL .
|
||||||
|
'<IfModule mod_rewrite.c>' . PHP_EOL .
|
||||||
|
"\tRewriteEngine on" . PHP_EOL .
|
||||||
|
"\tRewriteBase " . helper::baseUrl(false, false) . PHP_EOL .
|
||||||
|
"\tRewriteCond %{REQUEST_FILENAME} !-f" . PHP_EOL .
|
||||||
|
"\tRewriteCond %{REQUEST_FILENAME} !-d" . PHP_EOL .
|
||||||
|
"\tRewriteRule ^(.*)$ index.php?$1 [L]" . PHP_EOL .
|
||||||
|
'</IfModule>'. PHP_EOL .
|
||||||
|
'# URL rewriting' . PHP_EOL ;
|
||||||
|
$fileContent = str_replace('# URL rewriting', $rewriteData, $fileContent);
|
||||||
|
file_put_contents(
|
||||||
'.htaccess',
|
'.htaccess',
|
||||||
PHP_EOL .
|
$fileContent
|
||||||
'<IfModule mod_rewrite.c>' . PHP_EOL .
|
);
|
||||||
"\tRewriteEngine on" . PHP_EOL .
|
|
||||||
"\tRewriteBase " . helper::baseUrl(false, false) . PHP_EOL .
|
|
||||||
"\tRewriteCond %{REQUEST_FILENAME} !-f" . PHP_EOL .
|
|
||||||
"\tRewriteCond %{REQUEST_FILENAME} !-d" . PHP_EOL .
|
|
||||||
"\tRewriteRule ^(.*)$ index.php?$1 [L]" . PHP_EOL .
|
|
||||||
'</IfModule>',
|
|
||||||
FILE_APPEND
|
|
||||||
) !== false);
|
|
||||||
}
|
}
|
||||||
// Recopie htaccess
|
// Recopie htaccess
|
||||||
if ($this->getData(['config','autoUpdateHtaccess']) &&
|
if ($this->getData(['config','autoUpdateHtaccess']) &&
|
||||||
@ -272,7 +276,7 @@ class install extends common {
|
|||||||
) {
|
) {
|
||||||
// L'écraser avec le backup
|
// L'écraser avec le backup
|
||||||
$success = copy( '.htaccess.bak' ,'.htaccess' );
|
$success = copy( '.htaccess.bak' ,'.htaccess' );
|
||||||
// Effacer l ebackup
|
// Effacer le backup
|
||||||
unlink('.htaccess.bak');
|
unlink('.htaccess.bak');
|
||||||
}
|
}
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
|
Loading…
Reference in New Issue
Block a user