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