Update ICD9/ICD10 (yearly chore, grateful to cms for icd harvest)
[openemr.git] / phpmyadmin / config.sample.inc.php
blob0e57bc50d2368b49230bf7dd95552776ca8fe061
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 <http://docs.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 $cfg['Servers'][$i]['AllowNoPassword'] = false;
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]['designer_coords'] = 'pma__designer_coords';
58 // $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
59 // $cfg['Servers'][$i]['recent'] = 'pma__recent';
60 // $cfg['Servers'][$i]['favorite'] = 'pma__favorite';
61 // $cfg['Servers'][$i]['users'] = 'pma__users';
62 // $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
63 // $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
64 // $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
65 /* Contrib / Swekey authentication */
66 // $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
69 * End of servers configuration
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'.
82 //$cfg['RowActionType'] = 'both';
84 /**
85 * Defines whether a user should be displayed a "show all (records)"
86 * button in browse mode or not.
87 * default = false
89 //$cfg['ShowAll'] = true;
91 /**
92 * Number of rows displayed when browsing a result set. If the result
93 * set contains more rows, "Previous" and "Next".
94 * default = 30
96 //$cfg['MaxRows'] = 50;
98 /**
99 * disallow editing of binary fields
100 * valid values are:
101 * false allow editing
102 * 'blob' allow editing except for BLOB fields
103 * 'noblob' disallow editing except for BLOB fields
104 * 'all' disallow editing
105 * default = blob
107 //$cfg['ProtectBinary'] = 'false';
110 * Default language to use, if not browser-defined or user-defined
111 * (you find all languages in the locale folder)
112 * uncomment the desired line:
113 * default = 'en'
115 //$cfg['DefaultLang'] = 'en';
116 //$cfg['DefaultLang'] = 'de';
119 * default display direction (horizontal|vertical|horizontalflipped)
121 //$cfg['DefaultDisplay'] = 'vertical';
125 * How many columns should be used for table display of a database?
126 * (a value larger than 1 results in some information being hidden)
127 * default = 1
129 //$cfg['PropertiesNumColumns'] = 2;
132 * Set to true if you want DB-based query history.If false, this utilizes
133 * JS-routines to display query history (lost by window close)
135 * This requires configuration storage enabled, see above.
136 * default = false
138 //$cfg['QueryHistoryDB'] = true;
141 * When using DB-based query history, how many entries should be kept?
143 * default = 25
145 //$cfg['QueryHistoryMax'] = 100;
148 * Should error reporting be enabled for JavaScript errors
150 * default = 'ask'
152 //$cfg['SendErrorReports'] = 'ask';
155 * You can find more configuration options in the documentation
156 * in the doc/ folder or at <http://docs.phpmyadmin.net/>.