Skip to content

Commit

Permalink
Dev Some minor adjustements to reflect changes by the web installer
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Feb 29, 2016
1 parent 6c26437 commit 8b4c207
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions application/config/config-sample-mysql.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,22 @@
'charset' => 'utf8',
'tablePrefix' => 'lime_',
),
// Uncomment the following section if you wish to store sessions in the database
// rather than in files.
// Make sure MySQL max_allowed_packet setting is large enough, some surveys generate over 2 MB of session data.
/*
'session' => array (
'class' => 'application.core.web.DbHttpSession',
'connectionID' => 'db',
'sessionTableName' => '{{sessions}}',
),
*/

// Uncomment the following line if you need table-based sessions
// 'session' => array (
// 'class' => 'application.core.web.DbHttpSession',
// 'connectionID' => 'db',
// 'sessionTableName' => '{{sessions}}',
// ),

'urlManager' => array(
'urlFormat' => 'get',
'rules' => require('routes.php'),
'urlFormat' => 'get',
'rules' => array(
// You can add your own rules here
),
'showScriptName' => true,
),

),
// Use the following config variable to set modified optional settings copied from config-defaults.php
'config'=>array(
Expand All @@ -54,8 +55,9 @@
// on your webspace.
// LimeSurvey developers: Set this to 2 to additionally display STRICT PHP error messages and get full access to standard templates
'debug'=>0,
'debugsql'=>0 // Set this to 1 to enanble sql logging, only active when debug = 2
'debugsql'=>0, // Set this to 1 to enanble sql logging, only active when debug = 2
// Update default LimeSurvey config here
)
);
/* End of file config.php */
/* Location: ./application/config/config.php */
/* Location: ./application/config/config.php */

0 comments on commit 8b4c207

Please sign in to comment.