summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/setup.inc.php
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-12-01 07:48:18 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-12-01 07:48:18 +0000
commit854665591a9b00555b2fcabd269fcaaaab5ccfc8 (patch)
treec0e5dcbc9b5813c2d601d49e724d310c5d96cf7f /frontends/php/include/setup.inc.php
parentccf3d12a93aa71836ba46bfd7e2fd5f23fa81e5c (diff)
downloadzabbix-854665591a9b00555b2fcabd269fcaaaab5ccfc8.tar.gz
zabbix-854665591a9b00555b2fcabd269fcaaaab5ccfc8.tar.xz
zabbix-854665591a9b00555b2fcabd269fcaaaab5ccfc8.zip
- disabled config of distributed mon. from installwizard (Eugnee)
git-svn-id: svn://svn.zabbix.com/trunk@3550 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/setup.inc.php')
-rw-r--r--frontends/php/include/setup.inc.php17
1 files changed, 10 insertions, 7 deletions
diff --git a/frontends/php/include/setup.inc.php b/frontends/php/include/setup.inc.php
index d829a28b..3002a25c 100644
--- a/frontends/php/include/setup.inc.php
+++ b/frontends/php/include/setup.inc.php
@@ -56,10 +56,10 @@
1 => array('title' => '2. Licence Agreement' , 'fnc' => 'Stage1' ),
2 => array('title' => '3. Check of pre-requisites' , 'fnc' => 'Stage2' ),
3 => array('title' => '4. Configure DB connection' , 'fnc' => 'Stage3' ),
- 4 => array('title' => '5. Distributed monitoring' , 'fnc' => 'Stage4' ),
- 5 => array('title' => '6. Pre-Installation Summary' , 'fnc' => 'Stage5' ),
- 6 => array('title' => '7. Install' , 'fnc' => 'Stage6' ),
- 7 => array('title' => '8. Finish' , 'fnc' => 'Stage7' )
+ //4 => array('title' => '5. Distributed monitoring' , 'fnc' => 'Stage4' ),
+ 4 => array('title' => '5. Pre-Installation Summary' , 'fnc' => 'Stage5' ),
+ 5 => array('title' => '6. Install' , 'fnc' => 'Stage6' ),
+ 6 => array('title' => '7. Finish' , 'fnc' => 'Stage7' )
);
$this->EventHandler();
@@ -350,7 +350,7 @@
new CButton('retry', 'Test connection')
);
}
-
+ /*
function Stage4()
{
global $_SERVER;
@@ -387,6 +387,7 @@
$table
), 'text');
}
+ */
function Stage5()
{
@@ -672,6 +673,7 @@
if(isset($_REQUEST['next'][$this->GetStep()])) $this->DoNext();
}
+ /*
if($this->GetStep() == 4)
{
if(!isset($_REQUEST['next'][3]) && !isset($_REQUEST['back'][5]))
@@ -695,13 +697,14 @@
$this->SetConfig('nodeid', null);
}
}
+ */
- if($this->GetStep() == 5 && isset($_REQUEST['next'][$this->GetStep()]))
+ if($this->GetStep() == 4 && isset($_REQUEST['next'][$this->GetStep()]))
{
$this->DoNext();
}
- if($this->GetStep() == 6)
+ if($this->GetStep() == 5)
{
$this->SetConfig('ZBX_CONFIG_FILE_CORRECT', $this->CheckConfigurationFile());