- Posts: 2
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
throw new CDbException("LimeSurvey table settings_global not found in database");
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); /* | */ return array( 'name' => 'uniVersa LimeSurvey', 'components' => array( 'db' => array( 'connectionString' => 'pgsql:host=localhost;port=5432;user=limesurvey;password=Test123;dbname=limesurvey;', 'emulatePrepare' => true, 'username' => 'limesurvey', 'password' => 'Test123', 'charset' => 'utf8', 'tablePrefix' => 'lime_', ), 'urlManager' => array( 'urlFormat' => 'path', 'rules' => array( // You can add your own rules here ), 'showScriptName' => true, ), ), // For security issue : it's better to set runtimePath out of web access // Directory must be readable and writable by the webuser // 'runtimePath'=>'/var/limesurvey/runtime/' // Use the following config variable to set modified optional settings copied from config-defaults.php 'config'=>array( 'session' => array ( 'cookieParams' => array( 'secure' => true, // use SSL for cookies 'httponly' => true // Cookies may not be used by other protocols - experimental ), ), 'debug'=>2, 'debugsql'=>1, // Set this to 1 to enanble sql logging, only active when debug = 2 ) ); /* End of file config.php */ /* Location: ./application/config/config.php */
This need to be developped …jfuchs wrote: Have anyone some idea how i can add the config.php at startup and the installer create the tables without any problems.