Sample config.php file:
<?php
if (basename ($_SERVER['SCRIPT_NAME']) == basename (__FILE__)) {
die ("no direct access allowed");
}
$dsn = array(
'username' => 'bookmarkmgr',
'password' => 'password_of_bookmarkmgr',
'hostspec' => 'localhost',
'database' => 'bookmarks',
);
$cookie = array (
'name' => 'ob_cookie',
'domain' => '',
'path' => '/',
'seed' => '35LRWQqIkAF6FC',
'expire' => time() + 31536000,
);
# Feel free to add values to this list as you like
# according to the PHP documentation
# http://www.php.net/manual/en/function.date.php
$date_formats = array (
'd/m/Y',
'Y-m-d',
'm/d/Y',
'd.m.Y',
'F j, Y',
'dS \o\f F Y',
'dS F Y',
'd F Y',
'd. M Y',
'Y F d',
'F d, Y',
'M. d, Y',
'm/d/Y',
'm-d-Y',
'm.d.Y',
'm.d.y',
);
$convert_favicons = true;
$convert = '/usr/bin/convert';
$identify = '/usr/bin/identify';
$timeout = 5;
$folder_closed = '<img src="./images/folder.gif">';
$folder_opened = '<img src="./images/folder_open.gif">';
$folder_closed_public = '<img src="./images/folder_red.gif">';
$folder_opened_public = '<img src="./images/folder_open_red.gif">';
$bookmark_image = '<img src="./images/bookmark_image.gif">';
$plus = '<img src="./images/plus.gif"> ';
$minus = '<img src="./images/minus.gif"> ';
$neutral = '<img src="./images/spacer.gif" width="13" height="1"> ';
$edit_image = '<img src="./images/edit.gif" title="%s">';
$move_image = '<img src="./images/move.gif" title="%s">';
$delete_image = '<img src="./images/delete.gif" title="%s">';
$delimiter = "/";
?>