From 6b7d4bd32264c0cd511652772fff52ae97a483c1 Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Thu, 8 Dec 2011 14:57:02 +0000 Subject: [PATCH] Uhh.. Can't believe noone noticed the gc option was missing from our ini files --- php.ini-development | 4 ++++ php.ini-production | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/php.ini-development b/php.ini-development index bd3eefcfffc..fc04d859184 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 77caca1021f..444a843976e 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.