Date: Mon, 23 Dec 2013 22:58:25 +0000 (UTC) From: Matthew Seaman <matthew@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337306 - in head/databases/phpmyadmin: . files Message-ID: <201312232258.rBNMwPru085038@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: matthew Date: Mon Dec 23 22:58:24 2013 New Revision: 337306 URL: http://svnweb.freebsd.org/changeset/ports/337306 Log: 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) Modified: head/databases/phpmyadmin/Makefile head/databases/phpmyadmin/distinfo head/databases/phpmyadmin/files/pkg-message.in (contents, props changed) Modified: head/databases/phpmyadmin/Makefile ============================================================================== --- head/databases/phpmyadmin/Makefile Mon Dec 23 22:42:48 2013 (r337305) +++ head/databases/phpmyadmin/Makefile Mon Dec 23 22:58:24 2013 (r337306) @@ -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 Modified: head/databases/phpmyadmin/distinfo ============================================================================== --- head/databases/phpmyadmin/distinfo Mon Dec 23 22:42:48 2013 (r337305) +++ head/databases/phpmyadmin/distinfo Mon Dec 23 22:58:24 2013 (r337306) @@ -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 Modified: head/databases/phpmyadmin/files/pkg-message.in ============================================================================== --- head/databases/phpmyadmin/files/pkg-message.in Mon Dec 23 22:42:48 2013 (r337305) +++ head/databases/phpmyadmin/files/pkg-message.in Mon Dec 23 22:58:24 2013 (r337306) @@ -8,6 +8,8 @@ Please edit config.inc.php to suit your 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 followin 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.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312232258.rBNMwPru085038>