<?php
/* Database server host
* 99% localhost
*/
define('PR_DATABASE_HOST', 'localhost');
/* username for accessing database server
*/
define('PR_DATABASE_USER', 'root');
/* .... and the password
*/
define('PR_DATABASE_PASSWORD', '');
/* Name of the database
* the database must already exist
*/
define('PR_DATABASE_NAME', 'prsaar');
/* Table prefix for Prsaar tables
* ignore the name PR_DATABASE_PREFIX
* (since it should be PR_TABLE_PREFIX)
*/
define('PR_DATABASE_PREFIX', 'pr_');
/* Prsaar URL
* please enter the full url
* for example if the root directory of Prsaar is named 'profile' at
* domain example.com
* then the full url is http://example.com/profile/
* (note the last '/' in url, its necessary)
*/
define('PR_URL', 'http://example.com/profile/');
/* Finished, please do not change the codes below this horizontal line
____________________________________________________________________________
*/
$ConfigDirectory = dirname(__FILE__);
$PrsaarDirectory = rtrim($ConfigDirectory, 'pr-config');
define('PR_PATH', $PrsaarDirectory);
require_once(PR_PATH.'pr-inside/main.php');
?>