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
Error updating to 4.3 - Issue with logger function
#1
Hi

Get this error on the 2nd part of the update:

Fatal error: Uncaught Error: Call to undefined function logger() in C:\Dropbox\Just Claim IT\Dev\repos\jci-webapp\users\update.php:34 Stack trace: #0 {main} thrown in C:\Dropbox\Just Claim IT\Dev\repos\jci-webapp\users\update.php on line 34

I am assuming that logger function is not being pulled from one of the classes... Here is by init.php to make sure i got it right:

<?php
session_start();
$abs_us_root=$_SERVER['DOCUMENT_ROOT'];

$self_path=explode("/", $_SERVER['PHP_SELF']);
$self_path_length=count($self_path);
$file_found=FALSE;

for($i = 1; $i < $self_path_length; $i++){
array_splice($self_path, $self_path_length-$i, $i);
$us_url_root=implode("/",$self_path)."/";

if (file_exists($abs_us_root.$us_url_root.'z_us_root.php')){
$file_found=TRUE;
break;
}else{
$file_found=FALSE;
}
}

require_once $abs_us_root.$us_url_root.'users/classes/class.autoloader.php';
require_once $abs_us_root.$us_url_root.'users/helpers/helpers.php';

// Set config
$GLOBALS['config'] = array(
'mysql' => array('host' => 'localhost',
'username' => 'Username',
'password' => 'Password123',
'db' => 'jci_main',
),
'remember' => array(
'cookie_name' => 'pmqesoxiw388779csb',
'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

$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();

}
}

//Set Time Zone string
//php.net/manual/en/timezones.php
$timezone_string="Africa/Johannesburg";
date_default_timezone_set($timezone_string);

// Adding more ids to this array allows people to access everything, whether offline or not. Use caution.
$master_account = [1];

//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('users/verify.php');
}
}
  Reply
#2
I have searched all the classes and cant find the logger function...?
  Reply
#3
ok guys - nvm - seemed that all the files did not get overwritten properly... silly me - my bad
  Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)