summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2011-06-01 10:33:34 -0700
committerJesse Morgan <jesse@jesterpm.net ; true>2011-06-01 10:33:34 -0700
commita070cbe9627fcc29ef2f91b8f7578080203e6ad1 (patch)
tree8b2ddeda3d84e4d67eaae64510dd30192e22e7ac
parentb2a7cfb9b152dcad1333b92dde76af3a164af8f6 (diff)
Removing the config file from the codebase.
-rw-r--r--.gitignore1
-rw-r--r--htdocs/src/config.inc.php.example (renamed from htdocs/src/config.inc.php)13
2 files changed, 9 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index ea6de6c..0560ef4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
htdocs/emails.log
tags
uploads/
+config.inc.php
diff --git a/htdocs/src/config.inc.php b/htdocs/src/config.inc.php.example
index 829c632..d0d912c 100644
--- a/htdocs/src/config.inc.php
+++ b/htdocs/src/config.inc.php.example
@@ -16,15 +16,18 @@ $CONFIG = array(
'dbname' => 'p4scommunity',
// Site Information
- 'sitetitle' => 'Foursquare Community',
- 'email_from' => 'community@myfoursquarechurch.com',
+ 'sitetitle' => 'Foursquare Community',
+ 'email_from' => 'community@myfoursquarechurch.com',
+ 'emaildomain' => 'listandshare.com',
'urlroot' => '/~jesse/p4s/community/htdocs',
- 'root' => '/home/jesse/Development/p4square/community/htdocs',
- 'uploads' => '/home/jesse/Development/p4square/community/uploads',
+ 'root' => '/Users/jesse/Development/P4Square/community/htdocs',
+ 'uploads' => '/Users/jesse/Development/P4Square/community/uploads',
+
+ 'expiretime' => 7, // days
'debug' => true,
- 'production' => true,
+ 'production' => false,
);
set_include_path(get_include_path() . PATH_SEPARATOR . $CONFIG['root'].'/src');