[Ircphpstats-devel] [CVS] Module phpstats: Change committed
Status: Inactive
Brought to you by:
mrvolta
|
From: Mr. v. <mr...@us...> - 2003-03-14 19:43:30
|
Committer : volta <mr...@us...>
CVSROOT : /cvsroot/ircphpstats
Module : phpstats
Commit time: 2003-03-14 19:43:21 UTC
Added files:
options.php
Log message:
Initial import
---------------------- diff included ----------------------
Index: phpstats/options.php
diff -u /dev/null phpstats/options.php:1.1
--- /dev/null Fri Mar 14 11:43:23 2003
+++ phpstats/options.php Fri Mar 14 11:43:10 2003
@@ -0,0 +1,29 @@
+<?
+/*
+ Options.
+ PHP Stats Service is copyright (c) 2002-2003 volta.
+ E-mail: <vo...@gm...>
+ This program is free but copyrighted software; see the file LICENSE for
+ details.
+ $Id: options.php,v 1.1 2003/03/14 19:43:10 mrvolta Exp $
+*/
+
+$a = 1;
+// Uplink information
+define(UPLINK,'127.0.0.1');
+define(PORT,'4400'); // uplink port ... should be a serverport
+define(PASS,'stats'); // non-crypted uplink password
+
+// Own server information
+define(SERVERNAME,'stats.undernet.org');
+define(SERVERNUM,'Ay'); // Our own server numeric in base64
+define(MAXCLIENTS,'AAA'); // You shouldn't change this, there aren't any clients anyway
+define(SERVERDESC,'Tha Statistical Service is watching you'); // Server's description in /LINKS
+
+// SQL database information
+define(SQLUSER,'r00t'); // The username to connect to the sql db with
+define(SQLPASS,'foo'); // The pass to connect with ('foo' = no pass)
+define(SQLHOST,'127.0.0.1'); // The hostname/ip of the pgsql server
+define(SQLDBNAME,'stats'); // The database name to use
+define(SQLPORT,'5432'); // The port to connect to the sql server
+?>
\ No newline at end of file
----------------------- End of diff -----------------------
|