Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Project U-232 (http://www.bvlist.com/forumdisplay.php?f=80)
-   -   No login after installation U232 V5 (http://www.bvlist.com/showthread.php?t=12319)

fr31w1ld 22nd December 2020 16:49

No login after installation U232 V5
 
Hello, I installed the u232 v5. I created everything according to instructions. if i want to log in now i just get the message

Login failed!
Error: Username or password entry incorrect
Have you forgotten your password? Recover your password!

The errorr log says
PHP Notice: Undefined variable: INSTALLER09 in /var/www/html/include/class/page_verify.php on line 39


does someone have an idea what you have to change there so that the login works? Would be very grateful for that

DND 22nd December 2020 17:30

off my nose.. my hunch is that you are using ...a different PHP version than the one that V5 was made for

fr31w1ld 22nd December 2020 17:51

PHP 7.0.33-1
MySQL 5.5. (Debian)

DND 22nd December 2020 18:00

using the latest github release ?

Asterix 22nd December 2020 18:16

on page_verify.php line 38:
Code:

global $CURUSER, $_SESSION;
should be:
Code:

global $CURUSER, $_SESSION, $INSTALLER09;

fr31w1ld 22nd December 2020 18:28

yes https://github.com/Bigjoos/U-232-V5 this one


this not work
PHP Notice: Undefined variable: INSTALLER09 in /var/www/html/include/class/page_verify.php on line 39

Asterix 22nd December 2020 18:48

Quote:

Originally Posted by fr31w1ld (Post 55173)
yes https://github.com/Bigjoos/U-232-V5 this one


this not work
PHP Notice: Undefined variable: INSTALLER09 in /var/www/html/include/class/page_verify.php on line 39


YOU NEED TO ADD GLOBAL $INSTALLER09 ON LINE 38 FOR MAKEIT WORK LINE 39;

DND 22nd December 2020 18:53

yes. you need to add the global variable.. inside the create function
the files should've been updated on the latest github version

fr31w1ld 22nd December 2020 19:05

Is it correct that way


function create($task_name = 'Default')
{
global $CURUSER, $_SESSION, $INSTALLER09;

Asterix 22nd December 2020 19:32

YEEP;


All times are GMT +2. The time now is 22:32.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.