From: Hannes Magnusson Date: Thu, 8 Dec 2011 14:57:02 +0000 (+0000) Subject: Uhh.. Can't believe noone noticed the gc option was missing from our ini files X-Git-Tag: php-5.5.0alpha1~740 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b7d4bd32264c0cd511652772fff52ae97a483c1;p=php Uhh.. Can't believe noone noticed the gc option was missing from our ini files --- diff --git a/php.ini-development b/php.ini-development index bd3eefcfff..fc04d85918 100644 --- a/php.ini-development +++ b/php.ini-development @@ -347,6 +347,10 @@ disable_classes = ; http://php.net/realpath-cache-ttl ;realpath_cache_ttl = 120 +; Enables or disables the circular reference collector. +; http://php.net/zend.enable-gc +zend.enable_gc = On + ; If enabled, scripts may be written in encodings that are incompatible with ; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such ; encodings. To use this feature, mbstring extension must be enabled. diff --git a/php.ini-production b/php.ini-production index 77caca1021..444a843976 100644 --- a/php.ini-production +++ b/php.ini-production @@ -347,6 +347,10 @@ disable_classes = ; http://php.net/realpath-cache-ttl ;realpath_cache_ttl = 120 +; Enables or disables the circular reference collector. +; http://php.net/zend.enable-gc +zend.enable_gc = On + ; If enabled, scripts may be written in encodings that are incompatible with ; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such ; encodings. To use this feature, mbstring extension must be enabled.