75dd93c875
* Numerous bugs fixed * A few notable features include MySQL 5.x support * New 5th percentile functionality, and multiple command line scripts - Refine a little pkg-message.in
12 lines
384 B
PHP
12 lines
384 B
PHP
--- /dev/null Tue Jun 21 16:31:36 2005
|
|
+++ include/db-settings.php Tue Jun 21 16:29:15 2005
|
|
@@ -0,0 +1,9 @@
|
|
+<?php
|
|
+/* make sure these values refect your actual database/host/user/password */
|
|
+$database_type = "mysql";
|
|
+$database_default = "cacti";
|
|
+$database_hostname = "localhost";
|
|
+$database_username = "cactiuser";
|
|
+$database_password = "cactiuser";
|
|
+$database_port = "3306";
|
|
+?>
|