Luxbum.net - Script de galerie photo

Changeset 323

Show
Ignore:
Timestamp:
04/06/08 11:07:59 (8 months ago)
Author:
nicolas
Message:

Simplification de la configuration de base

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/conf/config.dist.php

    r234 r323  
    3030// Set the base url of the installed luxbum. 
    3131// /!\ Warning : the tail / is needed 
    32 $cfg['url_base'] = ''; 
    33  
    34 // Set the index file so that luxbum can be more easily integrated 
    35 $cfg['index_file'] = 'index.php'; 
    36  
    37 // Set the manager file so that luxbum can be more easily integrated 
    38 $cfg['manager_file'] = 'manager.php'; 
     32$cfg['url_base'] = 'http://www.mydomain.com/pâth/to/luxbum/'; 
    3933 
    4034// Set the template to use ; 
     
    4539$cfg['template_theme'] = 'light'; 
    4640 
     41// Set the name of the gallery. It will be displayed in  
     42// the title of all the pages 
     43$cfg['gallery_name'] = 'My gallery name'; 
     44 
    4745 
    4846/****************************************************************** 
     
    5048  Can be edited 
    5149**/ 
     50// Set the index file so that luxbum can be more easily integrated 
     51$cfg['index_file'] = 'index.php'; 
    5252 
    53 // Set the name of the gallery. It will be displayed in  
    54 // the title of all the pages 
    55 $cfg['gallery_name'] = ''; 
     53// Set the manager file so that luxbum can be more easily integrated 
     54$cfg['manager_file'] = 'manager.php'; 
    5655 
    5756// Use rewrite rules to generate url's. The url looks like 
    5857// to be a path to a real file, but it doesn't. 
    5958// When disabled, a '?/' is displayed in the url 
    60 $cfg['use_rewrite'] = true; 
     59$cfg['use_rewrite'] = false; 
    6160 
    6261// Set the date format to display dates in luxbum. 
     
    9897// Driver to use to generate thumbs 
    9998// Choices : gd / imagemagick  
    100 $cfg['image_generation_driver'] = 'imagemagick'; 
    101  
    102  
     99$cfg['image_generation_driver'] = 'gd'; 
    103100 
    104101