[turba] Sidebar invisible after installing Turba. Please help

Junaid Jeewa junaid at yponeinc.com
Mon Jul 31 14:48:36 PDT 2006


I am using Horde without a problem. All modules are working fine except
Turba. I have edited the sources.conf and have attached the conf.php and
sources.php for Turba here for review. I configured Turba through Horde
Admin panel and selected 'localsql' as the name of client's addressbook and
have chosen sql as the source for shares. I am using Horde defaults for the
VFSand in Horde setup/Virtual File Storage (VFS) I have selected SQL
database with 'Horde defaults' in driver config. I have verified that
horde_vfs table exists in the database but its empty riht now.

Everytime I enable Turba I loose the sidebar. Then I have to rename the
conf.php in the turba/config folder and I get the sidebar again. Can
somebody please give me a pointer because I don't know where its going
wrong. I will appreciate any help.


Thanks

---

Junaid

----------
Software
----------

Horde 3.1.2
IMP 4.1.2
Kronolith 2.1.2
Mnemo 2.1
Nag 2.1.1
Turba 2.1.1

CentOS 4.3
Apache 2.0.52
PHP 4.3.9
MySQL 4.1.20

Firefox 1.5.0.5
IE 6

----------------
conf.php (Turba)
----------------
<?php
/* CONFIG START. DO NOT CHANGE ANYTHING IN OR AFTER THIS LINE. */
// $Horde: turba/config/conf.xml,v 1.6.2.1 2005/10/18 12:50:04 jan Exp $
$conf['menu']['import_export'] = true;
$conf['menu']['apps'] = array();
$conf['client']['addressbook'] = 'localsql';
$conf['shares']['source'] = 'sql';
$conf['comments']['allow'] = true;
$conf['documents']['type'] = 'horde';
/* CONFIG END. DO NOT CHANGE ANYTHING IN OR BEFORE THIS LINE. */

-----------------------
sources.php (remarked all other backends)
-----------------------
$cfgSources['localsql'] = array(
    'title' => _("My Address Book"),
    'type' => 'sql',
    // The default connection details are pulled from the Horde-wide SQL
    // connection configuration.
    //
    // The old example illustrates how to use an alternate database
    // configuration.
    //
    // New Example:
    'params' => array_merge($conf['sql'], array('table' =>
'turba_objects')),

    // Old Example:
    // 'params' => array(
    //     'phptype' => 'mysql',
    //     'hostspec' => 'localhost',
    //     'username' => 'horde',
    //     'password' => '*****',
    //     'database' => 'horde',
    //     'table' => 'turba_objects',
    //     'charset' => 'iso-8859-1'
    // ),
    'map' => array(
        '__key' => 'object_id',
        '__owner' => 'owner_id',
        '__type' => 'object_type',
        '__members' => 'object_members',
        '__uid' => 'object_uid',
        'name' => 'object_name',
        'email' => 'object_email',
        'alias' => 'object_alias',
        'homeAddress' => 'object_homeaddress',
        'workAddress' => 'object_workaddress',
        'homePhone' => 'object_homephone',
        'workPhone' => 'object_workphone',
        'cellPhone' => 'object_cellphone',
        'fax' => 'object_fax',
        'title' => 'object_title',
        'company' => 'object_company',
        'notes' => 'object_notes',
        'pgpPublicKey' => 'object_pgppublickey',
        'smimePublicKey' => 'object_smimepublickey',
        'freebusyUrl' => 'object_freebusyurl'
    ),
    'search' => array(
        'name',
        'email'
    ),
    'strict' => array(
        'object_id',
        'owner_id',
        'object_type',
    ),
    'export' => true,
    'browse' => true,
    'use_shares' => true
);


More information about the turba mailing list