Translated using Weblate (Japanese)
[phpmyadmin.git] / config.sample.inc.php
blobc4f4df6f802bae0061d9ec0e8843ded69c974c1b
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 in the doc/ folder
8 * or at <https://docs.phpmyadmin.net/>.
10 * @package PhpMyAdmin
12 declare(strict_types=1);
14 /**
15 * This is needed for cookie based authentication to encrypt password in
16 * cookie. Needs to be 32 chars long.
18 $cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
20 /**
21 * Servers configuration
23 $i = 0;
25 /**
26 * First server
28 $i++;
29 /* Authentication type */
30 $cfg['Servers'][$i]['auth_type'] = 'cookie';
31 /* Server parameters */
32 $cfg['Servers'][$i]['host'] = 'localhost';
33 $cfg['Servers'][$i]['compress'] = false;
34 $cfg['Servers'][$i]['AllowNoPassword'] = false;
36 /**
37 * phpMyAdmin configuration storage settings.
40 /* User used to manipulate with storage */
41 // $cfg['Servers'][$i]['controlhost'] = '';
42 // $cfg['Servers'][$i]['controlport'] = '';
43 // $cfg['Servers'][$i]['controluser'] = 'pma';
44 // $cfg['Servers'][$i]['controlpass'] = 'pmapass';
46 /* Storage database and tables */
47 // $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
48 // $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
49 // $cfg['Servers'][$i]['relation'] = 'pma__relation';
50 // $cfg['Servers'][$i]['table_info'] = 'pma__table_info';
51 // $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
52 // $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
53 // $cfg['Servers'][$i]['column_info'] = 'pma__column_info';
54 // $cfg['Servers'][$i]['history'] = 'pma__history';
55 // $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
56 // $cfg['Servers'][$i]['tracking'] = 'pma__tracking';
57 // $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
58 // $cfg['Servers'][$i]['recent'] = 'pma__recent';
59 // $cfg['Servers'][$i]['favorite'] = 'pma__favorite';
60 // $cfg['Servers'][$i]['users'] = 'pma__users';
61 // $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
62 // $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
63 // $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
64 // $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
65 // $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
66 // $cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';
68 /**
69 * End of servers configuration
72 /**
73 * Directories for saving/loading files from server
75 $cfg['UploadDir'] = '';
76 $cfg['SaveDir'] = '';
78 /**
79 * Whether to display icons or text or both icons and text in table row
80 * action segment. Value can be either of 'icons', 'text' or 'both'.
81 * default = 'both'
83 //$cfg['RowActionType'] = 'icons';
85 /**
86 * Defines whether a user should be displayed a "show all (records)"
87 * button in browse mode or not.
88 * default = false
90 //$cfg['ShowAll'] = true;
92 /**
93 * Number of rows displayed when browsing a result set. If the result
94 * set contains more rows, "Previous" and "Next".
95 * Possible values: 25, 50, 100, 250, 500
96 * default = 25
98 //$cfg['MaxRows'] = 50;
101 * Disallow editing of binary fields
102 * valid values are:
103 * false allow editing
104 * 'blob' allow editing except for BLOB fields
105 * 'noblob' disallow editing except for BLOB fields
106 * 'all' disallow editing
107 * default = 'blob'
109 //$cfg['ProtectBinary'] = false;
112 * Default language to use, if not browser-defined or user-defined
113 * (you find all languages in the locale folder)
114 * uncomment the desired line:
115 * default = 'en'
117 //$cfg['DefaultLang'] = 'en';
118 //$cfg['DefaultLang'] = 'de';
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?
138 * default = 25
140 //$cfg['QueryHistoryMax'] = 100;
143 * Whether or not to query the user before sending the error report to
144 * the phpMyAdmin team when a JavaScript error occurs
146 * Available options
147 * ('ask' | 'always' | 'never')
148 * default = 'ask'
150 //$cfg['SendErrorReports'] = 'always';
153 * You can find more configuration options in the documentation
154 * in the doc/ folder or at <https://docs.phpmyadmin.net/>.