-
Notifications
You must be signed in to change notification settings - Fork 5
/
sample-config.php
executable file
·38 lines (29 loc) · 1.31 KB
/
sample-config.php
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
<?
# Edit these settings to suit your install and rename the file "config.php".
# If you have any issues please contact me via my website http://www.gregology.net/contact
# Title and tagline
$title = "Anon Ghost";
$tagline = "A proof of concept for freedom of speech<br>for those living in liberty voids";
# Refresh rate. Note: measured in seconds.
$refreshrate = 600;
# Avatar size
$width = "60";
$height = "76";
$filetype = "jpg";
$quality = "85";
# MySQL Database settings. Note: The database needs to be created manually. I might make a install application in later versions.
$dbhost = 'localhost';
$dbname = 'anonghostdb';
$dbuser = 'dbusername';
$dbpass = 'password';
# Text length. Note: Currently this will only affect the size of the input box.
$textlength = '1024';
# Posts per page. Note: Number of posts displayed on each page
$postsperpage = '10';
# Dump limit. Note: Number of text dumps ($dumplimit) in limit period ($limitperiod) in minutes.
$limitperiod = 10;
$postlimit = 20;
# Extra salt. Note: This is a random string which is added to the hashes to make them more random. If you change this string all users will get new faces
$extrasalt = "uPen1s-8alls+D1CKS}W4NGS\9RetrABe-!s9e7wfT4!2j2=LC%>7,{f$=O.<7;v4SuhecEF=emUSU9t6c=hU8hubRe6X:3e3R8=,%b{u1 KF68~153F8P-lo,UVAMep2eXu7ytuIBB10T2h1lO7~pG=3Viodqdw";
# Enjoy!
?>