diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2010-04-23 15:03:13 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2010-04-23 15:03:13 +0000 |
commit | 3acf4c24e29e32e82f673183e1acb3f78d002d62 (patch) | |
tree | b2cefe5cd21b87e428432ab46ca5bc4b6f4c8b8d /lang/php52/files/patch-php.ini-recommended | |
parent | MAKE_JOBS_UNSAFE for empathy and telepathy-m-c (diff) |
PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open
Source general-purpose scripting language that is especially suited for
Web development and can be embedded into HTML. Its syntax draws upon C,
Java, and Perl, and is easy to learn. The main goal of the language is to
allow web developers to write dynamically generated webpages quickly, but
you can do much more with PHP.
WWW: http://www.php.net/
PR: 145772
Submitted by: Alex Keda
Notes
Notes:
svn path=/head/; revision=253096
Diffstat (limited to 'lang/php52/files/patch-php.ini-recommended')
-rw-r--r-- | lang/php52/files/patch-php.ini-recommended | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lang/php52/files/patch-php.ini-recommended b/lang/php52/files/patch-php.ini-recommended new file mode 100644 index 000000000000..7b648b1ea0b5 --- /dev/null +++ b/lang/php52/files/patch-php.ini-recommended @@ -0,0 +1,18 @@ +--- php.ini-recommended.orig Fri Dec 30 18:19:43 2005 ++++ php.ini-recommended Mon Oct 16 08:13:05 2006 +@@ -223,6 +223,15 @@ + ; + ; Safe Mode + ; ++; SECURITY NOTE: The FreeBSD Security Officer strongly recommend that ++; the PHP Safe Mode feature not be relied upon for security, since the ++; issues Safe Mode tries to handle cannot properly be handled in PHP ++; (primarily due to PHP's use of external libraries). While many bugs ++; in Safe Mode has been fixed it's very likely that more issues exist ++; which allows a user to bypass Safe Mode restrictions. ++; For increased security we recommend to always install the Suhosin ++; extension. ++; + safe_mode = Off + + ; By default, Safe Mode does a UID compare check when |