Initial commit
This commit is contained in:
1
applications/taskmanager/configuration/.htaccess
Normal file
1
applications/taskmanager/configuration/.htaccess
Normal file
@@ -0,0 +1 @@
|
||||
deny from all
|
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
$defaultController = 'login';
|
||||
$defaultAction = 'start';
|
||||
$language = 'english';
|
||||
|
||||
$controllerParameter = 'c';
|
||||
$actionParameter = 'a';
|
||||
|
||||
$development = false;
|
||||
$logErrors = true;
|
||||
$urlParameters = false;
|
||||
$sessionDatabase = false;
|
||||
|
||||
$libraries = array();
|
||||
$helpers = array();
|
||||
?>
|
12
applications/taskmanager/configuration/configuration.php
Normal file
12
applications/taskmanager/configuration/configuration.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
$applicationName = 'taskmanager';
|
||||
$websiteTitle = 'SuperSmash Taskmanager';
|
||||
$webmasterEmail = 'info@SuperSmash.nl';
|
||||
$useDatabase = true;
|
||||
|
||||
// Include the database configuration file
|
||||
include_once ('databaseconfiguration.php');
|
||||
|
||||
// Include the SuperSmash framework configuration file
|
||||
include_once ('SuperSmashconfiguration.php');
|
||||
?>
|
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
$database = array(
|
||||
'driver' => 'mysql',
|
||||
'host' => 'localhost',
|
||||
'database' => 'taskmanager',
|
||||
'username' => 'root',
|
||||
'password' => '',
|
||||
'port' => '3306'
|
||||
);
|
||||
?>
|
Reference in New Issue
Block a user