| Editer le fichier ModIndex.pm :
       mcedit /usr/lib/perl5/site_vendor/5.6.1/i386-linux/Apache/ModIndex.pm
           
      (rem : il existe d'autres fichiers ModIndex.pm sur votre disque dur (dans 
        .../site_perl/...), mais ils ne sont que des 
        liens symbolique vers site_vendor) 
      Options possibles : 
      - 2 Thèmes d'affichages sont disponibles. Voici leur aperçu 
        : slord 
        ou lopty 
        - Vous pouvez changer le titre. Exemple dans les aperçus ci-dessus 
        (avec "Telechargement") 
        - Vous pouvez changer le tri des fichiers : 
             Par Nom de fichier : alpha 
             Par Extension : file_extension 
             Par Taille : file_size 
             Par Date : mod_date 
         
        Ici cela se passe d'explications (il suffit de mettre un 1 ou un 0 à 
        l'option désirée) car le fichier est assez bien commenté. 
        Voici le listing de mon fichier Modindex.pm : 
      #------------------------------------------------------------------ 
        #Indexer Theme: Use the following varables to choose between 
        # the two available indexer themes. 
        # Put a 1 next to the desired theme and a 0 next to 
        # the other(s). Default theme is Lophty. 
        # Themes: 
        # 1: Slord: Shad Lords indexer layout 
        # 2: Lophty: Lophty indexer layout 
        #------------------------------------------------------------------ 
        our $theme_slord = 0; 
        our $theme_lophty = 1; 
      #------------------------------------------------------------------ 
        #Text Title: Use the variable to define a text title that will 
        # be displayed at the top of each indexer page. 
        # leave the variable empty (i.e., null) will remove 
        # the title. 
        #------------------------------------------------------------------ 
        our $text_title = "Telechargement"; 
      #------------------------------------------------------------------ 
        #Indexer Sorting: Use the following group of variables to specify 
        # how the indexer should sort entries. Put a 1 
        # next to the variable designating the desired 
        # sort method and 0s next to the others. Setting 
        # more than one variable to 1 will cause the indexer 
        # to default to a simple alpha sort. 
        #------------------------------------------------------------------ 
        our $sortby_alpha = 1; 
        our $sortby_file_extension = 0; 
        our $sortby_file_size = 0; 
        our $sortby_mod_date = 0; 
      Application des changements : 
          1. Sauvez le fichier ModIndex.pm (F2 avec mcedit) 
        2. Redémarrez Apache : service httpd graceful 
        ou /etc/rc.d/init.d/httpd graceful 
       |