|
511 | 511 | 'default' => 'n', |
512 | 512 | 'value' => array(0 => 'n',1 => 'y') |
513 | 513 | ), |
| 514 | + 'pm_max_children' => array ( |
| 515 | + 'datatype' => 'INTEGER', |
| 516 | + 'formtype' => 'TEXT', |
| 517 | + 'validators' => array ( 0 => array ( 'type' => 'REGEX', |
| 518 | + 'regex' => '/^([1-9][0-9]{0,10})$/', |
| 519 | + 'errmsg'=> 'pm_max_children_error_regex'), |
| 520 | + ), |
| 521 | + 'default' => '50', |
| 522 | + 'value' => '', |
| 523 | + 'width' => '3', |
| 524 | + 'maxlength' => '3' |
| 525 | + ), |
| 526 | + 'pm_start_servers' => array ( |
| 527 | + 'datatype' => 'INTEGER', |
| 528 | + 'formtype' => 'TEXT', |
| 529 | + 'validators' => array ( 0 => array ( 'type' => 'REGEX', |
| 530 | + 'regex' => '/^([1-9][0-9]{0,10})$/', |
| 531 | + 'errmsg'=> 'pm_start_servers_error_regex'), |
| 532 | + ), |
| 533 | + 'default' => '20', |
| 534 | + 'value' => '', |
| 535 | + 'width' => '3', |
| 536 | + 'maxlength' => '3' |
| 537 | + ), |
| 538 | + 'pm_min_spare_servers' => array ( |
| 539 | + 'datatype' => 'INTEGER', |
| 540 | + 'formtype' => 'TEXT', |
| 541 | + 'validators' => array ( 0 => array ( 'type' => 'REGEX', |
| 542 | + 'regex' => '/^([1-9][0-9]{0,10})$/', |
| 543 | + 'errmsg'=> 'pm_min_spare_servers_error_regex'), |
| 544 | + ), |
| 545 | + 'default' => '5', |
| 546 | + 'value' => '', |
| 547 | + 'width' => '3', |
| 548 | + 'maxlength' => '3' |
| 549 | + ), |
| 550 | + 'pm_max_spare_servers' => array ( |
| 551 | + 'datatype' => 'INTEGER', |
| 552 | + 'formtype' => 'TEXT', |
| 553 | + 'validators' => array ( 0 => array ( 'type' => 'REGEX', |
| 554 | + 'regex' => '/^([1-9][0-9]{0,10})$/', |
| 555 | + 'errmsg'=> 'pm_max_spare_servers_error_regex'), |
| 556 | + ), |
| 557 | + 'default' => '35', |
| 558 | + 'value' => '', |
| 559 | + 'width' => '3', |
| 560 | + 'maxlength' => '3' |
| 561 | + ), |
514 | 562 | 'php_open_basedir' => array ( |
515 | 563 | 'datatype' => 'VARCHAR', |
516 | 564 | 'formtype' => 'TEXT', |
|
0 commit comments