Translated using Weblate.
[phpmyadmin.git] / config.sample.inc.php
bloba98d5480223a10f6e5c6271e39b89a9d709ecc34
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'] = 'a8b7c6d'; /* 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 mysql if your server does not have mysqli */
35 $cfg['Servers'][$i]['extension'] = 'mysqli';
36 $cfg['Servers'][$i]['AllowNoPassword'] = false;
39 * phpMyAdmin configuration storage settings.
42 /* User used to manipulate with storage */
43 // $cfg['Servers'][$i]['controlhost'] = '';
44 // $cfg['Servers'][$i]['controluser'] = 'pma';
45 // $cfg['Servers'][$i]['controlpass'] = 'pmapass';
47 /* Storage database and tables */
48 // $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
49 // $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
50 // $cfg['Servers'][$i]['relation'] = 'pma_relation';
51 // $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
52 // $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
53 // $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
54 // $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
55 // $cfg['Servers'][$i]['history'] = 'pma_history';
56 // $cfg['Servers'][$i]['table_uiprefs'] = 'pma_table_uiprefs';
57 // $cfg['Servers'][$i]['tracking'] = 'pma_tracking';
58 // $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
59 // $cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
60 // $cfg['Servers'][$i]['recent'] = 'pma_recent';
61 // $cfg['Servers'][$i]['table_uiprefs'] = 'pma_table_uiprefs';
62 /* Contrib / Swekey authentication */
63 // $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
66 * End of servers configuration
70 * Directories for saving/loading files from server
72 $cfg['UploadDir'] = '';
73 $cfg['SaveDir'] = '';
75 /**
76 * Defines whether a user should be displayed a "show all (records)"
77 * button in browse mode or not.
78 * default = false
80 //$cfg['ShowAll'] = true;
82 /**
83 * Number of rows displayed when browsing a result set. If the result
84 * set contains more rows, "Previous" and "Next".
85 * default = 30
87 //$cfg['MaxRows'] = 50;
89 /**
90 * Use graphically less intense menu tabs
91 * default = false
93 //$cfg['LightTabs'] = true;
95 /**
96 * disallow editing of binary fields
97 * valid values are:
98 * false allow editing
99 * 'blob' allow editing except for BLOB fields
100 * 'all' disallow editing
101 * default = blob
103 //$cfg['ProtectBinary'] = 'false';
106 * Default language to use, if not browser-defined or user-defined
107 * (you find all languages in the locale folder)
108 * uncomment the desired line:
109 * default = 'en'
111 //$cfg['DefaultLang'] = 'en';
112 //$cfg['DefaultLang'] = 'de';
115 * default display direction (horizontal|vertical|horizontalflipped)
117 //$cfg['DefaultDisplay'] = 'vertical';
121 * How many columns should be used for table display of a database?
122 * (a value larger than 1 results in some information being hidden)
123 * default = 1
125 //$cfg['PropertiesNumColumns'] = 2;
128 * Set to true if you want DB-based query history.If false, this utilizes
129 * JS-routines to display query history (lost by window close)
131 * This requires configuration storage enabled, see above.
132 * default = false
134 //$cfg['QueryHistoryDB'] = true;
137 * When using DB-based query history, how many entries should be kept?
139 * default = 25
141 //$cfg['QueryHistoryMax'] = 100;
144 * You can find more configuration options in Documentation.html
145 * or here: http://wiki.phpmyadmin.net/pma/Config