-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.inc.php
75 lines (70 loc) · 2.66 KB
/
config.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* * phpMyAdmin sample configuration, you can use it as base for
* * manual configuration. For easier setup you can use setup/
* *
* * All directives are explained in documentation in the doc/ folder
* * or at <https://docs.phpmyadmin.net/>.
* *
* * @package PhpMyAdmin
* */
/**
* * This is needed for cookie based authentication to encrypt password in
* * cookie. Needs to be 32 chars long.
* */
$cfg['blowfish_secret'] = '$2a$07$EJooQ7FWQIpYWJAMqd0mq.eRnrTTAkqpIwEv1InrJ8q0KMfAK0WLi'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
/**
* * Servers configuration
* */
$i = 0;
/**
* * First server
* */
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = false;
/**
* * phpMyAdmin configuration storage settings.
* */
/* User used to manipulate with storage */
// $cfg['Servers'][$i]['controlhost'] = '';
// // $cfg['Servers'][$i]['controlport'] = '';
// // $cfg['Servers'][$i]['controluser'] = 'pma';
// // $cfg['Servers'][$i]['controlpass'] = 'pmapass';
//
// /* Storage database and tables */
// // $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
// // $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
// // $cfg['Servers'][$i]['relation'] = 'pma__relation';
// // $cfg['Servers'][$i]['table_info'] = 'pma__table_info';
// // $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
// // $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
// // $cfg['Servers'][$i]['column_info'] = 'pma__column_info';
// // $cfg['Servers'][$i]['history'] = 'pma__history';
// // $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
// // $cfg['Servers'][$i]['tracking'] = 'pma__tracking';
// // $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
// // $cfg['Servers'][$i]['recent'] = 'pma__recent';
// // $cfg['Servers'][$i]['favorite'] = 'pma__favorite';
// // $cfg['Servers'][$i]['users'] = 'pma__users';
// // $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
// // $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
// // $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
// // $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
// // $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
// // $cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';
//
// /**
// * End of servers configuration
// */
//
// /**
// * Directories for saving/loading files from server
// */
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';