Skip to content

Commit

Permalink
removed clansuite config file
Browse files Browse the repository at this point in the history
added clansuite config file to gitignore
added content of clansuite config to Staging/development.php config
  • Loading branch information
jakoch committed Sep 1, 2012
1 parent 018c9dc commit 14337c8
Show file tree
Hide file tree
Showing 3 changed files with 173 additions and 199 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -5,6 +5,9 @@
# To have a global effect affect to all repositories run this command:
# git config --global core.excludesfile ~/.gitignore

# Clansuite
/Application/Configuration/clansuite.php

# Mac OS X Finder and whatnot
.DS_Store

Expand Down
178 changes: 170 additions & 8 deletions Application/Configuration/Staging/development.php
@@ -1,6 +1,7 @@
; <?php die( 'Access forbidden.' ); /* DO NOT MODIFY THIS LINE! ?>
;
; Clansuite Configuration File : Development
; Koch Framework Configuration File : Development
; This file was generated on 26-08-2012 13:58
;
;----------------------------------------
Expand All @@ -9,20 +10,181 @@
[database]
host = "localhost"
driver = "pdo_mysql"
username = "root"
password = "toop"
name = "clansuite"
charset = "UTF8"
user = "root"
password = 123
dbname = "clansuitetest"
prefix = "cs_"
charset = "UTF8"
;----------------------------------------
; config
;----------------------------------------
[config]
staging = 0
;----------------------------------------
; template
;----------------------------------------
[template]
frontend_theme = "standard"
backend_theme = "admin"
pagetitle = "Team Clansuite"
;----------------------------------------
; defaults
;----------------------------------------
[defaults]
module = "news"
controller = "news"
action = "list"
;----------------------------------------
; locale
;----------------------------------------
[locale]
locale = "de"
outputcharset = "UTF-8"
timezone = "Europe/Paris"
gmtoffset = 3600
dateformat = "d.m.Y H:i"
;----------------------------------------
; error
;----------------------------------------
[error]
development = 1
debug = 1
xdebug = 1
webdebug = 0
xdebug = 0
development = 1
debug_popup = 0
webdebug = 0
help_edit_mode = 0
compression = 0
;----------------------------------------
; email
;----------------------------------------
[email]
from = "webmaster@website.com"
mailmethod = "mail"
mailerhost = ""
mailerport = ""
mailencryption = "SWIFT_OPEN"
smtp_username = ""
smtp_password = ""
from_name = ""
;----------------------------------------
; clan
;----------------------------------------
[clan]
name = ""
tag = ""
;----------------------------------------
; switches
;----------------------------------------
[switches]
themeswitch_via_url = 0
languageswitch_via_url = 0
;----------------------------------------
; maintenance
;----------------------------------------
[maintenance]
maintenance = 0
timeout = 60
reason = 1
;----------------------------------------
; meta
;----------------------------------------
[meta]
description = "description"
language = "en"
author = "name of author"
email = "webmaster@domain.com"
keywords = "Keyword, Keyword"
;----------------------------------------
; routing
;----------------------------------------
[routing]
mod_rewrite = 0
cache_routes = 0
;----------------------------------------
; login
;----------------------------------------
[login]
login_method = "nick"
remember_me_time = 30
max_login_attempts = 5
login_ban_minutes = 180
min_pass_length = 8
hash_algorithm = "sha1"
registration_term = ""
;----------------------------------------
; session
;----------------------------------------
[session]
session_expire_time = 30
check_browser = 0
check_host = 0
check_ip = 0
;----------------------------------------
; updater
;----------------------------------------
[updater]
enabled = 0
interval = ""
;----------------------------------------
; minifer
;----------------------------------------
[minifer]
enabled = 0
;----------------------------------------
; help
;----------------------------------------
[help]
tracking = 1
;----------------------------------------
; cache
;----------------------------------------
[cache]
enabled = 1
driver = "apc"
lifetime = 3600
;----------------------------------------
; smarty
;----------------------------------------
[smarty]
cache = 1
cache_lifetime = 3600
;----------------------------------------
; webserver
;----------------------------------------
[webserver]
mod_rewrite = 0
;----------------------------------------
; editor
;----------------------------------------
[editor]
type = "ckeditor"
;----------------------------------------
; language
;----------------------------------------
[language]
gmtoffset = 3600
timezone = "Europe/Paris"
; DO NOT REMOVE THIS LINE */ ?>

191 changes: 0 additions & 191 deletions Application/Configuration/clansuite.php

This file was deleted.

0 comments on commit 14337c8

Please sign in to comment.