diff options
author | matthew <matthew@FreeBSD.org> | 2013-12-24 06:58:24 +0800 |
---|---|---|
committer | matthew <matthew@FreeBSD.org> | 2013-12-24 06:58:24 +0800 |
commit | b0ab26b53495996bf55c7b2677c79e7129683a1d (patch) | |
tree | 2ae425e293d40b12d35b2c09ddaf90a7d0e73ec7 | |
parent | 2f41e5d0ce1c724ec8fcb7a903b461afd5fc1416 (diff) | |
download | freebsd-ports-gnome-b0ab26b53495996bf55c7b2677c79e7129683a1d.tar.gz freebsd-ports-gnome-b0ab26b53495996bf55c7b2677c79e7129683a1d.tar.zst freebsd-ports-gnome-b0ab26b53495996bf55c7b2677c79e7129683a1d.zip |
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)
-rw-r--r-- | databases/phpmyadmin/Makefile | 2 | ||||
-rw-r--r-- | databases/phpmyadmin/distinfo | 4 | ||||
-rw-r--r-- | databases/phpmyadmin/files/pkg-message.in | 14 |
3 files changed, 17 insertions, 3 deletions
diff --git a/databases/phpmyadmin/Makefile b/databases/phpmyadmin/Makefile index 9bff35f59ffe..3997f72e9528 100644 --- a/databases/phpmyadmin/Makefile +++ b/databases/phpmyadmin/Makefile @@ -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 diff --git a/databases/phpmyadmin/distinfo b/databases/phpmyadmin/distinfo index 32d768c2f13c..f92f37053c83 100644 --- a/databases/phpmyadmin/distinfo +++ b/databases/phpmyadmin/distinfo @@ -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 diff --git a/databases/phpmyadmin/files/pkg-message.in b/databases/phpmyadmin/files/pkg-message.in index 746af63a5999..964a4bfb720b 100644 --- a/databases/phpmyadmin/files/pkg-message.in +++ b/databases/phpmyadmin/files/pkg-message.in @@ -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. |