summaryrefslogtreecommitdiffstats
path: root/frontends/php/about.php
blob: ea006742203a8c63ec6dee91a74e120a6807dcfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
	include "include/config.inc.php";
	$page["title"] = "Abbout Zabbix";
	$page["file"] = "about.php";
	show_header($page["title"],0,0);
?>

<?php
	show_table_header("Information about Zabbix (v1.0beta8)");
?>

<TABLE BORDER=0 COLS=4 WIDTH=100% BGCOLOR="#CCCCCC" cellspacing=1 cellpadding=3>
<TR BGCOLOR=#EEEEEE>
<TD ALIGN=LEFT>
	<font face="Helvetica"><a href="http://zabbix.sourceforge.net">Homepage of Zabbix</a></font><br>
</TD>
<TD ALIGN=LEFT>
	This is home page of Zabbix.
</TD>
</TR>
<TR BGCOLOR=#DDDDDD>
<TD ALIGN=LEFT>
	<font face="Helvetica"><a href="http://zabbix.sourceforge.net/#manual">Latest Zabbix Manual</a></font><br>
</TD>
<TD>
	Latest version of the Manual.
</TR>
<TR BGCOLOR=#EEEEEE>
<TD ALIGN=LEFT>
	<font face="Helvetica"><a href="http://sourceforge.net/project/showfiles.php?group_id=23494&release_id=40630">Downloads</a></font><br>
</TD>
<TD>
	Latest Zabbix release can be found here.
</TR>
<TR BGCOLOR=#DDDDDD>
<TD ALIGN=LEFT>
	<font face="Helvetica"><a href="http://sourceforge.net/tracker/?atid=378686&group_id=23494&func=browse">Feature requests</a></font><br>
</TD>
<TD>
	If you need additional functionality, go here.
</TD>
</TR>
<TR BGCOLOR=#EEEEEE>
<TD ALIGN=LEFT>
	<font face="Helvetica"><a href="http://sourceforge.net/forum/?group_id=23494">Forums</a></font><br>
</TD>
<TD>
	Zabbix-related discussion.
</TD>
</TR>
<TR BGCOLOR=#DDDDDD>
<TD ALIGN=LEFT>
	<font face="Helvetica"><a href="http://sourceforge.net/tracker/?group_id=23494&atid=378683">Bug reports</a></font><br>
</TD>
<TD>
	Bug in Zabbix ? Please, report it.
</TD>
</TR>
<TR BGCOLOR=#EEEEEE>
<TD ALIGN=LEFT>
	<font face="Helvetica"><a href="http://sourceforge.net/mail/?group_id=23494">Mailing lists</a></font><br>
</TD>
<TD>
	Very useful source of information (will be soon).
</TD>
</TR>
</TABLE>

<?php
	show_footer();
?>