Fix typos (bug #1597137).
[phpmyadmin/last10db.git] / config.sample.inc.php
blobb6f549cdefe0dd1ded100ccdaec79f03fc73cc85
1 <?php
3 /* $Id$ */
4 // vim: expandtab sw=4 ts=4 sts=4:
6 /**
7 * phpMyAdmin sample configuration, you can use it as base for
8 * manual configuration. For easier setup you can use scripts/setup.php
10 * All directives are explained in Documentation.html and on phpMyAdmin
11 * wiki <http://wiki.cihar.com>.
15 * This is needed for cookie based authentication to encrypt password in
16 * cookie
18 $cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
21 * Servers configuration
23 $i = 0;
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]['connect_type'] = 'tcp';
34 $cfg['Servers'][$i]['compress'] = false;
35 /* Select mysqli if your server has it */
36 $cfg['Servers'][$i]['extension'] = 'mysql';
37 /* User for advanced features */
38 // $cfg['Servers'][$i]['controluser'] = 'pma';
39 // $cfg['Servers'][$i]['controlpass'] = 'pmapass';
40 /* Advanced phpMyAdmin features */
41 // $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
42 // $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
43 // $cfg['Servers'][$i]['relation'] = 'pma_relation';
44 // $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
45 // $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
46 // $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
47 // $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
48 // $cfg['Servers'][$i]['history'] = 'pma_history';
49 // $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
52 * End of servers configuration
56 * Directories for saving/loading files from server
58 $cfg['UploadDir'] = '';
59 $cfg['SaveDir'] = '';