Skip to content
This repository has been archived by the owner on Sep 10, 2023. It is now read-only.

Commit

Permalink
New release pack p8 4.0.10.20 / 4.9.1 (Issue neard/neard#423)
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-max committed Oct 16, 2019
1 parent 1b6cac8 commit 534289f
Show file tree
Hide file tree
Showing 8 changed files with 309 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## r8 (2018/10/06)
## r10 (2019/10/16)

* New release pack p8 4.0.10.20 / 4.9.1 (Issue neard/neard#423)

## r9 (2018/10/06)

* New release pack p7 4.0.10.20 / 4.8.3 (Issue neard/neard#394)

Expand Down
142 changes: 142 additions & 0 deletions bin/phpmyadmin4p8/4.0.10.20/config.inc.php
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';

?>
2 changes: 2 additions & 0 deletions bin/phpmyadmin4p8/4.0.10.20/neard.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
phpmyadminVersion = "4.0.10.20"
phpmyadminConf = "config.inc.php"
151 changes: 151 additions & 0 deletions bin/phpmyadmin4p8/4.9.1/config.inc.php
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';
2 changes: 2 additions & 0 deletions bin/phpmyadmin4p8/4.9.1/neard.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
phpmyadminVersion = "4.9.1"
phpmyadminConf = "config.inc.php"
5 changes: 5 additions & 0 deletions bin/phpmyadmin4p8/neard.conf
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@"
2 changes: 1 addition & 1 deletion build.properties
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

Expand Down
1 change: 1 addition & 0 deletions releases.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
4p5 = https://github.com/neard/module-phpmyadmin/releases/download/r7/neard-phpmyadmin-4p5-r7.7z
4p6 = https://github.com/neard/module-phpmyadmin/releases/download/r8/neard-phpmyadmin-4p6-r8.7z
4p7 = https://github.com/neard/module-phpmyadmin/releases/download/r9/neard-phpmyadmin-4p7-r9.7z
4p8 = https://github.com/neard/module-phpmyadmin/releases/download/r10/neard-phpmyadmin-4p8-r10.7z

0 comments on commit 534289f

Please sign in to comment.