
 ========================
 Bookmark4U Configuration
 ========================

##################
# database
##################

::::::::::::::::::
$conf[sitehome] = "http://host.domain/bookmark4u";  # bookmark4u home URL
$conf[site_title] = "Bookmark4U";    # web site informations for title
::::::::::::::::::
 This variable is used for a special bookmark in your local browser.
 Your browser access the bookmark.php under this url to add the current
 page of the browser into Bookmark4U.
 Do NOT attach a slash(/) on the end of the string.

::::::::::::::::::
$conf[dbhost]   = "localhost";  # database server
$conf[dbuser]   = "root";       # database user
$conf[dbpasswd] = "";           # database user's password
$conf[dbname]   = "bookmark4u"; # database name
::::::::::::::::::
 These are for database access.
 If you use MySQL, these are used in mysql_connect() function of PHP.
 If any one of these variables is wrong you can't access to Bookmark4U.

::::::::::::::::::
$conf[dbtblpasswd]   = "PASSWD";    # password table name
$conf[dbtblconfig]   = "CONFIG";    # user config/memo table name
$conf[dbtbltrash]    = "TRASH";     # trash to be deleted
$conf[dbtblcalendar] = "CALENDAR";  # bookmark calendar
::::::::::::::::::
 This is the names of basic table of Bookmark4U.
 Basic tables are created using the file sql/db.mysql.sql.
 DO NOT CHANGE IT if you are not sure.


##################
# cookie
##################

::::::::::::::::::
$conf[cookie_prefix] = "BOOKMARK4U_";      # prefix of cookie variables
::::::::::::::::::
 the prefix string of cookie variables
 You don't have to modify it.

::::::::::::::::::
$conf[secure_cookie] = 1;                  # use hashed token cookie value
$conf[static_cookie] = "MY_COOKIE_STRING"; # mixed with other variables
                                           # to generate a secure cookie or
                                           # used as cookie itself if the
                                           # $conf[secure_cookie] is false
::::::::::::::::::
 If you want a more secure cookie mechanism set the [secure_cookie] to 1.
 If you don't want to use secure cookie, 'static_cookie' is used for
 the TOKEN cookie string.


##################
# site global options
##################
::::::::::::::::::
$conf[use_user_config] = 1;     # user can override the default configuration
::::::::::::::::::
 If true, users can edit their own preference.

::::::::::::::::::
$conf[allow_guest_login] = 0;   # non-registered users can be a guest
::::::::::::::::::
 If true, non-registerd users can be a guest of a registerd user.
 If false, only registered users can access other user's bookmark as a guest.
 Guest users can not delete/modify/move any bookmark.

::::::::::::::::::
$conf[enable_urlcheck] = 1;     # enabling url checking
::::::::::::::::::
 If true, users can check if their bookmarks are vaild using the URL Check
 icon. If faluse, users can not do this.

##################
# icons
##################
::::::::::::::::::
$uconf[icon_bk]       = "icon/bk.gif";    # bookmark
$uconf[icon_hbk]      = "icon/hbk.gif";   # hidden(private) bookmark
$uconf[icon_fo]       = "icon/fo.gif";    # folder
...skip...
::::::::::::::::::
 These are default icons. You can use your own icons by using theme.
 Do not change these.

##################
# display and others
##################
::::::::::::::::::
$uconf[lang] 	        = 'English';       # language
$uconf[tree_view]       = 'static';        # default display bookmarks in tree form (static, flat or dynamic)
$uconf[top_folder_name] = "%s's bookmark"; # top folder name
::::::::::::::::::

$uconf array in the config.php are the default values for all users.
If a user does not have his/her configuration, these default values are
used. Every users can change their '$uconf' in the preference setting.
DO NOT CHANGE these, if are not sure.

-- CONFIG.txt
