diff options
Diffstat (limited to 'includes/config.inc')
-rw-r--r-- | includes/config.inc | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/includes/config.inc b/includes/config.inc new file mode 100644 index 000000000..4d54bca98 --- /dev/null +++ b/includes/config.inc @@ -0,0 +1,115 @@ +<? + +# +# MySQL settings: +# + +$dbhost = "zind.net"; +$dbuname = "dries"; +$dbpass = "Abc123"; +$dbname = "dries"; + +#$dbhost = "localhost"; +#$dbuname = "dries"; +#$dbpass = "oakley"; +#$dbname = "dries"; + +# +# Name of the site +# +$sitename = "drop.org"; + +# +# Contact information: +# The contact information will be used to send out automated mails +# to users, account holders or visitors. +$contact_email = "droppies@zind.net"; +$contact_signature = "Kind regards,\n\n-- the drop.org crew\nhttp://beta.drop.org/"; + +# +# Notify: +# Set to '1' to receive an e-mail when news has been submitted +# through submit.php +# +$notify = 0; + +# +# Notify information: +# The notify information will be used to send out automated mails +# for internal purpose. +# +$notify_email = $contact_email; +$notify_subject = "submission: "; +$notify_message = "New submission: '$subject'\n\n$story"; +$notify_from = "droppies@zind.net"; + +# +# Comment meta reasons: +# +$comment_votes = array("none" => "none", "-1" => "-1", "0" => "0", "+1" => "+ 1", "+2" => "+ 2", "+3" => "+ 3", "+4" => "+ 4", "+5" => "+ 5"); + +# +# Categories: +# +$categories = array("Announcements", + "Arts & Humanities", + "Business & Economy", + "Coding & Webdesign", + "Computers & Internet", + "Drop.org", + "Entertainment", + "Freedom", + "Government", + "News & Media", + "Science", + "Society & Culture"); + +# +# Allowed HTML tags: +# +$allowed_html = "<A><B><BR><DD><DL><DT><EM><HR><I><IL><SMALL><OL><U><UL>"; + +# +# Name of the 'anonymous' user account: +# +$anonymous = "Anonymous Chicken"; + + +# +# Themes: +# +$themes = array("Marvin" => array( + "themes/marvin/marvin.theme", + "white, simple"), + "Zaphod" => array( + "themes/zaphod/zaphod.theme", + "yellow, simple"), + "UnConeD" => array( + "themes/unconed/unconed.theme", + "gray, flashy")); + +# +# Submission moderation votes: +# changing $submission_votes will affect the integrity of your +# database. In short, the database field user.history will +# become invalid, and will need to be reset! Please, do not +# change this setting unless you have an empty database or +# unless you know what you are doing. +$submission_votes = array("neutral (+0)" => "+ 0", + "post it (+1)" => "+ 1", + "dump it (-1)" => "- 1"); + +# +# Submission moderation thresholds: +# +$submission_post_threshold = "2"; +$submission_dump_threshold = "-2"; + +# +# Debug flag: +# Set to '1' if you are using Windows so the engine won't try +# to send out mails and such. When using Unix or Linux, set +# to '0' +$mail = 0; + +?>
\ No newline at end of file |