Code

Modified memory_limit check (8M -> 16M)
authorjanw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 27 May 2005 09:56:38 +0000 (09:56 +0000)
committerjanw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 27 May 2005 09:56:38 +0000 (09:56 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@474 594d385d-05f5-0310-b6e9-bd551577e9d8

include/setup_checks.inc

index 3b899847c52190043f8b8111be8c981d55cb899c..a3c8c146831c6e5749987516b157a140ec71924c 100644 (file)
@@ -364,11 +364,11 @@ function perform_additional_checks(&$faults)
       $max_execution_time['local_value'],0,false);
 
   /* memory_limit */
-  if($memory_limit['local_value'] < 8 ){
+  if($memory_limit['local_value'] < 16 ){
     $memory_limit['local_value']=false;
   }
   $msg.= check (  $faults, _("php.ini check -> memory_limit"),
-      _("GOsa needs at least 8MB of memory, less will cause unpredictable errors! An optimal setting would be 16MB, increase it for larger setups."),
+      _("GOsa needs at least 16MB of memory, less will cause unpredictable errors! Increase it for larger setups."),
       !$implicit_flush['local_value'],0,false);
 
   /* expose_php */