BLOB streaming clarification
[phpmyadmin/crack.git] / config.sample.inc.php
blob179d6467ca21a17a62fd2943c327473fa8d27d3b
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$
14 * This is needed for cookie based authentication to encrypt password in
15 * cookie
17 $cfg['blowfish_secret'] = ''; /* 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 /* Select mysqli if your server has it */
35 $cfg['Servers'][$i]['extension'] = 'mysql';
37 /* rajk - for blobstreaming */
38 $cfg['Servers'][$i]['bs_garbage_threshold'] = 50;
39 $cfg['Servers'][$i]['bs_repository_threshold'] = '32M';
40 $cfg['Servers'][$i]['bs_temp_blob_timeout'] = 600;
41 $cfg['Servers'][$i]['bs_temp_log_threshold'] = '32M';
43 /* User for advanced features */
44 // $cfg['Servers'][$i]['controluser'] = 'pma';
45 // $cfg['Servers'][$i]['controlpass'] = 'pmapass';
46 /* Advanced phpMyAdmin features */
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]['designer_coords'] = 'pma_designer_coords';
56 /* Contrib / Swekey authentication */
57 // $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
60 * End of servers configuration
64 * Directories for saving/loading files from server
66 $cfg['UploadDir'] = '';
67 $cfg['SaveDir'] = '';