-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathprefs.php
More file actions
39 lines (30 loc) · 1.92 KB
/
prefs.php
File metadata and controls
39 lines (30 loc) · 1.92 KB
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
<?php
//-----------------------------------------------------------------------------
// BellaBook Copyright © Jem Turner 2004-2007,2008 unless otherwise noted
// http://www.jemjabella.co.uk/
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License. See README.txt
// or LICENSE.txt for more information.
//-----------------------------------------------------------------------------
$title = "My BellaBook Guestbook"; // set your guestbook title here
$admin_name = "admin"; // admin username
$admin_pass = "password"; // admin password
$admin_email = "you@your-domain.com"; // admin e-mail address
$admin_url = "http://your-website.com"; // your website url - used in guestbook footer
$admin_gburl = "http://your-website.com/bellabook"; // your guestbook url - used in the sign notification emails
$admin_sitename = "my site"; // your website name - used in guestbook footer
$secret = "pleasechangeme"; // this is like a second password. you won't have to remember it, so make it long and random
$dateformat = "d M y h:ia"; // date format, more details: php.net/date
$stylecolor = "bigblue"; // bellabook theme (download more from jemjabella.co.uk/scripts)
$showemail = "yes"; // show email addresses in guestbook - write yes or no
$emailentries = "no"; // email new entries - write yes or no ($admin_email must be filled in, above)
$emailrequired = "yes"; // make email field required - write yes or no
$perpage = "5"; // Pagination - amount of entries per page.
$smilies = "yes"; // convert text smilies like :) to images? - write yes or no
// spam protection options
$captcha = "no"; // captcha on? - write yes or no
$moderate = "no"; // new entries have to be approved first - write yes or no
$floodcontrol = "no"; // allow flood control? - write yes or no
$allowlinks = "no"; // allow urls in comment; choosing no cuts down on spam
?>