<?php
// set config array
$config = array();
// general configs
$config['license_key'] = "xxxxxxxxxxxx"; // your license key (this can be found in your customer area)
$config['site_name'] = "xxxxxx"; // your site name (eg. OxiShare)
$config['site_url'] = "xxxxxxxxxx"; // the full url to your site (eg. http://www.mysite.com)
$config['base_path'] = "xxxxxxxxxxxxl"; // the full server path to your site (eg. /home/mysite/public_html)
$config['upload_path'] = $config['base_path'] . "/uploads/"; // the full path to uploads folder (DO NOT ALTER UNLESS YOU NEED TO)
$config['template'] = "fresh"; // the name of the template folder you are using (eg. default)
$config['language'] = "english"; // the language used for your site (eg. french)
// emails config
$config['admin_email'] = "[email protected]"; // the email address of a site admin
$config['paypal_email'] = ""; // registered paypal email address for payments
$config['email_admin_new_upload'] = false; // send admin an email when a new file is uploadec (true or false)
// payments config
$config['paypal_test'] = false; // enable paypal sandbox mode for testing (true or false)
$config['currency_code'] = "USD"; // payment currency code (eg. GBP, USD)
$config['currency_symbol'] = "$"; // payment currency symbol (eg. $, £)
// download config
$config['deldays'] = "2"; // number of days before a file is deleted if it has not been accessed
$config['wait_for_link'] = "60"; // number of seconds a user has to wait before downloading a file (non premium)
$config['download_speed'] = "120"; // max download speed for non premium members
$config['free_down_limit'] = "5"; // max number of files per hour a non premium user can download
// upload config
$config['max_upload_reg'] = "262144000"; // max file size for un-registered members
$config['max_upload_prem'] = "524288000"; // max file size for registered members
// ads config
$config['adsense_pub_id'] = "pub-6801288011514477"; // your adsense publisher id (this is found in your adsense account)
// Site features config
$config['enable_file_search'] = true; // enable users to search all uploaded files unless file is set to private (true or false)
?>