<?php
// SSEP - Site Search Engine PHP-Ajax - http://coursesweb.net/

// Name and Password to logg in the Admin Panel
$admin_name = 'admin';
$admin_pass = 'ssep_P@ss^18';

// Data for connecting to MySQL database (MySQL server, user, password, database name)
$mysql['host'] = 'localhost';
$mysql['user'] = 'ssep_user';
$mysql['pass'] = 'ssep_Madrid@17';
$mysql['bdname'] = 'creative';

$lang = 'en';      // sufix of the 'lang_...txt' file with texts, in 'templ/' folder ('en' for english, 'ro' - rumano)
$search_domain = 'auto';    // in which registered domain to search ('auto' = current domain where the script is installed)

        /* FROM HERE NO NEED TO MODIFY */

//$cache_dir = 'c:/webpages/creative/application/ssep/cache/';    // folder to store search cache files
$cache_dir = 'c:/webpages/creative/application/ssep/cache/';
define('SSEP_PREFIX', 'ssep_');     // prefix of the tables in database
define('SSEP_TEMPL', 'templ/');    // folder with html /css template

include 'common.php';