diff --git a/arbre-prive.php b/arbre-prive.php index bb0ef65..e5bf71e 100644 --- a/arbre-prive.php +++ b/arbre-prive.php @@ -59,7 +59,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') { $newPath = $path . '/' . sanitizeFilename($newName); if (!file_exists($newPath)) { $moreInfoUrl = $_POST['more_info_url'] ?? ''; - mkdir($newPath, 0755, true); + mkdir($newPath, 0775, true); $infoContent = $newName . "\n" . $description . "\n" . $matureContent . "\n" . $moreInfoUrl; file_put_contents($newPath . '/infos.txt', $infoContent); $_SESSION['success_message'] = "Dossier privé créé avec succès."; @@ -137,7 +137,7 @@ if (!isSecurePrivatePath($currentPath)) { // Créer le dossier racine s'il n'existe pas if (!file_exists('./liste_albums_prives')) { - mkdir('./liste_albums_prives', 0755, true); + mkdir('./liste_albums_prives', 0775, true); // Créer le fichier infos.txt pour le dossier racine $infoContent = "Albums privés\nVos albums photos privés\n18-\n"; file_put_contents('./liste_albums_prives/infos.txt', $infoContent); diff --git a/arbre.php b/arbre.php index a6dbae7..1b4bcf6 100644 --- a/arbre.php +++ b/arbre.php @@ -21,7 +21,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') { $newPath = $path . '/' . sanitizeFilename($newName); if (!file_exists($newPath)) { $moreInfoUrl = $_POST['more_info_url'] ?? ''; - mkdir($newPath, 0755, true); + mkdir($newPath, 0775, true); $infoContent = $newName . "\n" . $description . "\n" . $matureContent . "\n" . $moreInfoUrl; file_put_contents($newPath . '/infos.txt', $infoContent); $_SESSION['success_message'] = "Dossier créé avec succès."; diff --git a/index.php b/index.php index dc72c41..f71c751 100644 --- a/index.php +++ b/index.php @@ -8,7 +8,7 @@ function getCarouselImages($limit = 5) { // Vérifier si le dossier existe if (!is_dir($carouselDir)) { // Créer le dossier s'il n'existe pas - mkdir($carouselDir, 0755, true); + mkdir($carouselDir, 0775, true); return $images; }