Update to 4.1.2

- Add instructions for more recent verions of Apache to
    pkg-message (1)

Release Notes:	http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.1.2/phpMyAdmin-4.1.2-notes.html/view
Submitted by:	poinsot.julien@gmail.com (1)
This commit is contained in:
Matthew Seaman
2013-12-23 22:58:24 +00:00
parent 634946a66f
commit 330a78b248
3 changed files with 17 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= phpMyAdmin
DISTVERSION= 4.1.1
DISTVERSION= 4.1.2
CATEGORIES= databases www
MASTER_SITES= SF/${PORTNAME:L}/${PORTNAME}/${DISTVERSION}
DISTNAME= ${PORTNAME}-${DISTVERSION}-all-languages

View File

@@ -1,2 +1,2 @@
SHA256 (phpMyAdmin-4.1.1-all-languages.tar.xz) = dd337ee974876f8a7fbcebbd97cf9d2d403c386d42f7e8bcea82b0263726ece6
SIZE (phpMyAdmin-4.1.1-all-languages.tar.xz) = 4828156
SHA256 (phpMyAdmin-4.1.2-all-languages.tar.xz) = 045f7813f920d740259c2dc38f90b13ed918530199c6f40f4fac5f061f36a1e8
SIZE (phpMyAdmin-4.1.2-all-languages.tar.xz) = 4892628

View File

@@ -8,6 +8,8 @@ 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%%/">
@@ -19,6 +21,18 @@ that you add something like the following to httpd.conf:
Allow from 127.0.0.1 .example.com
</Directory>
For Apache version 2.4.x or above:
Alias /phpmyadmin/ "%%WWWDIR%%/"
<Directory "%%WWWDIR%%/">
Options -All
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.