aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorJeremy Chadwick <koitsu@FreeBSD.org>2007-12-15 15:35:53 +0000
committerJeremy Chadwick <koitsu@FreeBSD.org>2007-12-15 15:35:53 +0000
commit759a83bf96be34c59b1e64d913acd2e4334fc77f (patch)
tree1fb1e094e2db2524cb072539a0049e3490052657 /UPDATING
parent167a189f01dded8546fb502ebf93fc8d7b753f36 (diff)
downloadports-759a83bf96be34c59b1e64d913acd2e4334fc77f.tar.gz
ports-759a83bf96be34c59b1e64d913acd2e4334fc77f.zip
Entry describing recent changes to www/suphp, which solicits the need
for some Apache httpd.conf modifications.
Notes
Notes: svn path=/head/; revision=203740
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING30
1 files changed, 30 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index 6567aed124f2..ec138973dfda 100644
--- a/UPDATING
+++ b/UPDATING
@@ -6,6 +6,36 @@ You should get into the habit of checking this file for changes each
time you update your ports collection, before attempting any port
upgrades.
+20071215:
+ AFFECTS: users of www/suphp
+ AUTHOR: koitsu@FreeBSD.org
+
+ The suPHP port has been upgraded to 0.6.2. This update requires
+ modifications to your Apache httpd.conf, as the new version of suPHP does
+ things differently than the previous version -- particularly in regards
+ to how AddHandler is used.
+
+ Previously, enabling suPHP was as simple as:
+
+ suPHP_Engine on
+ AddType application/x-httpd-php .php
+ AddHandler x-httpd-php .php
+
+ With suPHP 0.6.2, these should be changed to:
+
+ suPHP_Engine on
+ AddType application/x-httpd-php .php
+ suPHP_AddHandler application/x-httpd-php
+
+ If you forget this change, your PHP content will likely be offered as
+ downloadable content and not parsed by the PHP interpreter!
+
+ Additionally, the new version uses a configuration file vs. compile-time
+ settings. The configuration file is /usr/local/etc/suphp.conf, and a
+ working example installed as /usr/local/etc/suphp.conf-example. It's
+ important that the MIME type under the [handlers] section matches what
+ the type passed to suPHP_AddHandler in your Apache configuration.
+
20071101:
AFFECTS: users of x11/nvidia-driver
AUTHOR: danfe@FreeBSD.org