[turba] addressbook and identity

rodneys at lodging.com rodneys at lodging.com
Fri Feb 28 08:48:32 PST 2003


I'm using IMP 3.1
turba 1.1
MYSQL 3.23

IMP is working great, I started my database and followed the directions 
carefully in the readmes, so there is no problem with the database. The 
addressbook icon just hangs there forever when I click on it. When I do a right 
click on it and click on "open in new window" it opens to a blank white page.
When I recieve emails, the little book icon next to the sender's address works 
fine--I'm able to add email addresses and names just fine, but I can't manually 
add contacts such as telephone numbers, etc because the addressbook icon 
doesn't work. All the other icons work fine. Also when my users save their 
identities and logs out, when they log back in, its gone. Any help will be 
greatly appreciated. Below is my sources.php. 


/**
 * A local directory in an SQL database. This implements a per-user
 * address book.
 *
 * Be sure to create a turba_objects table in your Horde database
 * from the schema in turba/scripts/drivers/turba.sql if you use
 * this source.
 */
$cfgSources['localsql'] = array(
    'title' => 'My Addressbook',
    'type' => 'sql',
    'params' => array(
        'phptype' => 'mysql',
        'hostspec' => 'localhost',
        'username' => 'horde',
        'password' => 'horde',
        'database' => 'horde',
        'table' => 'turba_objects'
    ),
    'map' => array(
        '__key' => 'object_id',
        '__owner' => 'owner_id',
        'name' => 'object_name',
        'email' => 'object_email',
        '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'
    ),'search' => array(
        'name',
        'email'
    ),
    'strict' => array(
        'object_id'
    ),
    'public' => true,
    'readonly' => false,
    'admin' => array(),
    'export' => true,


-------------------------------------------------
Get a Room at http://www.lodging.com




More information about the turba mailing list