forked from Lainports/freebsd-ports
Changelog: Welcome to the first public alpha of phpMyAdmin 5.0.0. This release features a great number of new features and bug fixes. With this release, we are removing support of old PHP versions (5.5, 5.6, 7.0, and HHVM). These versions are outdated and are no longer supported by the PHP team. Detailed requirement information is available in the documentation included with the download or at https://docs.phpmyadmin.net/en/latest/require.html. As shown at https://www.phpmyadmin.net/downloads/#support our current branch of 4.9.x is planned to remain supported for some time in an LTS capacity. Some of the changes and new features include: * Enable columns names by default for CSV exports * Add Metro theme * Automatically add the index when creating an auto increment column * Improvements to exporting views * Prompt the user for confirmation before running an UPDATE query with no WHERE clause * Improvements to how errors are show to the user (including allowing easier copying of the error text to the clipboard) * Added keystrokes to clear the line (ctrl+l) and clear the entire console window (ctrl+u) * Use charset 'windows-1252' when export format is MS Excel There are several more changes, please refer to the ChangeLog file included with the release for full details. Known shortcomings: Due to changes in the MySQL authentication method, PHP versions prior to 7.4 are unable to authenticate to a MySQL 8.0 or newer server (our tests show the problem actually began with MySQL 8.0.11). This relates to a PHP bug https://bugs.php.net/bug.php?id=76243. There is a workaround, that is to set your user account to use the current-style password hash method, mysql_native_password. This unfortunate lack of coordination has caused the incompatibility to affect all PHP applications, not just phpMyAdmin. For more details, you can see our bug tracker item at https://github.com/phpmyadmin/phpmyadmin/issues/14220. Downloads are available now at https://phpmyadmin.net/downloads/ Our work would not be possible without the donations of our generous sponsor, and this release in particular is brought to you thanks to the hard work of our Google Summer of Code students and many other contributors. For the team, Isaac Sponsored by: Netzkommune GmbH
48 lines
1.2 KiB
Text
48 lines
1.2 KiB
Text
[
|
|
{ type: install
|
|
message: <<EOM
|
|
%%PKGNAME%% has been installed into:
|
|
|
|
%%WWWDIR%%
|
|
|
|
Please edit config.inc.php to suit your needs.
|
|
|
|
To make phpMyAdmin available through your web site, I suggest
|
|
that you add something like the following to httpd.conf:
|
|
|
|
For Apache versions earlier than 2.4:
|
|
|
|
Alias /phpmyadmin/ "%%WWWDIR%%/"
|
|
|
|
<Directory "%%WWWDIR%%/">
|
|
Options none
|
|
AllowOverride Limit
|
|
|
|
Order Deny,Allow
|
|
Deny from all
|
|
Allow from 127.0.0.1 .example.com
|
|
</Directory>
|
|
|
|
For Apache version 2.4.x or above:
|
|
|
|
Alias /phpmyadmin/ "%%WWWDIR%%/"
|
|
|
|
<Directory "%%WWWDIR%%/">
|
|
Options None
|
|
AllowOverride Limit
|
|
|
|
Require local
|
|
Require host .example.com
|
|
</Directory>
|
|
|
|
SECURITY NOTE: phpMyAdmin is an administrative tool that has had several
|
|
remote vulnerabilities discovered in the past, some allowing remote
|
|
attackers to execute arbitrary code with the web server's user credential.
|
|
All known problems have been fixed, but the FreeBSD Security Team strongly
|
|
advises that any instance be protected with an additional protection layer,
|
|
e.g. a different access control mechanism implemented by the web server
|
|
as shown in the example. Do consider enabling phpMyAdmin only when it
|
|
is in use.
|
|
EOM
|
|
}
|
|
]
|