root/trunk/conf/mvblog.ini.sample

Revision 482, 0.9 KB (checked in by michiel, 18 months ago)

Move conf/mvblog.ini to conf/mvblog.ini.sample in subversion

I'm doing this to make it possible to put new config options
in this file without the running installations being
affected.

Please make sure to make a backup of your conf/ directory
before running 'svn update' on your working copy!

I can't stress this enough: MAKE A BACKUP BEFORE RUNNING
'svn update'!

Sorry for the work I put you up with, but with this move it
well be easier in the future to know what can be in the
mvblog.ini file.

Line 
1;
2; This is the default MvBlog ini configuration file
3;
4
5; Anything that's put before the general section will be ignored.
6; Empty lines will be ignored.
7; Lines starting with an ; or an # will be ignored and are meant for comments.
8
9; General section.
10[general]
11;
12; debug controls the outputting of debugging information by MvBlog. MvBlog may
13; report debugging information either directly in the client or possibly in log
14; files such as the custom mvblog log or the apache error log.
15;
16; Accepted values: on/off
17;
18debug = on
19
20; Database connection information.
21[database]
22; Database to store mvblog info in
23; Accepted values: string
24database = mvblog
25; Database server address
26; Accepted values: ip address or hostname
27hostname = 127.0.0.1
28; Database username
29; Accepted values: string
30username = mvblog
31; Database password
32; Accepted values: string
33password = mvblog
34; Database backend engine
35; Accepted values: mysql/pgsql/sqlite
36type = mysql
Note: See TracBrowser for help on using the browser.