<?php
/***************************************************************************
* common.inc.php
* -------------------
* begin : mier, mayo 2, 2007
* copyright : (C)
* email : hide@address.com
* Desc : Hold website and application general settings
*
***************************************************************************/
if ( !defined('IN_ADSERVER') ) {
die("Hacking attempt");
}
//General Settings
$main_title = "Estigi Ads Server";
$main_Email = "hide@address.com";
$s_tpl = "estigi"; /* This is the name of the folder for your template */
$s_lang = "en"; //Use the same name as in the directory located at locale
$file_Max_Size = "200000000";//In bites This is limited by the PHP instalation and will overide any individual settings for banner types
$default_User_State = 1; //Not used at the moment, but should be 1
$cookieName = "ads";
$cookieTime = "30600"; //In Seconds
$debug = 1; /* 1=Yes 0=No Store some debuging information. See Help file for more */
//Database
$db_Host = "localhost";
$db_User = "root";
$db_Pwd = "";
$db_Pre = "ads_";
$db_Db = "ads"; //Database Name
?>