PHP Classes

File: includes/lib/lobby/inc/config-sample.php

Recommend this page to a friend!
  Classes of Subin Siby   Lobby   includes/lib/lobby/inc/config-sample.php   Download  
File: includes/lib/lobby/inc/config-sample.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Lobby
Web OS to install and run Web applications
Author: By
Last change: Lobby 0.4
Date: 8 years ago
Size: 550 bytes
 

Contents

Class file image Download
<?php
/* The Configuration File - Be careful while editing */
return array(
 
'db' => array(
   
'type' => 'mysql',
   
'host' => '127.0.0.1',
   
'port' => '3306',
   
'username' => '',
   
'password' => '',
   
'dbname' => '',
   
'prefix' => 'l_'
 
),
 
/**
   * The GLOBAL unique ID of YOUR Lobby installation
   */
 
'lobbyID' => '',
 
/**
   * A Secure Identity of YOUR Lobby Installation.
   * Never reveal it TO ANYONE
   */
 
'secureID' => '',
 
'debug' => false
);
/* DO NOT EDIT THIS FILE IF YOU DON'T KNOW WHAT YOU'RE DOING - Subin */
?>