-
Notifications
You must be signed in to change notification settings - Fork 1
/
.blorpconfig.php
51 lines (40 loc) · 1.57 KB
/
.blorpconfig.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
39
40
41
42
43
44
45
46
47
48
49
50
51
<?
// rename this file to .blorpconfig.php and put it in the same directory as index.phtml
// specifies how the page should reference itself. i.e. use index.phtml, /, www.poo.com/, or whatever.
$thisfn="blorpscript.php";
$sitename="Temporary Location";
$defaultroottitle="Welcome";
$resizecookiename="MySiteResizeWidth";
// colors and formats
$bodybgconfig="bgcolor=\"#08000F\"";
$textcolor="#eFeFeF";
$tablebg="#300040";
$linkcolor="#00df20";
// for the rescale form style
$formborder="#400050";
$formbg="#500060";
$formtextcolor="#b000c0";
$buttonfontconfig="font-family:Courier; font-size:10px;";
// top line
$topline="<A href=\"$thisfn\">chakradeo.net</A>";
// table config
$tableconfig="BORDER=1 CELLPADDING=4 CELLSPACING=0 BORDERCOLOR=\"#270030\" WIDTH=90%";
// these are used for the image browser
$nextimagestr="> >";
$previmagestr="< <";
$imagebrowsebottom="<BR>";
// thumbnail config
// ($thumbnails can be either "gd" (for GD), "convert" (for imagemagick), or "none",
// or "manual" if you like to make your own (and put them in the right places))
$thumbnails="gd";
$my_convert_path=""; // you probably want to manually configure this for win32.
$thumbnailheight=100;
$maxthumbnailwidth=250;
// bottom line formatting
$bottomlinestart="<center><font size=-2>";
$copyrightstring=" - copyright (C) 2000 me<BR>";
$bottomlineend="</font></center>";
// comments config
$comments_enabled=1; // 0 to disable comment support
$comments_logall=1; // 0 to disable all comment logging to .comments/all
?>