The following warnings occurred: | ||||||||||||
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.2.25 (Linux)
|
Error updating to 4.3 - Issue with logger function - Printable Version +- UserSpice (https://userspice.com/forums) +-- Forum: Support Center (https://userspice.com/forums/forumdisplay.php?fid=23) +--- Forum: UserSpice 4.3 and Below (https://userspice.com/forums/forumdisplay.php?fid=26) +--- Thread: Error updating to 4.3 - Issue with logger function (/showthread.php?tid=865) |
Error updating to 4.3 - Issue with logger function - muhammedc - 12-01-2017 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'); } } Error updating to 4.3 - Issue with logger function - muhammedc - 12-01-2017 I have searched all the classes and cant find the logger function...? Error updating to 4.3 - Issue with logger function - muhammedc - 12-01-2017 ok guys - nvm - seemed that all the files did not get overwritten properly... silly me - my bad |