This repository has been archived by the owner on Sep 10, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New release pack p8 4.0.10.20 / 4.9.1 (Issue neard/neard#423)
- Loading branch information
Showing
8 changed files
with
309 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
<?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'] = 'JnavIRZwZf9b2JYTlC8AYDhXo9HRLN1s'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */ | ||
|
||
/* | ||
* Servers configuration | ||
*/ | ||
$i = 0; | ||
$mysqlPort = 3306; | ||
$mysqlRootUser = 'root'; | ||
$mysqlRootPwd = ''; | ||
$mariadbPort = 3307; | ||
$mariadbRootUser = 'root'; | ||
$mariadbRootPwd = ''; | ||
|
||
/** | ||
* MySQL server | ||
*/ | ||
$i++; | ||
|
||
$cfg['Servers'][$i]['verbose'] = 'MySQL port ' . $mysqlPort; | ||
$cfg['Servers'][$i]['port'] = $mysqlPort; | ||
$cfg['Servers'][$i]['user'] = $mysqlRootUser; | ||
$cfg['Servers'][$i]['password'] = $mysqlRootPwd; | ||
$cfg['Servers'][$i]['auth_type'] = 'cookie'; | ||
$cfg['Servers'][$i]['host'] = '127.0.0.1'; | ||
$cfg['Servers'][$i]['connect_type'] = 'tcp'; | ||
$cfg['Servers'][$i]['compress'] = false; | ||
$cfg['Servers'][$i]['extension'] = 'mysqli'; | ||
$cfg['Servers'][$i]['AllowNoPassword'] = true; | ||
|
||
/** | ||
* MariaDB server | ||
*/ | ||
$i++; | ||
|
||
$cfg['Servers'][$i]['verbose'] = 'MariaDB port ' . $mariadbPort; | ||
$cfg['Servers'][$i]['port'] = $mariadbPort; | ||
$cfg['Servers'][$i]['user'] = $mariadbRootUser; | ||
$cfg['Servers'][$i]['password'] = $mariadbRootPwd; | ||
$cfg['Servers'][$i]['auth_type'] = 'cookie'; | ||
$cfg['Servers'][$i]['host'] = '127.0.0.1'; | ||
$cfg['Servers'][$i]['connect_type'] = 'tcp'; | ||
$cfg['Servers'][$i]['compress'] = false; | ||
$cfg['Servers'][$i]['extension'] = 'mysqli'; | ||
$cfg['Servers'][$i]['AllowNoPassword'] = true; | ||
|
||
/* | ||
* End of servers configuration | ||
*/ | ||
|
||
/* | ||
* Directories for saving/loading files from server | ||
*/ | ||
$cfg['UploadDir'] = ''; | ||
$cfg['SaveDir'] = ''; | ||
|
||
/** | ||
* Defines whether a user should be displayed a "show all (records)" | ||
* button in browse mode or not. | ||
* default = false | ||
*/ | ||
//$cfg['ShowAll'] = true; | ||
|
||
/** | ||
* Number of rows displayed when browsing a result set. If the result | ||
* set contains more rows, "Previous" and "Next". | ||
* default = 30 | ||
*/ | ||
//$cfg['MaxRows'] = 50; | ||
|
||
/** | ||
* disallow editing of binary fields | ||
* valid values are: | ||
* false allow editing | ||
* 'blob' allow editing except for BLOB fields | ||
* 'noblob' disallow editing except for BLOB fields | ||
* 'all' disallow editing | ||
* default = blob | ||
*/ | ||
//$cfg['ProtectBinary'] = 'false'; | ||
|
||
/** | ||
* Default language to use, if not browser-defined or user-defined | ||
* (you find all languages in the locale folder) | ||
* uncomment the desired line: | ||
* default = 'en' | ||
*/ | ||
//$cfg['DefaultLang'] = 'en'; | ||
//$cfg['DefaultLang'] = 'de'; | ||
|
||
/** | ||
* default display direction (horizontal|vertical|horizontalflipped) | ||
*/ | ||
//$cfg['DefaultDisplay'] = 'vertical'; | ||
|
||
|
||
/** | ||
* How many columns should be used for table display of a database? | ||
* (a value larger than 1 results in some information being hidden) | ||
* default = 1 | ||
*/ | ||
//$cfg['PropertiesNumColumns'] = 2; | ||
|
||
/** | ||
* Set to true if you want DB-based query history.If false, this utilizes | ||
* JS-routines to display query history (lost by window close) | ||
* | ||
* This requires configuration storage enabled, see above. | ||
* default = false | ||
*/ | ||
//$cfg['QueryHistoryDB'] = true; | ||
|
||
/** | ||
* When using DB-based query history, how many entries should be kept? | ||
* | ||
* default = 25 | ||
*/ | ||
//$cfg['QueryHistoryMax'] = 100; | ||
|
||
/* | ||
* You can find more configuration options in the documentation | ||
* in the doc/ folder or at <https://docs.phpmyadmin.net/>. | ||
*/ | ||
$cfg['ServerDefault'] = 1; | ||
$cfg['ProtectBinary'] = 'false'; | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
phpmyadminVersion = "4.0.10.20" | ||
phpmyadminConf = "config.inc.php" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
<?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'] = 'JnavIRZwZf9b2JYTlC8AYDhXo9HRLN1s'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */ | ||
|
||
/** | ||
* Servers configuration | ||
*/ | ||
$i = 0; | ||
$mysqlPort = 3306; | ||
$mysqlRootUser = 'root'; | ||
$mysqlRootPwd = ''; | ||
$mariadbPort = 3307; | ||
$mariadbRootUser = 'root'; | ||
$mariadbRootPwd = ''; | ||
|
||
/** | ||
* MySQL server | ||
*/ | ||
$i++; | ||
|
||
$cfg['Servers'][$i]['verbose'] = 'MySQL port ' . $mysqlPort; | ||
$cfg['Servers'][$i]['port'] = $mysqlPort; | ||
$cfg['Servers'][$i]['user'] = $mysqlRootUser; | ||
$cfg['Servers'][$i]['password'] = $mysqlRootPwd; | ||
$cfg['Servers'][$i]['auth_type'] = 'cookie'; | ||
$cfg['Servers'][$i]['host'] = '127.0.0.1'; | ||
$cfg['Servers'][$i]['connect_type'] = 'tcp'; | ||
$cfg['Servers'][$i]['compress'] = false; | ||
$cfg['Servers'][$i]['extension'] = 'mysqli'; | ||
$cfg['Servers'][$i]['AllowNoPassword'] = true; | ||
|
||
/** | ||
* MariaDB server | ||
*/ | ||
$i++; | ||
|
||
$cfg['Servers'][$i]['verbose'] = 'MariaDB port ' . $mariadbPort; | ||
$cfg['Servers'][$i]['port'] = $mariadbPort; | ||
$cfg['Servers'][$i]['user'] = $mariadbRootUser; | ||
$cfg['Servers'][$i]['password'] = $mariadbRootPwd; | ||
$cfg['Servers'][$i]['auth_type'] = 'cookie'; | ||
$cfg['Servers'][$i]['host'] = '127.0.0.1'; | ||
$cfg['Servers'][$i]['connect_type'] = 'tcp'; | ||
$cfg['Servers'][$i]['compress'] = false; | ||
$cfg['Servers'][$i]['extension'] = 'mysqli'; | ||
$cfg['Servers'][$i]['AllowNoPassword'] = true; | ||
|
||
/** | ||
* End of servers configuration | ||
*/ | ||
|
||
/** | ||
* Directories for saving/loading files from server | ||
*/ | ||
$cfg['UploadDir'] = ''; | ||
$cfg['SaveDir'] = ''; | ||
|
||
/** | ||
* Whether to display icons or text or both icons and text in table row | ||
* action segment. Value can be either of 'icons', 'text' or 'both'. | ||
* default = 'both' | ||
*/ | ||
//$cfg['RowActionType'] = 'icons'; | ||
|
||
/** | ||
* Defines whether a user should be displayed a "show all (records)" | ||
* button in browse mode or not. | ||
* default = false | ||
*/ | ||
//$cfg['ShowAll'] = true; | ||
|
||
/** | ||
* Number of rows displayed when browsing a result set. If the result | ||
* set contains more rows, "Previous" and "Next". | ||
* Possible values: 25, 50, 100, 250, 500 | ||
* default = 25 | ||
*/ | ||
//$cfg['MaxRows'] = 50; | ||
|
||
/** | ||
* Disallow editing of binary fields | ||
* valid values are: | ||
* false allow editing | ||
* 'blob' allow editing except for BLOB fields | ||
* 'noblob' disallow editing except for BLOB fields | ||
* 'all' disallow editing | ||
* default = 'blob' | ||
*/ | ||
//$cfg['ProtectBinary'] = false; | ||
|
||
/** | ||
* Default language to use, if not browser-defined or user-defined | ||
* (you find all languages in the locale folder) | ||
* uncomment the desired line: | ||
* default = 'en' | ||
*/ | ||
//$cfg['DefaultLang'] = 'en'; | ||
//$cfg['DefaultLang'] = 'de'; | ||
|
||
/** | ||
* How many columns should be used for table display of a database? | ||
* (a value larger than 1 results in some information being hidden) | ||
* default = 1 | ||
*/ | ||
//$cfg['PropertiesNumColumns'] = 2; | ||
|
||
/** | ||
* Set to true if you want DB-based query history.If false, this utilizes | ||
* JS-routines to display query history (lost by window close) | ||
* | ||
* This requires configuration storage enabled, see above. | ||
* default = false | ||
*/ | ||
//$cfg['QueryHistoryDB'] = true; | ||
|
||
/** | ||
* When using DB-based query history, how many entries should be kept? | ||
* default = 25 | ||
*/ | ||
//$cfg['QueryHistoryMax'] = 100; | ||
|
||
/** | ||
* Whether or not to query the user before sending the error report to | ||
* the phpMyAdmin team when a JavaScript error occurs | ||
* | ||
* Available options | ||
* ('ask' | 'always' | 'never') | ||
* default = 'ask' | ||
*/ | ||
//$cfg['SendErrorReports'] = 'always'; | ||
|
||
/** | ||
* You can find more configuration options in the documentation | ||
* in the doc/ folder or at <https://docs.phpmyadmin.net/>. | ||
*/ | ||
$cfg['ServerDefault'] = 1; | ||
$cfg['ProtectBinary'] = 'false'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
phpmyadminVersion = "4.9.1" | ||
phpmyadminConf = "config.inc.php" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
php52 = "4.0.10.20" | ||
php53 = "4.0.10.20" | ||
php55 = "4.9.1" | ||
|
||
bundleRelease = "@RELEASE_VERSION@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
bundle.name = phpmyadmin | ||
bundle.release = r9 | ||
bundle.release = r10 | ||
bundle.type = apps | ||
bundle.format = 7z | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters