Changeset 323
- Timestamp:
- 04/06/08 11:07:59 (8 months ago)
- Files:
-
- trunk/conf/config.dist.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/conf/config.dist.php
r234 r323 30 30 // Set the base url of the installed luxbum. 31 31 // /!\ 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/'; 39 33 40 34 // Set the template to use ; … … 45 39 $cfg['template_theme'] = 'light'; 46 40 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 47 45 48 46 /****************************************************************** … … 50 48 Can be edited 51 49 **/ 50 // Set the index file so that luxbum can be more easily integrated 51 $cfg['index_file'] = 'index.php'; 52 52 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'; 56 55 57 56 // Use rewrite rules to generate url's. The url looks like 58 57 // to be a path to a real file, but it doesn't. 59 58 // When disabled, a '?/' is displayed in the url 60 $cfg['use_rewrite'] = true;59 $cfg['use_rewrite'] = false; 61 60 62 61 // Set the date format to display dates in luxbum. … … 98 97 // Driver to use to generate thumbs 99 98 // Choices : gd / imagemagick 100 $cfg['image_generation_driver'] = 'imagemagick'; 101 102 99 $cfg['image_generation_driver'] = 'gd'; 103 100 104 101
