Viewing file: config.php (865 B) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?
//**
//** Most likely you can leave this be
//**
$cookie_name = 'MyCook'; // Cookie name
$cookie_separ = ' * '; // Word that will be use as a separator in cookie
$cookie_expire = 15; // The session expire in $cookie_expire minutes of inactivity
$Log_File = '/home/mnnews/public_html/log/log.txt';
$err_query = '<br><br><br><br><br><font size=+1>An Error Occured</font><hr>Unable to connect'.
' to the database server. <BR>'; // Database, or querry error
//**
//** Your MySQL server, database, user, password will be set by install.php
//**
$dbhost = "localhost";
$dbname = "db10505c";
$dbuser = "us10505a";
$dbpasswd = "proba";
if(!$db_conect = @mysql_connect($dbhost,$dbuser,$dbpasswd)) die($err_query);
if(!@mysql_select_db($dbname,$db_conect)) die($err_query);
?>
|