Вход Регистрация
Файл: includes/Config.sample.php
Строк: 74
<?php 
/**
 * ====================================================================================
 *                           PremiumMediaScript (c) KBRmedia
 * ----------------------------------------------------------------------------------
 * @copyright This software is exclusively sold at CodeCanyon.net. If you have downloaded this
 *            from another site or received it from someone else than me, then you are engaged
 *            in an illegal activity. You must delete this software immediately or buy a proper
 *            license from http://codecanyon.net/user/KBRmedia/portfolio?ref=KBRmedia.
 * ====================================================================================
 *
 *
 * @author KBRmedia (http://gempixel.com)
 * @link http://gempixel.com 
 * @license http://gempixel.com/license
 * @package Easy_Media_Script
 * @subpackage Configuration_File
 */
// Database Configuration
  
$dbinfo = array(
    
"host" => 'RHOST',        // Your mySQL Host (usually Localhost)
    
"db" => 'RDB',            // The database where you have dumped the included sql file
    
"user" => 'RUSER',        // Your mySQL username
    
"password" => 'RPASS',    //  Your mySQL Password 
    
"prefix" => 'RPRE'      // Prefix for your tables if you are using same db for multiple scripts, e.g. short_
  
);

  
$config = array(
    
// Your Server's Timezone - List of available timezones (Pick the closest): https://php.net/manual/en/timezones.php
    
"timezone" => date_default_timezone_get(),
    
// Use CDN to host libraries for faster loading
    
"cdn" => TRUE,
    
// Enable mode_rewrite? e.g. user/login instead of index.php?a=user/login
    
"mod_rewrite" => TRUE,    
    
// Enable Compression? Makes your website faster
    
"gzip" => TRUE,
    
/*
     ====================================================================================
     *  Security Key & Token - Please don't change this if your site is live.
     * ----------------------------------------------------------------------------------
     *  - Setup a security phrase - This is used to encode some important user 
     *    information such as password. The longer the key the more secure they are.
     *
     *  - If you change this, many things such as user login and even admin login will 
     *    fail.
     *
     *  - If the two config below don't have any values or have RKEY or RPUB, replace these by a random key.
     ====================================================================================
    */
    
"security" => 'RKEY',  // !!!! DON'T CHANGE THIS IF YOUR SITE IS LIVE !!!!
    
"public_token" => 'RPUB'// This is randomly generated and it is a public key

    
"debug" => 0,   // Enable debug mode (outputs errors) - 0 = OFF, 1 = Error message, 2 = Error + Queries (Don't enable this if your site is live!)
    
"demo" => // Demo mode
  
);

// Include core.php
include ('Core.php');
Онлайн: 0
Реклама