From 2bad01e61ba2677e1e8303f9b56574ebb7ba3f00 Mon Sep 17 00:00:00 2001 From: Stanislav Malyshev Date: Sun, 14 Jul 2013 23:53:55 -0700 Subject: Fix bug #62665: add curl.cainfo to php.ini Conflicts: php.ini-development php.ini-production --- php.ini-development | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'php.ini-development') diff --git a/php.ini-development b/php.ini-development index 4ff4192f6f..aee8b4837a 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1856,6 +1856,11 @@ ldap.max_links = -1 [dba] ;dba.default_handler= +[curl] +; A default value for the CURLOPT_CAINFO option. This is required to be an +; absolute path. +;curl.cainfo = + ; Local Variables: ; tab-width: 4 ; End: -- cgit v1.2.1 From 445dffa75a1ffdbcf03670781c48fa4f88ce2ce9 Mon Sep 17 00:00:00 2001 From: Yasuo Ohgaki Date: Thu, 18 Jul 2013 14:08:28 +0900 Subject: Improve php.ini-* documentation --- php.ini-development | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'php.ini-development') diff --git a/php.ini-development b/php.ini-development index aee8b4837a..28eb9ed545 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1474,7 +1474,7 @@ session.gc_maxlifetime = 1440 ; collection through a shell script, cron entry, or some other method. ; For example, the following script would is the equivalent of ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes): -; find /path/to/sessions -cmin +24 | xargs rm +; find /path/to/sessions -cmin +24 -type f | xargs rm ; PHP 4.2 and less have an undocumented feature/bug that allows you to ; to initialize a session variable in the global scope. -- cgit v1.2.1