diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-12-28 22:38:04 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-12-28 22:38:04 +0000 |
| commit | 4de974b57ca13de1a1792e3101448a5985951b34 (patch) | |
| tree | 5f9a4672f3c82d923eede2ee6a37bfa2fae363df | |
| parent | 1c44ec8e47c3f404ffdbaf4c04f9685bcebd7932 (diff) | |
| download | install-4de974b57ca13de1a1792e3101448a5985951b34.tar.gz install-4de974b57ca13de1a1792e3101448a5985951b34.tar.bz2 install-4de974b57ca13de1a1792e3101448a5985951b34.zip | |
increase memory_limit to 16MB
| -rw-r--r-- | install_checks.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install_checks.php b/install_checks.php index 8a3c305..d949c2e 100644 --- a/install_checks.php +++ b/install_checks.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_install/install_checks.php,v 1.14 2006/12/27 15:17:52 squareing Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_install/install_checks.php,v 1.15 2006/12/28 22:38:04 squareing Exp $ * @package install * @subpackage functions */ @@ -121,7 +121,7 @@ function check_settings() { $i = 0; // recommended php toggles - these don't need explicit explanations on how to rectify them // start with special cases - $recommended[$i] = array( 'Memory Limit','memory_limit','shouldbe' => 'at least 8M','actual' => get_cfg_var( 'memory_limit' ) ); + $recommended[$i] = array( 'Memory Limit','memory_limit','shouldbe' => 'at least 16M', 'actual' => get_cfg_var( 'memory_limit' ) ); if( eregi_replace( 'M','',get_cfg_var( 'memory_limit' ) ) > 15 ) { $recommended[$i]['passed'] = TRUE; } else { |
