aboutsummaryrefslogtreecommitdiffstats
path: root/htconfig.php
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-07-11 03:35:06 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-07-11 03:35:06 -0700
commitc2106cb9df63a79ec9770a8f551053bcf192345f (patch)
tree6f79df44192ec21939e2f5af267b9f299d5c883e /htconfig.php
parent7a21a000a2b02e7dd443fd0f3ee09172de825b08 (diff)
downloadvolse-hubzilla-c2106cb9df63a79ec9770a8f551053bcf192345f.tar.gz
volse-hubzilla-c2106cb9df63a79ec9770a8f551053bcf192345f.tar.bz2
volse-hubzilla-c2106cb9df63a79ec9770a8f551053bcf192345f.zip
add install notes
Diffstat (limited to 'htconfig.php')
-rw-r--r--htconfig.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/htconfig.php b/htconfig.php
new file mode 100644
index 000000000..cf52b396a
--- /dev/null
+++ b/htconfig.php
@@ -0,0 +1,24 @@
+<?php
+
+// Set the following for your MySQL installation
+// Copy or rename this file to .htconfig.php
+
+$db_host = 'your.mysqlhost.com';
+$db_user = 'mysqlusername';
+$db_pass = 'mysqlpassword';
+$db_data = 'mysqldatabasename';
+
+// Choose a legal default timezone. If you are unsure, use "America/Los_Angeles".
+// It can be changed later and only applies to timestamps for anonymous viewers.
+
+$default_timezone = 'Australia/Sydney';
+
+// What is your site name?
+
+$a->config['sitename'] = "DFRN developer";
+
+// At the present time you can have REGISTER_OPEN
+// or REGISTER_CLOSED. But register your personal account
+// first before you close it.
+
+$a->config['register_policy'] = REGISTER_OPEN;