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 +- php.ini-production | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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. diff --git a/php.ini-production b/php.ini-production index 2df1264adf..46b06eef10 100644 --- a/php.ini-production +++ b/php.ini-production @@ -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