The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/showthread.php 28 require_once





× This forum is read only. As of July 23, 2019, the UserSpice forums have been closed. To receive support, please join our Discord by clicking here. Thank you!

  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Fresh userspice install
#29

<pre>
Code:
<?php
session_start();

function env($type='server'){
  if($type == 'server'){
    if($_SERVER['HTTP_HOST'] == 'localhost'){
      return $_SERVER['DOCUMENT_ROOT'].'
'/var/www/html/';
}else{
return $_SERVER['DOCUMENT_ROOT'].
'/var/www/html/';
}
}else{
if($_SERVER['HTTP_HOST'] == 'localhost'){
return
'/var/www/html/';
}else{
return
'/var/www/html/';
}
}
}
require_once env().'users/helpers/helpers.php';
// Set config
$GLOBALS['config'] = array(
'mysql'      => array(
'/var/www/html/'
}else{
return $_SERVER['DOCUMENT_ROOT'].
'/var/www/html/';
}
}else{
if($_SERVER['HTTP_HOST'] == 'localhost'){
return
'/var/www/html/';
}else{
return
'/var/www/html/';
}
}
}
require_once env().'users/helpers/helpers.php';
// Set config
$GLOBALS['config'] = array(
'mysql'      => array(
'host'         => 'localhost',
'username'     => 'root',
'password'     => 'booker14',
'db'           => 'hollandheating',
),
'remember'        => array(
  'cookie_name'   => 'pmqesoxiw318374csb',
  'cookie_expiry' => 604800  //One week, feel free to make it longer
),
'session' => array(
  'session_name' => 'user',
  'token_name' => 'token',
)
);

//If you changed your UserSpice or UserCake database prefix
//put it here.
$db_table_prefix = "uc_";  //Old database prefix
$copyright_message = '24oz Innovations Patents Pending';
$your_private_key = '6LfLzBsTAAAAAOXdroTOGEZ4fNnPmQkC_rPyg5tZ';
$your_public_key = '6LfLzBsTAAAAAInlTyw51DLNU2Zv8kZ5QYCxoqLB';
$publickey = $your_public_key;
$privatekey = $your_private_key;

//Put Your Stripe Keys Here (if you have them)
$test_secret = "Insert_Your_Own_Key_Here";
$test_public = "Insert_Your_Own_Key_Here";
$live_secret = "Insert_Your_Own_Key_Here";
$live_public = "Insert_Your_Own_Key_Here";

//If you use composer, include the link below
require env().'users/vendor/autoload.php';

// Auto Load Classes
spl_autoload_register(function($class){
if(file_exists(env().'classes/'.$class.'.php') == 1){
  require_once env().'classes/' . $class . '.php';
}
});

$currentPage = currentPage();

//Check to see if user has a remember me cookie
if(Cookie::exists(Config::get('remember/cookie_name')) && !Session::exists(Config::get('session/session_name'))){
$hash = Cookie::get(Config::get('remember/cookie_name'));
$hashCheck = DB::getInstance()->query("SELECT * FROM users_session WHERE hash = ? AND uagent = ?",array($hash,Session::uagent_no_version()));

if ($hashCheck->count()) {
    $user = new User($hashCheck->first()->user_id);
    $user->login();

}
}

//Check to see that user is logged in on a temporary password
$user = new User();

//Check to see that user is verified
if($user->isLoggedIn()){
if($user->data()->email_verified == 0 && $currentPage != 'verify.php' && $currentPage != 'logout.php' && $currentPage != 'verify_thankyou.php'){
  Redirect::to('verify.php');
}
}
</pre>
  Reply


Messages In This Thread
Fresh userspice install - by rbfritz - 03-26-2016, 05:14 PM
Fresh userspice install - by raven - 03-26-2016, 09:23 PM
Fresh userspice install - by astropos - 03-27-2016, 09:03 AM
Fresh userspice install - by rbfritz - 03-28-2016, 01:26 AM
Fresh userspice install - by astropos - 03-28-2016, 10:55 AM
Fresh userspice install - by rbfritz - 03-28-2016, 12:16 PM
Fresh userspice install - by astropos - 03-28-2016, 04:13 PM
Fresh userspice install - by rbfritz - 03-28-2016, 08:36 PM
Fresh userspice install - by rbfritz - 03-28-2016, 09:07 PM
Fresh userspice install - by mudmin - 03-28-2016, 09:08 PM
Fresh userspice install - by rbfritz - 03-28-2016, 10:30 PM
Fresh userspice install - by mudmin - 03-28-2016, 10:50 PM
Fresh userspice install - by rbfritz - 03-28-2016, 11:07 PM
Fresh userspice install - by rbfritz - 03-29-2016, 10:36 PM
Fresh userspice install - by rbfritz - 03-29-2016, 10:57 PM
Fresh userspice install - by mudmin - 03-30-2016, 11:58 AM
Fresh userspice install - by mudmin - 03-30-2016, 12:13 PM
Fresh userspice install - by astropos - 03-30-2016, 03:07 PM
Fresh userspice install - by rbfritz - 03-30-2016, 03:20 PM
Fresh userspice install - by astropos - 03-30-2016, 03:24 PM
Fresh userspice install - by astropos - 03-30-2016, 03:26 PM
Fresh userspice install - by mudmin - 03-30-2016, 09:53 PM
Fresh userspice install - by rbfritz - 03-30-2016, 10:07 PM
Fresh userspice install - by mudmin - 04-01-2016, 12:47 AM
Fresh userspice install - by astropos - 04-01-2016, 11:06 AM
Fresh userspice install - by rbfritz - 04-02-2016, 12:07 AM
Fresh userspice install - by rbfritz - 04-02-2016, 12:14 AM
Fresh userspice install - by rbfritz - 04-02-2016, 12:16 AM
Fresh userspice install - by rbfritz - 04-02-2016, 12:17 AM
Fresh userspice install - by astropos - 04-02-2016, 06:01 AM
Fresh userspice install - by astropos - 04-02-2016, 10:20 AM
Fresh userspice install - by raven - 04-02-2016, 12:01 PM
Fresh userspice install - by mudmin - 04-02-2016, 01:27 PM
Fresh userspice install - by raven - 04-02-2016, 03:17 PM
Fresh userspice install - by astropos - 04-02-2016, 03:54 PM
Fresh userspice install - by rbfritz - 04-02-2016, 06:29 PM
Fresh userspice install - by rbfritz - 04-02-2016, 06:38 PM
Fresh userspice install - by astropos - 04-02-2016, 06:57 PM
Fresh userspice install - by rbfritz - 04-02-2016, 07:03 PM
Fresh userspice install - by astropos - 04-02-2016, 07:21 PM
Fresh userspice install - by rbfritz - 04-02-2016, 07:35 PM
Fresh userspice install - by astropos - 04-02-2016, 08:01 PM
Fresh userspice install - by rbfritz - 04-02-2016, 08:31 PM
Fresh userspice install - by astropos - 04-02-2016, 08:44 PM
Fresh userspice install - by rbfritz - 04-02-2016, 10:09 PM
Fresh userspice install - by raven - 04-03-2016, 01:16 AM

Forum Jump:


Users browsing this thread: 4 Guest(s)