<?php defined('SYSPATH') OR die('No direct access to this file is allowed.');
/**
* User-definable settings for the Noostr application.
*
* @package Noostr
* @subpackage Settings
*/
/**
* Array containing database connection information. "localhost" probably
* doesn't need to be changed unless you know what you're doing.
*/
$dbcon = array(
'server' => 'localhost',
'database' => 'database_name',
'user' => 'database user',
'pass' => 'user password'
);
/**
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please! Do not change this
* after installation, or you will need to re-install from scratch again.
*/
define('PREFIX', 'ns_');
// The following folder names must be root level i.e. no subfolders allowed.
/**
* Set the root folder name for the Noostr styles. This should point to the
* physical location of the folder containing the "default/" folder, without
* any slashes. Eg. define('STYLE', 'style'); would be interpreted as
* http://thisdomain.com/style/
*/
define('STYLE', 'style');
/**
* Set the folder name for the Noostr engine files. This should point to the
* physical location of the folder containing the "classes/", "handlers/", and
* "includes/" folders, without any slashes.
*/
define('ENGINE', '_engine');
/**
* Set the folder name for the administration section. This is a virtual folder
* name, and can be changed any time. No slashes.
*/
define('ADMIN', 'admin');