Le gestion de medias n'affiche pas les répertoires et fichiers dans /images/

Réduire
X
 
  • Filtrer
  • Heure
  • Afficher
Tout effacer
nouveaux messages

  • [RÉGLÉ] Le gestion de medias n'affiche pas les répertoires et fichiers dans /images/

    Après mise à jour en joomla 3.4.3 le gestion de media n'affiche plus le répertoire racine /images
    Cliquez sur l'image pour l'afficher en taille normale

Nom : Capture.JPG 
Affichages : 1 
Taille : 34,6 Ko 
ID : 1823391

  • #2
    Re : Le gestion de medias n'affiche pas les répertoires et fichiers dans /images/

    Bonjour j'ai le même problème à l'instant.

    Commentaire


    • #3
      Re : Le gestion de medias n'affiche pas les répertoires et fichiers dans /images/

      Bonjour compas,

      Le chemin des dossiers accédés par le gestionnaire de médias se configure dans Contenu > Gestion des médias > Paramètres :
      • Chemin du dossier des fichiers : images (par défaut)
      • Chemin du dossier des images : images (par défaut)

      Amicalement,
      Rajoz

      Commentaire


      • #4
        Re : Le gestion de medias n'affiche pas les répertoires et fichiers dans /images/

        Bonjour Rajoz,

        Oui en effet, et ce sont ses paramètres qui y sont par défaut.
        En fait avant hier j'ai pu faire des modifications dans mon site et tout fonctionnais trés bien, alors que hier, subitement, j'ai une page blanche pour accéder a la gestion des médias.

        En écrivant ce message je me souviens que j'ai modifié mon fichier .htaccess. C'est peut être la source du problème. Voici le contenu de ce fichier :

        ##
        # @package Joomla
        # @copyright Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.
        # @license GNU General Public License version 2 or later; see LICENSE.txt
        ##


        ##
        # READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
        #
        # The line just below this section: 'Options +FollowSymLinks' may cause problems
        # with some server configurations. It is required for use of mod_rewrite, but may already
        # be set by your server administrator in a way that disallows changing it in
        # your .htaccess file. If using it causes your server to error out, comment it out (add # to
        # beginning of line), reload your site in your browser and test your sef url's. If they work,
        # it has been set by your server administrator and you do not need it set here.
        ##


        # Don't allow any pages to be framed - Defends against CSRF
        Header set X-Frame-Options DENY


        #Activation du Mod Deflate
        <IfModule mod_deflate.c>
        # Compresse les fichiers HTML, CSS, JavaScript, Text, XML et les fonts
        AddOutputFilterByType DEFLATE application/javascript
        AddOutputFilterByType DEFLATE application/rss+xml
        AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
        AddOutputFilterByType DEFLATE application/x-font
        AddOutputFilterByType DEFLATE application/x-font-opentype
        AddOutputFilterByType DEFLATE application/x-font-otf
        AddOutputFilterByType DEFLATE application/x-font-truetype
        AddOutputFilterByType DEFLATE application/x-font-ttf
        AddOutputFilterByType DEFLATE application/x-javascript
        AddOutputFilterByType DEFLATE application/xhtml+xml
        AddOutputFilterByType DEFLATE application/xml
        AddOutputFilterByType DEFLATE font/opentype
        AddOutputFilterByType DEFLATE font/otf
        AddOutputFilterByType DEFLATE font/ttf
        AddOutputFilterByType DEFLATE image/svg+xml
        AddOutputFilterByType DEFLATE image/x-icon
        AddOutputFilterByType DEFLATE text/css
        AddOutputFilterByType DEFLATE text/html
        AddOutputFilterByType DEFLATE text/javascript
        AddOutputFilterByType DEFLATE text/plain
        AddOutputFilterByType DEFLATE text/xml


        # Ce code est pour assurer une compatibilité avec les anciens navigateurs
        BrowserMatch ^Mozilla/4 gzip-only-text/html
        BrowserMatch ^Mozilla/4\.0[678] no-gzip
        BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
        Header append Vary User-Agent
        </IfModule>


        #Activation du mod Expires
        <IfModule mod_expires.c>
        ExpiresActive On
        ExpiresByType image/jpg "access plus 1 year"
        ExpiresByType image/jpeg "access plus 1 year"
        ExpiresByType image/gif "access plus 1 year"
        ExpiresByType image/png "access plus 1 year"
        ExpiresByType text/css "access plus 1 month"
        ExpiresByType application/pdf "access plus 1 month"
        ExpiresByType text/x-javascript "access plus 1 month"
        ExpiresByType application/x-shockwave-flash "access plus 1 month"
        ExpiresByType image/x-icon "access plus 1 year"
        ExpiresDefault "access plus 7 days"
        </IfModule>


        # Turn on IE8-IE9 XSS prevention tools
        Header set X-XSS-Protection "1; mode=block"


        # Only allow JavaScript from the same domain to be run.
        # Don't allow inline JavaScript to run.
        Header set X-Content-Security-Policy "allow 'self';"


        # prevent mime based attacks
        Header set X-Content-Type-Options "nosniff"


        ## No directory listings
        IndexIgnore *


        ## Can be commented out if causes errors, see notes above.
        Options +FollowSymlinks
        Options -Indexes


        ## Mod_rewrite in use.


        RewriteEngine On


        ## Begin - Rewrite rules to block out some common exploits.
        # If you experience problems on your site block out the operations listed below
        # This attempts to block the most common type of exploit `attempts` to Joomla!
        #
        # Block out any script trying to base64_encode data within the URL.
        RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
        # Block out any script that includes a <script> tag in URL.
        RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
        # Block out any script trying to set a PHP GLOBALS variable via URL.
        RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
        # Block out any script trying to modify a _REQUEST variable via URL.
        RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
        # Return 403 Forbidden header and show the content of the root homepage
        RewriteRule .* index.php [F]
        #
        ## End - Rewrite rules to block out some common exploits.


        ## Begin - Custom redirects
        #
        # If you need to redirect some pages, or set a canonical non-www to
        # www redirect (or vice versa), place that code here. Ensure those
        # redirects use the correct RewriteRule syntax and the [R=301,L] flags.
        #
        ## End - Custom redirects


        ##
        # Uncomment following line if your webserver's URL
        # is not directly related to physical file paths.
        # Update Your Joomla! Directory (just / for root).
        ##


        # RewriteBase /


        ## Begin - Joomla! core SEF Section.
        #
        RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
        #
        # If the requested path and file is not /index.php and the request
        # has not already been internally rewritten to the index.php script
        RewriteCond %{REQUEST_URI} !^/index\.php
        # and the requested path and file doesn't directly match a physical file
        RewriteCond %{REQUEST_FILENAME} !-f
        # and the requested path and file doesn't directly match a physical folder
        RewriteCond %{REQUEST_FILENAME} !-d
        # internally rewrite the request to the index.php script
        RewriteRule .* index.php [L]
        #
        ## End - Joomla! core SEF Section.

        Commentaire


        • #5
          Re : Le gestion de medias n'affiche pas les répertoires et fichiers dans /images/

          Je viens de trouver la solution.

          Il faut supprimer le code ci-dessous de mon fichier .htaccess :

          # Don't allow any pages to be framed - Defends against CSRF
          Header set X-Frame-Options DENY

          Commentaire


          • #6
            Re : Le gestion de medias n'affiche pas les répertoires et fichiers dans /images/

            Salut,
            Si c'est réglé merci de l'indiquer :

            Bonne soirée.
            Un message d’erreur sur votre site Joomla ... ayez le reflexe de consulter lla base de connaissance : https://kb.joomla.fr

            Ce forum, vous l'aimez ? il vous a sauvé la vie ? Vous y apprenez chaque jour ? Alors adhérez à l'AFUJ https://www.joomla.fr/association/adherer

            Commentaire

            Annonce

            Réduire
            Aucune annonce pour le moment.

            Partenaire de l'association

            Réduire

            Hébergeur Web PlanetHoster
            Travaille ...
            X