Translation update done using Pootle.
[phpmyadmin/lorilee.git] / config.sample.inc.php
blobda403fd2b60e975988720d7701a9a76e9a322f2c
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * phpMyAdmin sample configuration, you can use it as base for
5 * manual configuration. For easier setup you can use setup/
7 * All directives are explained in Documentation.html and on phpMyAdmin
8 * wiki <http://wiki.phpmyadmin.net>.
10 * @package phpMyAdmin
14 * This is needed for cookie based authentication to encrypt password in
15 * cookie
17 $cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
20 * Servers configuration
22 $i = 0;
25 * First server
27 $i++;
28 /* Authentication type */
29 $cfg['Servers'][$i]['auth_type'] = 'cookie';
30 /* Server parameters */
31 $cfg['Servers'][$i]['host'] = 'localhost';
32 $cfg['Servers'][$i]['connect_type'] = 'tcp';
33 $cfg['Servers'][$i]['compress'] = false;
34 /* Select mysqli if your server has it */
35 $cfg['Servers'][$i]['extension'] = 'mysql';
36 $cfg['Servers'][$i]['AllowNoPassword'] = false;
38 /* User for advanced features */
39 // $cfg['Servers'][$i]['controluser'] = 'pma';
40 // $cfg['Servers'][$i]['controlpass'] = 'pmapass';
41 /* Advanced phpMyAdmin features */
42 // $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
43 // $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
44 // $cfg['Servers'][$i]['relation'] = 'pma_relation';
45 // $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
46 // $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
47 // $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
48 // $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
49 // $cfg['Servers'][$i]['history'] = 'pma_history';
50 // $cfg['Servers'][$i]['tracking'] = 'pma_tracking';
51 // $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
52 /* Contrib / Swekey authentication */
53 // $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
56 * End of servers configuration
60 * Directories for saving/loading files from server
62 $cfg['UploadDir'] = '';
63 $cfg['SaveDir'] = '';
65 /**
66 * Defines whether a user should be displayed a "show all (records)"
67 * button in browse mode or not.
68 * default = false
70 //$cfg['ShowAll'] = true;
72 /**
73 * Number of rows displayed when browsing a result set. If the result
74 * set contains more rows, "Previous" and "Next".
75 * default = 30
77 //$cfg['MaxRows'] = 50;
79 /**
80 * Use graphically less intense menu tabs
81 * default = false
83 //$cfg['LightTabs'] = true;
85 /**
86 * disallow editing of binary fields
87 * valid values are:
88 * false allow editing
89 * 'blob' allow editing except for BLOB fields
90 * 'all' disallow editing
91 * default = blob
93 //$cfg['ProtectBinary'] = 'false';
95 /**
96 * Default language to use, if not browser-defined or user-defined
97 * (you find all languages in the locale folder)
98 * uncomment the desired line:
99 * default = 'en'
101 //$cfg['DefaultLang'] = 'en';
102 //$cfg['DefaultLang'] = 'de';
105 * default display direction (horizontal|vertical|horizontalflipped)
107 //$cfg['DefaultDisplay'] = 'vertical';
111 * How many columns should be used for table display of a database?
112 * (a value larger than 1 results in some information being hidden)
113 * default = 1
115 //$cfg['PropertiesNumColumns'] = 2;
118 * Set to true if you want DB-based query history.If false, this utilizes
119 * JS-routines to display query history (lost by window close)
121 * This requires advanced features enabled, see above.
122 * default = false
124 //$cfg['QueryHistoryDB'] = true;
127 * When using DB-based query history, how many entries should be kept?
129 * default = 25
131 //$cfg['QueryHistoryMax'] = 100;
134 * You can find more configuration options in Documentation.html
135 * or here: http://wiki.phpmyadmin.net/pma/Config