Index: install/install_toolkit.php =================================================================== --- install/install_toolkit.php (revision 15359) +++ install/install_toolkit.php (working copy) @@ -629,7 +629,7 @@ return $default; } - return $this->systemConfig[$section][$key] ? $this->systemConfig[$section][$key] : $default; + return isset($this->systemConfig[$section][$key]) ? $this->systemConfig[$section][$key] : $default; } /** Index: install/step_templates/sys_config.tpl =================================================================== --- install/step_templates/sys_config.tpl (revision 15359) +++ install/step_templates/sys_config.tpl (working copy) @@ -1,6 +1,6 @@ Array ('type' => 'text', 'title' => 'Web Path to Installation', 'section' => 'Misc', 'required' => 1, 'default' => '/'), + 'WebsitePath' => Array ('type' => 'text', 'title' => 'Web Path to Installation', 'section' => 'Misc', 'required' => 1, 'default' => ''), 'WriteablePath' => Array ('type' => 'text', 'title' => 'Path to Writable folder', 'section' => 'Misc', 'required' => 1, 'default' => '/system'), 'RestrictedPath' => Array ('type' => 'text', 'title' => 'Path to Restricted folder', 'section' => 'Misc', 'required' => 1, 'default' => '/system/.restricted'), 'AdminDirectory' => Array ('type' => 'text', 'title' => 'Path to Admin folder', 'section' => 'Misc', 'default' => '/admin'), Index: install/steps_db.xml =================================================================== --- install/steps_db.xml (revision 15359) +++ install/steps_db.xml (working copy) @@ -107,7 +107,7 @@

Web Path to Installation - web path to the root of your In-Portal installation. For example, - if your In-Portal will be running at http://www.your-website.com, then Web Path to Installation should be set to / + if your In-Portal will be running at http://www.your-website.com, then Web Path to Installation should not be set since In-Portal is setup in the root of the domain. In case if your In-Portal will be running under http://www.your-website.com/in-portal/, then it should be set to /in-portal (no trailing slash). This setting is auto-detected during the initial installation step, but can be adjusted at Installation Maintenance step.