//website name - show in title
$site_name = "Solincitta'";
//website url - use in serveral place
$site_url = "http://www.solincitta.it"; //end without fore slash
$script_dir = "/solincitta"; //start with foreslash, end without fore slash. If you install in root directory or subdomain, just
put fore slash.
// path
$home_path = $_SERVER['DOCUMENT_ROOT']; //end without fore slash
$script_path = $home_path . $script_dir; //end without fore slash
// the /friend directory was only an exemple..
$system_email = "xxxx@email.it";
$customerservice_email = "xxxx@email.it";
$testaccount_email = "xxxx@email.it";
//set locale time
setlocale(LC_TIME,"it_IT");
$zone = 1;
$now = strtotime("now");
$member_photo_path = $script_path . "/member_photos"; //end without fore slash
$member_photo_original_path = $member_photo_path . "/originals"; //end without fore slash
$member_dir = "/member_photos";
$photo_url = $site_url . $script_dir . $member_dir;
$photo_size_limit = 204800;
$thumbnail_w = "90";
$thumbnail_h = "90";
$large_w = "400";
$large_h = "300";
$profile_per_page = 5;
//==============================================//
//mysql section
//==============================================//
//mysql login
$hostname = "sql.solincitta.it";
$database = "solincit97675";
$username = "solincit97675";
$password = "xxxxx856";
|