1) Исправления в связи со сменой API MySQL
[openlib.git] / www / config_local.php
1 <?php
2     if (!isset($config))
3         $config = array();
4   
5     /*
6      * The directory containing calibre's metadata.db file, with sub-directories
7      * containing all the formats.
8      * BEWARE : it has to end with a /
9      */
10     $config['file_directory'] = '/raid/library/Books/';
11     $config['db_host'] = 'localhost';
12     $config['db_user'] = 'mydbuser';
13     $config['db_passwd'] = 'mydbpasswd';
14     
15     /*
16      * Catalog's title
17      */
18     $config['cops_title_default'] = "Книжная коллекция";
19     
20     /*
21      * use URL rewriting for downloading of ebook in HTML catalog
22      * See README for more information
23      *  1 : enable
24      *  0 : disable
25      */
26     $config['cops_use_url_rewriting'] = "0";
27     $config['cops_max_item_per_page'] = "25";
28     $config['cops_generate_invalid_opds_stream'] = "1";
29
30 ?>