is*() methods now return boolean values;
[phpmyadmin.git] / config.sample.inc.php
blob5c3cb57fd1fc7ab4ee590bb51da1a904a4617ab5
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.cihar.com>.
10 * @version $Id$
11 * @package phpMyAdmin
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';
38 /* rajk - for blobstreaming */
39 $cfg['Servers'][$i]['bs_garbage_threshold'] = 50;
40 $cfg['Servers'][$i]['bs_repository_threshold'] = '32M';
41 $cfg['Servers'][$i]['bs_temp_blob_timeout'] = 600;
42 $cfg['Servers'][$i]['bs_temp_log_threshold'] = '32M';
44 /* User for advanced features */
45 // $cfg['Servers'][$i]['controluser'] = 'pma';
46 // $cfg['Servers'][$i]['controlpass'] = 'pmapass';
47 /* Advanced phpMyAdmin features */
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]['designer_coords'] = 'pma_designer_coords';
57 /* Contrib / Swekey authentication */
58 // $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
61 * End of servers configuration
65 * Directories for saving/loading files from server
67 $cfg['UploadDir'] = '';
68 $cfg['SaveDir'] = '';