This could very well be pilot error and i apologise in advance if i have done or failed to do something very simple that has resulted in this!
I have followed the installation instructions and on going to mysite.com/app/index.php to install get the following error:
ASSERTION FAILED in /home/content/08/8802508/html/planner/app/protected/modules/install/utils/InstallUtil.php on line 572: assert('self::isVersion($actualVersion)');
PHP Error
assert() [<a href='function.assert'>function.assert</a>]: Assertion "self::isVersion($actualVersion)" failed
/home/content/08/8802508/html/planner/app/protected/modules/install/utils/InstallUtil.php(572)
560 $contents);
561 file_put_contents($perInstanceConfigFile, $contents);
562 }
563
564 public static function isVersion($version)
565 {
566 return preg_match('/^\d+\.\d+(.\d+)?/', $version) == 1; // Not Coding Standard
567 }
568
569 protected static function checkVersion($minimumRequiredVersion, $actualVersion)
570 {
571 assert('self::isVersion($minimumRequiredVersion)');
572 assert('self::isVersion($actualVersion)');
573 if (preg_match('/^\d+\.\d+$/', $actualVersion) == 1) // Not Coding Standard
574 {
575 $actualVersion .= '.0';
576 }
577 return version_compare($actualVersion, $minimumRequiredVersion) >= 0;
578 }
579
580 protected static function getVersionFromPhpInfo($regEx)
581 {
582 ob_start();
583 phpinfo();
584 $phpInfo = trim(ob_get_clean());
Stack Trace
#0
–
[/center] /home/content/08/8802508/html/planner/app/protected/modules/install/utils/InstallUtil.php(572): assert("self::isVersion($actualVersion)")567 }
568
569 protected static function checkVersion($minimumRequiredVersion, $actualVersion)
570 {
571 assert('self::isVersion($minimumRequiredVersion)');
572 assert('self::isVersion($actualVersion)');
573 if (preg_match('/^\d+\.\d+$/', $actualVersion) == 1) // Not Coding Standard
574 {
575 $actualVersion .= '.0';
576 }
577 return version_compare($actualVersion, $minimumRequiredVersion) >= 0;
#1
–
[/center] /home/content/08/8802508/html/planner/app/protected/modules/install/utils/InstallUtil.php(221): InstallUtil::checkVersion("2.0", false)216 public static function checkTidy($minimumRequiredVersion, /* out */ &$actualVersion)
217 {
218 $actualVersion = phpversion('tidy');
219 if ($actualVersion !== null)
220 {
221 return self::checkVersion($minimumRequiredVersion, $actualVersion);
222 }
223 return false;
224 }
225
226 /**
#2
–
[/center] /home/content/08/8802508/html/planner/app/protected/modules/install/serviceHelpers/ServiceHelper.php(156): InstallUtil::checkTidy("2.0", false)151
152 protected function callCheckServiceMethod($methodName, & $actualVersion)
153 {
154 assert('is_string($methodName)');
155 assert('$actualVersion == null');
156 return InstallUtil::$methodName($this->minimumVersion, $actualVersion);
157 }
158
159 protected function getMinimumVersionLabel()
160 {
161 assert('is_string($this->minimumVersion)');
#3
+
[/center] /home/content/08/8802508/html/planner/app/protected/modules/install/serviceHelpers/ServiceHelper.php(129): ServiceHelper->callCheckServiceMethod("checkTidy", "false")#4
+
[/center] /home/content/08/8802508/html/planner/app/protected/modules/install/serviceHelpers/TidyServiceHelper.php(36): ServiceHelper->checkServiceAndSetMessagesByMethodNameAndDisplayLabel("checkTidy", "Tidy")#5
+
[/center] /home/content/08/8802508/html/planner/app/protected/modules/install/serviceHelpers/ServiceHelper.php(90): TidyServiceHelper->checkService()#6
+
[/center] /home/content/08/8802508/html/planner/app/protected/modules/zurmo/components/BeginRequestBehavior.php(62): ServiceHelper->runCheckAndGetIfSuccessful()#7
+
[/center] /home/content/08/8802508/html/planner/yii/framework/base/CComponent.php(571): BeginRequestBehavior->handleTidyCheck(CEvent)#8
+
[/center] /home/content/08/8802508/html/planner/yii/framework/base/CApplication.php(185): CComponent->raiseEvent("onBeginRequest", CEvent)#9
+
[/center] /home/content/08/8802508/html/planner/yii/framework/base/CApplication.php(157): CApplication->onBeginRequest(CEvent)#10
+
[/center] /home/content/08/8802508/html/planner/app/index.php(53): CApplication->run()2012-01-13 15:07:59 Apache Yii Framework/1.1.8









