3.3.9.1 release
[phpmyadmin/madhuracj.git] / config.sample.inc.php
blob436421ed0f33d6298146dd6af677ac89b9d070fa
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 * @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';
37 $cfg['Servers'][$i]['AllowNoPassword'] = false;
39 /* rajk - for blobstreaming */
40 $cfg['Servers'][$i]['bs_garbage_threshold'] = 50;
41 $cfg['Servers'][$i]['bs_repository_threshold'] = '32M';
42 $cfg['Servers'][$i]['bs_temp_blob_timeout'] = 600;
43 $cfg['Servers'][$i]['bs_temp_log_threshold'] = '32M';
45 /* User for advanced features */
46 // $cfg['Servers'][$i]['controluser'] = 'pma';
47 // $cfg['Servers'][$i]['controlpass'] = 'pmapass';
48 /* Advanced phpMyAdmin features */
49 // $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
50 // $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
51 // $cfg['Servers'][$i]['relation'] = 'pma_relation';
52 // $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
53 // $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
54 // $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
55 // $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
56 // $cfg['Servers'][$i]['history'] = 'pma_history';
57 // $cfg['Servers'][$i]['tracking'] = 'pma_tracking';
58 // $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
59 /* Contrib / Swekey authentication */
60 // $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
63 * End of servers configuration
67 * Directories for saving/loading files from server
69 $cfg['UploadDir'] = '';
70 $cfg['SaveDir'] = '';