|
have all of their config files point to the same database (normaly localhost), here is my board config file
<?php
$INFO['sql_driver'] = 'mysql';
$INFO['sql_host'] = 'localhost';
$INFO['sql_database'] = 'theev2_boards';
$INFO['sql_user'] = 'theev2_name';
$INFO['sql_pass'] = '********';
$INFO['sql_tbl_prefix'] = 'boards_';
?>
edit: if I wanted 2 boards to point to the same database I would use the same info in each one. bur be warned, mysql databases have a max connection, to many and it will refect you. the number of connections is chosen my your host.
Last edited by Village Idiot; 10-03-2005 at 02:58 PM..
|