I have a working redmine served on port 8081, and am using a sqlite3 db. Later I would switch to a Postgresql one I think.
Is the sqlite3 db supported with redmine plugin ?
It seems "sqlite3" keyword isn't, so I changed config param to "sqlite" and have BTS TL connexion failure. What can I do to debug ?
Here is my redmine.cfg.php :
Code: Select all
/** The DB host to use when connecting to the redmine db */
define('BUG_TRACK_DB_HOST', 'http://localhost:8081');
/** The name of the database that contains the redmine tables */
define('BUG_TRACK_DB_NAME', 'redmine');
/** The DB type being used by redMine
* Check config/database.yml in redMine install directory.
* values: mysql, mssql, postgres
*/
define('BUG_TRACK_DB_TYPE', 'sqlite');
/** The DB password to use for connecting to the redMine db */
define('BUG_TRACK_DB_USER', '');
define('BUG_TRACK_DB_PASS', '');
define('BUG_TRACK_DB_CHARSET', "UTF-8");
// define('BUG_TRACK_DB_CHARSET',"gb2312");
// define('BUG_TRACK_DB_CHARSET',"UTF-8");
/* link of the web server for redmine */
define('BUG_TRACK_HREF', "http://localhost:8081/issues/show/");
// define('BUG_TRACK_HREF', "http://localhost:3000/issues/show/");
/** link to the bugtracking system, for entering new bugs */
define('BUG_TRACK_ENTER_BUG_HREF',"http://localhost:8081");
// define('BUG_TRACK_ENTER_BUG_HREF',"http://localhost:3000/");
Code: Select all
production:
adapter: sqlite3
dbfile: db/redmine.db
Barbara