<?php
/*
NetworX - open-source social networks platform
Copyright (C) 2009 SocialABC, Inc. http://www.socialabc.com
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program in a file called LICENSE; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
define('SITE_URL', 'http://' . $_SERVER['HTTP_HOST'] . '/');
define('BASE_DIR', 'http://' . $_SERVER['HTTP_HOST'] . '/');
define('SESSION_TIME', 86400000); // 24 hours
define('SUPPORT_EMAIL', 'hide@address.com');
define('SYSTEM_EMAIL', 'hide@address.com');
// YouTube credentials
define('YOU_TUBE_AUTHENTIFICATION_URL', 'https://www.google.com/youtube/accounts/ClientLogin');
define('YOU_TUBE_USERNAME', '');
define('YOU_TUBE_PASSWORD', '');
define('YOU_TUBE_APPLICATION_ID', '');
define('YOU_TUBE_CLIENT_ID', '');
define('YOU_TUBE_DEVELOPER_KEY', '');
// Google Maps credentials
define('GOOGLE_MAPS_API_KEY', '');
// paypal
define('API_USERNAME', '');
define('API_PASSWORD', '');
define('API_SIGNATURE', '');
define('API_ENDPOINT', 'https://api-3t.paypal.com/nvp');
define('PAYPAL_URL', 'https://www.paypal.com/webscr&cmd=_express-checkout&token=');
// database credentials
define('DB_HOSTNAME', 'localhost');
define('DB_DATABASE', 'socialabc');
define('DB_USERNAME', 'root');
define('DB_PASSWORD', '');