From 51514c06d543f468d98ff9ccca59c4f5931f827b Mon Sep 17 00:00:00 2001 From: sharvey Date: Sat, 11 Dec 2010 06:00:12 +0000 Subject: [PATCH] BUGFIX Installer should check asp_tags is disabled, as it can cause issues with SilverStripe git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@114823 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- install.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install.php b/install.php index 2b4c939..13f2a12 100644 --- a/install.php +++ b/install.php @@ -382,6 +382,8 @@ class InstallRequirements { $this->requireDateTimezone(array('PHP Configuration', 'date.timezone set and valid', 'date.timezone option in php.ini must be set in PHP 5.3.0+', ini_get('date.timezone'))); } + $this->suggestPHPSetting('asp_tags', array(''), array('PHP Configuration', 'asp_tags option turned off', 'This should be turned off as it can cause issues with SilverStripe')); + // Check memory allocation $this->requireMemory(32*1024*1024, 64*1024*1024, array("PHP Configuration", "Memory allocated (PHP config option 'memory_limit')", "SilverStripe needs a minimum of 32M allocated to PHP, but recommends 64M.", ini_get("memory_limit")));