]> granicus.if.org Git - php/commitdiff
- note about allow_url_include
authorMichael Wallner <mike@php.net>
Mon, 24 Jul 2006 12:15:28 +0000 (12:15 +0000)
committerMichael Wallner <mike@php.net>
Mon, 24 Jul 2006 12:15:28 +0000 (12:15 +0000)
README.UPDATE_5_2

index 77e022f4cefe5ad90bc0123f687cd0274c8a0197..06c569ca6c2d55f9113473b496b8f793b746c5c8 100644 (file)
@@ -40,3 +40,12 @@ PHP 5.2 Update info or NEWS explained
   no longer work for a file with the name 'data' accessed without any path. IF
   you need to do so you have to prefix the filename with the "file:" protocol.
   For the functionality itself look here http://www.faqs.org/rfcs/rfc2397.html.
+
+- Added allow_url_include ini directive to complement allow_url_fopen. (Rasmus)
+
+  With this option one can now distinguish between standard file operations on
+  remote files and inclusion of remote files.  While the former is usually
+  desired, the latter implies security risks if used naivly.  Starting with
+  PHP-5.2 it is now possible to allow standard file operations while
+  dissalowing inclusion of remote files, which will also be the default
+  configuration.