phpmyadmin.inc.php.in 777 Bytes
Newer Older
1 2
<?php
$cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
3 4
$i = 1;

5 6 7
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'Put here mysql host template key';
$cfg['Servers'][$i]['port'] = 'Put here mysql port template key';
8 9
$cfg['Servers'][$i]['only_db'] = 'Put here mysql database template key';

10 11
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
12
$cfg['Servers'][$i]['extension'] = 'mysqli';
13 14 15 16 17 18 19 20 21 22 23
$cfg['Servers'][$i]['AllowNoPassword'] = false;

/* rajk - for blobstreaming */
$cfg['Servers'][$i]['bs_garbage_threshold'] = 50;
$cfg['Servers'][$i]['bs_repository_threshold'] = '32M';
$cfg['Servers'][$i]['bs_temp_blob_timeout'] = 600;
$cfg['Servers'][$i]['bs_temp_log_threshold'] = '32M';
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';

?>