2004-10-14 22:20:03 +00:00
|
|
|
#!/usr/bin/perl
|
2004-10-28 06:29:35 +00:00
|
|
|
############################
|
|
|
|
## LOOK N FEEL ##
|
|
|
|
############################
|
|
|
|
$SITE_NAME = "Kwotes";
|
|
|
|
# the name of the site
|
2004-10-14 22:20:03 +00:00
|
|
|
|
2004-10-28 06:29:35 +00:00
|
|
|
@TAG_LINES = (
|
|
|
|
"For happy goodness!",
|
|
|
|
"The better kwote database.",
|
|
|
|
"It blows goats!"
|
|
|
|
);
|
|
|
|
# tag lines to be randomly displayed
|
|
|
|
# in the header
|
|
|
|
|
2004-11-02 01:38:42 +00:00
|
|
|
$DEFAULT_TEMPLATE = "default";
|
|
|
|
# name of the default template
|
|
|
|
|
2004-10-28 06:29:35 +00:00
|
|
|
############################
|
|
|
|
## DATABASE CONFIGURATION ##
|
|
|
|
############################
|
2004-10-15 19:35:43 +00:00
|
|
|
$DB_TYPE = "mysql";
|
|
|
|
# dbi database type (only MySQL is
|
|
|
|
# supported currently, due to the
|
2004-10-27 01:12:22 +00:00
|
|
|
# fact that "LIMIT X,X", and "RAND()"
|
|
|
|
# is used
|
2004-10-15 20:46:47 +00:00
|
|
|
|
2004-10-15 19:35:43 +00:00
|
|
|
$DB_NAME = "kwotes";
|
|
|
|
# database name
|
2004-10-15 20:46:47 +00:00
|
|
|
|
2004-10-15 19:35:43 +00:00
|
|
|
$DB_HOST = "mysql";
|
|
|
|
# database host
|
|
|
|
|
|
|
|
$DB_USER = "kwotes";
|
|
|
|
# database user
|
2004-10-15 20:46:47 +00:00
|
|
|
|
2005-07-14 00:14:14 +00:00
|
|
|
$DB_PASS = "password";
|
2004-10-15 19:35:43 +00:00
|
|
|
# database password
|
2004-10-15 20:46:47 +00:00
|
|
|
|
2004-10-28 06:29:35 +00:00
|
|
|
############################
|
|
|
|
## GENERAL STUFF ##
|
|
|
|
############################
|
2004-10-15 19:35:43 +00:00
|
|
|
$SECS_BETWEEN_KWOTES = 60*60;
|
|
|
|
# seconds a user must wait after
|
|
|
|
# submitting MAX_KWOTES_PER_IP
|
|
|
|
# kwotes to the system before they
|
|
|
|
# are allowed to submit another
|
|
|
|
# kwote
|
2004-10-15 20:46:47 +00:00
|
|
|
|
2004-10-15 19:35:43 +00:00
|
|
|
$KWOTE_DEATH_RATING = -1;
|
|
|
|
# lowest rating a quote can be
|
|
|
|
# before it's deleted. A kwote is
|
|
|
|
# only deleted if it's been this
|
|
|
|
# number (or lower) for longer than
|
|
|
|
# the KWOTE_TTL
|
2004-10-15 20:46:47 +00:00
|
|
|
|
2004-10-15 19:35:43 +00:00
|
|
|
$KWOTE_TTL = (60*60)*24;
|
|
|
|
# seconds before a "dead"
|
|
|
|
# quote is moved to the kwote
|
|
|
|
# backup table and deleted
|
2004-10-15 20:46:47 +00:00
|
|
|
|
2004-10-15 19:35:43 +00:00
|
|
|
$VOTE_TTL = (60*60)*24;
|
|
|
|
# seconds a vote log lasts, the vote
|
|
|
|
# log is the mechanism that keeps
|
|
|
|
# people from voting over and over
|
2004-10-15 20:46:47 +00:00
|
|
|
|
2004-10-15 19:35:43 +00:00
|
|
|
$MAX_VOTES_PER_IP = 4;
|
|
|
|
# maximum votes per ip address per
|
|
|
|
# VOTE_TTL seconds.
|
2004-10-15 20:46:47 +00:00
|
|
|
|
2004-10-15 19:35:43 +00:00
|
|
|
$MAX_KWOTES_PER_IP = 5;
|
|
|
|
# maximum kwotes allowed per ip
|
|
|
|
# in SECS_BETWEEN_KWOTES
|
2004-10-14 22:20:03 +00:00
|
|
|
|
|
|
|
1;
|