Author Topic: Coding Issue  (Read 3014 times)

Offline ProwlingTiger

  • Jr. Member
  • **
  • Posts: 16
Coding Issue
« on: November 01, 2006, 05:17:32 PM »
Well I keep getting error 1f4. I'm fairly sure that my settings are all correct though.

The MySQL server is located on lotus.worldispnetwork.com so I replaced localhost with it. If anyone can find my error I'd be forever in dept lol.

Code: [Select]
<?php
$rcmail_config 
= array();

// PEAR database DSN for read/write operations
// format is db_provider://user:password@host/databse
// currentyl suported db_providers: mysql, sqlite

$rcmail_config['db_dsnw'] = 'mysql://admin:*******@lotus.worldispnetwork.com/Star-Vo_mail';
// postgres example: 'pgsql://roundcube:pass@localhost/roundcubemail';
// sqlite example: 'sqlite://./sqlite.db?mode=0646';

// PEAR database DSN for read only operations (if empty write database will be used)
// useful for database replication
$rcmail_config['db_dsnr'] = '';

// database backend to use (only db or mdb2 are supported)
$rcmail_config['db_backend'] = 'db';

// maximum length of a query in bytes
$rcmail_config['db_max_length'] = 512000// 500K

// use persistent db-connections
$rcmail_config['db_persistent'] = TRUE;


// you can define specific table names used to store webmail data
$rcmail_config['db_table_users'] = 'users';

$rcmail_config['db_table_identities'] = 'identities';

$rcmail_config['db_table_contacts'] = 'contacts';

$rcmail_config['db_table_session'] = 'session';

$rcmail_config['db_table_cache'] = 'cache';

$rcmail_config['db_table_messages'] = 'messages';


// you can define specific sequence names used in PostgreSQL
$rcmail_config['db_sequence_users'] = 'user_ids';

$rcmail_config['db_sequence_identities'] = 'identity_ids';

$rcmail_config['db_sequence_contacts'] = 'contact_ids';

$rcmail_config['db_sequence_cache'] = 'cache_ids';

$rcmail_config['db_sequence_messages'] = 'message_ids';


// end db config file
?>


Offline ProwlingTiger

  • Jr. Member
  • **
  • Posts: 16
Re: Coding Issue
« Reply #1 on: November 10, 2006, 11:51:55 PM »
Hmm...can anyone tell me what I did wrong?