summaryrefslogtreecommitdiff
path: root/install_checks.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2005-07-17 17:36:05 +0000
committerMax Kremmel <xing@synapse.plus.com>2005-07-17 17:36:05 +0000
commit303cb7200c2ef868b25113af4d524122807dc2d5 (patch)
tree8fa6131147fd80c04fd1cc1a964d64b1da15a0ea /install_checks.php
parent54937494744116492a4392f0cfb7fb9b625b124c (diff)
downloadinstall-303cb7200c2ef868b25113af4d524122807dc2d5.tar.gz
install-303cb7200c2ef868b25113af4d524122807dc2d5.tar.bz2
install-303cb7200c2ef868b25113af4d524122807dc2d5.zip
Merge recent changes from R1 to HEAD - never doing this again.
Diffstat (limited to 'install_checks.php')
-rw-r--r--install_checks.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/install_checks.php b/install_checks.php
index b90f207..aa368b5 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.3 2005/06/28 07:45:45 spiderr Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_install/install_checks.php,v 1.4 2005/07/17 17:36:04 squareing Exp $
* @package install
* @subpackage functions
*/
@@ -119,6 +119,7 @@ function check_settings() {
$recommended[$i]['passed'] = TRUE;
} else {
$recommended[$i]['passed'] = FALSE;
+ $smarty->assign( 'memory_warning', TRUE );
}
$i++;
// now continue with easy toggle checks
@@ -148,6 +149,7 @@ function check_settings() {
$php_ini_gets = array(
array( '<strong>Maximum post size</strong> will restrict the size of files when you upload a file using a form.','post_max_size' ),
array( '<strong>Upload max filesize</strong> is related to maximim post size and will also limit the size of uploads.','upload_max_filesize' ),
+ array( '<strong>Maximum execution time</strong> is related to time outs in PHP - affects database upgrades and backups.','max_execution_time' ),
);
foreach( $php_ini_gets as $php_ini_get ) {
$show[] = $php_ini_get[0].'<br />This value is set to <strong>'.ini_get( $php_ini_get[1] ).'</strong>';