Skip to content

Commit a3d337a

Browse files
authored
📦 Add phpMyAdmin 5.2.3 release to module (#12)
1 parent 062fad2 commit a3d337a

File tree

3 files changed

+147
-1
lines changed

3 files changed

+147
-1
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
phpmyadminVersion = "5.2.3"
2+
phpmyadminConf = "config.inc.php"
3+
4+
bundleRelease = "@RELEASE_VERSION@"
Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
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/
6+
*
7+
* All directives are explained in documentation in the doc/ folder
8+
* or at <https://docs.phpmyadmin.net/>.
9+
*
10+
* @package PhpMyAdmin
11+
*/
12+
13+
/*
14+
* This is needed for cookie based authentication to encrypt password in
15+
* cookie. Needs to be 32 chars long.
16+
*/
17+
$cfg['blowfish_secret'] = 'MJkN7gbnKdyEjaR0sY}C=aX/VUCZYH3T'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
18+
19+
/*
20+
* Servers configuration
21+
*/
22+
$i = 0;
23+
$mysqlPort = 3306;
24+
$mysqlRootUser = 'root';
25+
$mysqlRootPwd = '';
26+
$mariadbPort = 3307;
27+
$mariadbRootUser = 'root';
28+
$mariadbRootPwd = '';
29+
30+
/**
31+
* MySQL server
32+
*/
33+
$i++;
34+
35+
$cfg['Servers'][$i]['verbose'] = 'MySQL port ' . $mysqlPort;
36+
$cfg['Servers'][$i]['port'] = $mysqlPort;
37+
$cfg['Servers'][$i]['user'] = $mysqlRootUser;
38+
$cfg['Servers'][$i]['password'] = $mysqlRootPwd;
39+
$cfg['Servers'][$i]['auth_type'] = 'cookie';
40+
$cfg['Servers'][$i]['host'] = '127.0.0.1';
41+
$cfg['Servers'][$i]['connect_type'] = 'tcp';
42+
$cfg['Servers'][$i]['compress'] = false;
43+
$cfg['Servers'][$i]['extension'] = 'mysqli';
44+
$cfg['Servers'][$i]['AllowNoPassword'] = true;
45+
46+
/**
47+
* MariaDB server
48+
*/
49+
$i++;
50+
51+
$cfg['Servers'][$i]['verbose'] = 'MariaDB port ' . $mariadbPort;
52+
$cfg['Servers'][$i]['port'] = $mariadbPort;
53+
$cfg['Servers'][$i]['user'] = $mariadbRootUser;
54+
$cfg['Servers'][$i]['password'] = $mariadbRootPwd;
55+
$cfg['Servers'][$i]['auth_type'] = 'cookie';
56+
$cfg['Servers'][$i]['host'] = '127.0.0.1';
57+
$cfg['Servers'][$i]['connect_type'] = 'tcp';
58+
$cfg['Servers'][$i]['compress'] = false;
59+
$cfg['Servers'][$i]['extension'] = 'mysqli';
60+
$cfg['Servers'][$i]['AllowNoPassword'] = true;
61+
62+
/*
63+
* End of servers configuration
64+
*/
65+
66+
/*
67+
* Directories for saving/loading files from server
68+
*/
69+
$cfg['UploadDir'] = '';
70+
$cfg['SaveDir'] = '';
71+
72+
/**
73+
* Defines whether a user should be displayed a "show all (records)"
74+
* button in browse mode or not.
75+
* default = false
76+
*/
77+
//$cfg['ShowAll'] = true;
78+
79+
/**
80+
* Number of rows displayed when browsing a result set. If the result
81+
* set contains more rows, "Previous" and "Next".
82+
* default = 30
83+
*/
84+
//$cfg['MaxRows'] = 50;
85+
86+
/**
87+
* disallow editing of binary fields
88+
* valid values are:
89+
* false allow editing
90+
* 'blob' allow editing except for BLOB fields
91+
* 'noblob' disallow editing except for BLOB fields
92+
* 'all' disallow editing
93+
* default = blob
94+
*/
95+
//$cfg['ProtectBinary'] = 'false';
96+
97+
/**
98+
* Default language to use, if not browser-defined or user-defined
99+
* (you find all languages in the locale folder)
100+
* uncomment the desired line:
101+
* default = 'en'
102+
*/
103+
//$cfg['DefaultLang'] = 'en';
104+
//$cfg['DefaultLang'] = 'de';
105+
106+
/**
107+
* default display direction (horizontal|vertical|horizontalflipped)
108+
*/
109+
//$cfg['DefaultDisplay'] = 'vertical';
110+
111+
112+
/**
113+
* How many columns should be used for table display of a database?
114+
* (a value larger than 1 results in some information being hidden)
115+
* default = 1
116+
*/
117+
//$cfg['PropertiesNumColumns'] = 2;
118+
119+
/**
120+
* Set to true if you want DB-based query history.If false, this utilizes
121+
* JS-routines to display query history (lost by window close)
122+
*
123+
* This requires configuration storage enabled, see above.
124+
* default = false
125+
*/
126+
//$cfg['QueryHistoryDB'] = true;
127+
128+
/**
129+
* When using DB-based query history, how many entries should be kept?
130+
*
131+
* default = 25
132+
*/
133+
//$cfg['QueryHistoryMax'] = 100;
134+
135+
/*
136+
* You can find more configuration options in the documentation
137+
* in the doc/ folder or at <https://docs.phpmyadmin.net/>.
138+
*/
139+
$cfg['ServerDefault'] = 1;
140+
$cfg['ProtectBinary'] = 'false';
141+
142+
?>

‎build.properties‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
bundle.name = phpmyadmin
2-
bundle.release = 2025.1.23
2+
bundle.release = 2025.11.23
33
bundle.type = apps
44
bundle.format = 7z
55

0 commit comments

Comments
 (0)