I am unsure how to add the phpgedview database to settings.php.
The problem is I installed pgv database into the drupal database with the prefix "pgv_".
Should it look like this?

$db_url['default'] = 'mysql://username:password@localhost/databasename'; // drupal db info
$db_prefix = '';
$db_url['phpgedview'] = 'mysql://username:password@localhost/databasename'; // pgv db info
$db_prefix = 'pgv_';

Comments

karens’s picture

Status: Active » Fixed

No, that $db_prefix is just for the Drupal prefix and you don't want to put the PGV prefix there or your Drupal files won't work. You identify the PGV prefix on the settings page for the PhpGedView module (admin/settings/phpgedview).

Anonymous’s picture

Status: Fixed » Closed (fixed)