summaryrefslogtreecommitdiffstats
path: root/application/config
diff options
context:
space:
mode:
Diffstat (limited to 'application/config')
-rw-r--r--application/config/.gitignore1
-rw-r--r--application/config/example/.gitignore1
-rwxr-xr-x[-rw-r--r--]application/config/example/autoload.php (renamed from application/config/autoload.php)4
-rwxr-xr-x[-rw-r--r--]application/config/example/config.php (renamed from application/config/config.php)27
-rwxr-xr-x[-rw-r--r--]application/config/example/constants.php (renamed from application/config/constants.php)2
-rwxr-xr-x[-rw-r--r--]application/config/example/database.php (renamed from application/config/database.php)18
-rwxr-xr-x[-rw-r--r--]application/config/example/doctypes.php (renamed from application/config/doctypes.php)0
-rwxr-xr-x[-rw-r--r--]application/config/example/foreign_chars.php (renamed from application/config/foreign_chars.php)0
-rwxr-xr-x[-rw-r--r--]application/config/example/hooks.php (renamed from application/config/hooks.php)0
-rwxr-xr-xapplication/config/example/index.html10
-rw-r--r--application/config/example/memcache.php9
-rwxr-xr-x[-rw-r--r--]application/config/example/mimes.php (renamed from application/config/mimes.php)0
-rwxr-xr-x[-rw-r--r--]application/config/example/profiler.php (renamed from application/config/profiler.php)0
-rwxr-xr-x[-rw-r--r--]application/config/example/routes.php (renamed from application/config/routes.php)5
-rwxr-xr-x[-rw-r--r--]application/config/example/smileys.php (renamed from application/config/smileys.php)0
-rwxr-xr-x[-rw-r--r--]application/config/example/user_agents.php (renamed from application/config/user_agents.php)0
-rwxr-xr-x[-rw-r--r--]application/config/index.html0
-rw-r--r--application/config/migration.php82
18 files changed, 104 insertions, 55 deletions
diff --git a/application/config/.gitignore b/application/config/.gitignore
new file mode 100644
index 000000000..cde8069e1
--- /dev/null
+++ b/application/config/.gitignore
@@ -0,0 +1 @@
+*.php
diff --git a/application/config/example/.gitignore b/application/config/example/.gitignore
new file mode 100644
index 000000000..f9be8dfe0
--- /dev/null
+++ b/application/config/example/.gitignore
@@ -0,0 +1 @@
+!*
diff --git a/application/config/autoload.php b/application/config/example/autoload.php
index 53129c9c6..a471f3ab2 100644..100755
--- a/application/config/autoload.php
+++ b/application/config/example/autoload.php
@@ -52,7 +52,7 @@ $autoload['packages'] = array();
| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
*/
-$autoload['libraries'] = array();
+$autoload['libraries'] = array('database');
/*
@@ -64,7 +64,7 @@ $autoload['libraries'] = array();
| $autoload['helper'] = array('url', 'file');
*/
-$autoload['helper'] = array();
+$autoload['helper'] = array('url');
/*
diff --git a/application/config/config.php b/application/config/example/config.php
index 1ec65435e..bd9ec40aa 100644..100755
--- a/application/config/config.php
+++ b/application/config/example/config.php
@@ -224,7 +224,7 @@ $config['cache_path'] = '';
| MUST set an encryption key. See the user guide for info.
|
*/
-$config['encryption_key'] = '';
+$config['encryption_key'] = ''; # set this to a 32char random string
/*
|--------------------------------------------------------------------------
@@ -248,7 +248,7 @@ $config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
$config['sess_expire_on_close'] = FALSE;
$config['sess_encrypt_cookie'] = FALSE;
-$config['sess_use_database'] = FALSE;
+$config['sess_use_database'] = true;
$config['sess_table_name'] = 'ci_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = TRUE;
@@ -357,6 +357,29 @@ $config['rewrite_short_tags'] = FALSE;
*/
$config['proxy_ips'] = '';
+/*
+|--------------------------------------------------------------------------
+| Filebin
+|-------------------------------------------------------------------------
+|
+| upload_path should NOT be readable/served by the server, but only by
+| the script
+| sizes are in bytes
+| max_age in seconds
+|
+ */
+
+$config['upload_path'] = FCPATH.'data/uploads';
+$config['upload_max_size'] = 256*1024*1024;
+$config['upload_max_text_size'] = 2*1024*1024;
+
+// 0 disables deletion
+$config['upload_max_age'] = 60*60*24*5; // 5 days
+
+// won't be deleted
+$config['small_upload_size'] = 1024*10; // 10KB
+
+$config['contact_me_url'] = ''; // ommiting this will remove the "contact me" line.
/* End of file config.php */
/* Location: ./application/config/config.php */
diff --git a/application/config/constants.php b/application/config/example/constants.php
index 4a879d360..1185dbca0 100644..100755
--- a/application/config/constants.php
+++ b/application/config/example/constants.php
@@ -1,5 +1,7 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
+putenv('HOME='.FCPATH);
+
/*
|--------------------------------------------------------------------------
| File and Directory Modes
diff --git a/application/config/database.php b/application/config/example/database.php
index b4b34bf66..51b666b38 100644..100755
--- a/application/config/database.php
+++ b/application/config/example/database.php
@@ -48,18 +48,18 @@
$active_group = 'default';
$active_record = TRUE;
-$db['default']['hostname'] = 'localhost';
-$db['default']['username'] = '';
-$db['default']['password'] = '';
-$db['default']['database'] = '';
-$db['default']['dbdriver'] = 'mysql';
-$db['default']['dbprefix'] = '';
+$db['default']['hostname'] = "localhost";
+$db['default']['username'] = "";
+$db['default']['password'] = "";
+$db['default']['database'] = "";
+$db['default']['dbdriver'] = "mysqli";
+$db['default']['dbprefix'] = "";
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
-$db['default']['cachedir'] = '';
-$db['default']['char_set'] = 'utf8';
-$db['default']['dbcollat'] = 'utf8_general_ci';
+$db['default']['cachedir'] = "";
+$db['default']['char_set'] = "utf8";
+$db['default']['dbcollat'] = "utf8_bin";
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;
diff --git a/application/config/doctypes.php b/application/config/example/doctypes.php
index f7e1d19a2..f7e1d19a2 100644..100755
--- a/application/config/doctypes.php
+++ b/application/config/example/doctypes.php
diff --git a/application/config/foreign_chars.php b/application/config/example/foreign_chars.php
index 14b0d7373..14b0d7373 100644..100755
--- a/application/config/foreign_chars.php
+++ b/application/config/example/foreign_chars.php
diff --git a/application/config/hooks.php b/application/config/example/hooks.php
index a4ad2be6d..a4ad2be6d 100644..100755
--- a/application/config/hooks.php
+++ b/application/config/example/hooks.php
diff --git a/application/config/example/index.html b/application/config/example/index.html
new file mode 100755
index 000000000..c942a79ce
--- /dev/null
+++ b/application/config/example/index.html
@@ -0,0 +1,10 @@
+<html>
+<head>
+ <title>403 Forbidden</title>
+</head>
+<body>
+
+<p>Directory access is forbidden.</p>
+
+</body>
+</html> \ No newline at end of file
diff --git a/application/config/example/memcache.php b/application/config/example/memcache.php
new file mode 100644
index 000000000..a5bc7e3a8
--- /dev/null
+++ b/application/config/example/memcache.php
@@ -0,0 +1,9 @@
+<?php
+
+// this file is a config example for the codeigniter-memcache library
+// add this file to the your application's config directory
+$config["MEMCACHE_HOST"] = '127.0.0.1';
+$config["MEMCACHE_PORT"] = 11211;
+
+
+?>
diff --git a/application/config/mimes.php b/application/config/example/mimes.php
index 100f7d442..100f7d442 100644..100755
--- a/application/config/mimes.php
+++ b/application/config/example/mimes.php
diff --git a/application/config/profiler.php b/application/config/example/profiler.php
index f8a5b1a1e..f8a5b1a1e 100644..100755
--- a/application/config/profiler.php
+++ b/application/config/example/profiler.php
diff --git a/application/config/routes.php b/application/config/example/routes.php
index 5f9a58343..3ae891bfd 100644..100755
--- a/application/config/routes.php
+++ b/application/config/example/routes.php
@@ -38,7 +38,10 @@
|
*/
-$route['default_controller'] = "welcome";
+$route['default_controller'] = "file";
+$route['user/(:any)'] = "user/$1";
+$route['file/(:any)'] = "file/$1";
+$route['(:any)'] = "file/index/$1";
$route['404_override'] = '';
diff --git a/application/config/smileys.php b/application/config/example/smileys.php
index 25d28b2c4..25d28b2c4 100644..100755
--- a/application/config/smileys.php
+++ b/application/config/example/smileys.php
diff --git a/application/config/user_agents.php b/application/config/example/user_agents.php
index e2d3c3af0..e2d3c3af0 100644..100755
--- a/application/config/user_agents.php
+++ b/application/config/example/user_agents.php
diff --git a/application/config/index.html b/application/config/index.html
index c942a79ce..c942a79ce 100644..100755
--- a/application/config/index.html
+++ b/application/config/index.html
diff --git a/application/config/migration.php b/application/config/migration.php
index afa264562..bfcc3aed7 100644
--- a/application/config/migration.php
+++ b/application/config/migration.php
@@ -1,41 +1,41 @@
-<?php defined('BASEPATH') OR exit('No direct script access allowed');
-/*
-|--------------------------------------------------------------------------
-| Enable/Disable Migrations
-|--------------------------------------------------------------------------
-|
-| Migrations are disabled by default but should be enabled
-| whenever you intend to do a schema migration.
-|
-*/
-$config['migration_enabled'] = FALSE;
-
-
-/*
-|--------------------------------------------------------------------------
-| Migrations version
-|--------------------------------------------------------------------------
-|
-| This is used to set migration version that the file system should be on.
-| If you run $this->migration->latest() this is the version that schema will
-| be upgraded / downgraded to.
-|
-*/
-$config['migration_version'] = 0;
-
-
-/*
-|--------------------------------------------------------------------------
-| Migrations Path
-|--------------------------------------------------------------------------
-|
-| Path to your migrations folder.
-| Typically, it will be within your application path.
-| Also, writing permission is required within the migrations path.
-|
-*/
-$config['migration_path'] = APPPATH . 'migrations/';
-
-
-/* End of file migration.php */
-/* Location: ./application/config/migration.php */ \ No newline at end of file
+<?php defined('BASEPATH') OR exit('No direct script access allowed');
+/*
+|--------------------------------------------------------------------------
+| Enable/Disable Migrations
+|--------------------------------------------------------------------------
+|
+| Migrations are disabled by default but should be enabled
+| whenever you intend to do a schema migration.
+|
+*/
+$config['migration_enabled'] = true;
+
+
+/*
+|--------------------------------------------------------------------------
+| Migrations version
+|--------------------------------------------------------------------------
+|
+| This is used to set migration version that the file system should be on.
+| If you run $this->migration->latest() this is the version that schema will
+| be upgraded / downgraded to.
+|
+*/
+$config['migration_version'] = 5;
+
+
+/*
+|--------------------------------------------------------------------------
+| Migrations Path
+|--------------------------------------------------------------------------
+|
+| Path to your migrations folder.
+| Typically, it will be within your application path.
+| Also, writing permission is required within the migrations path.
+|
+*/
+$config['migration_path'] = APPPATH . 'migrations/';
+
+
+/* End of file migration.php */
+/* Location: ./application/config/migration.php */