File: //opt/cloudlinux/alt-php54/root/usr/share/pear/RVSeagullMod/modules/faqweb/www/inc/rvdata.php
<?php
$DB["db"] = (SGL_Config::get('db.name')) ? SGL_Config::get('db.name') : 'seagull_mod';
$DB["prefix"] = (SGL_Config::get('db.prefix')) ? SGL_Config::get('db.prefix') . 'faqweb_' : 'web_faqweb_';
$DB["server"] = (SGL_Config::get('db.host')) ? SGL_Config::get('db.host') : 'localhost';
$DB["user"] = (SGL_Config::get('db.user')) ? SGL_Config::get('db.user') : 'root';
$DB["password"] = (SGL_Config::get('db.pass')) ? SGL_Config::get('db.pass') : '';
$sglDbTypy = (SGL_Config::get('db.type')) ? SGL_Config::get('db.type') : 'mysql';
$DB["type"] = ($sglDbTypy == 'mysql_SGL') ? 'mysql' : $sglDbTypy;
$SGL_COOKIE['path'] = (SGL_Config::get('cookie.path')) ? (SGL_Config::get('cookie.path')) : '/';
$SGL_COOKIE['domain'] = (SGL_Config::get('cookie.domain')) ? (SGL_Config::get('cookie.domain')) : '';
$SGL_COOKIE['secure'] = (SGL_Config::get('cookie.secure')) ? (SGL_Config::get('cookie.secure')) : '';
$PMF_LANG['rvs_page_title'] = (SGL_Config::get('faqweb.title')) ? (SGL_Config::get('faqweb.title')) : '';
?>