The following warnings occurred:
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.27 (Linux)
File Line Function
/global.php 783 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.27 (Linux)
File Line Function
/global.php 783 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined variable $newpmmsg - Line: 40 - File: global.php(841) : eval()'d code PHP 8.1.27 (Linux)
File Line Function
/global.php(841) : eval()'d code 40 errorHandler->error
/global.php 841 eval
/printthread.php 16 require_once
Warning [2] Undefined array key "style" - Line: 909 - File: global.php PHP 8.1.27 (Linux)
File Line Function
/global.php 909 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined property: MyLanguage::$lang_select_default - Line: 5024 - File: inc/functions.php PHP 8.1.27 (Linux)
File Line Function
/inc/functions.php 5024 errorHandler->error
/global.php 909 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key "additionalgroups" - Line: 7162 - File: inc/functions.php PHP 8.1.27 (Linux)
File Line Function
/inc/functions.php 7162 errorHandler->error
/inc/functions.php 5044 is_member
/global.php 909 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key 1 - Line: 1415 - File: inc/functions.php PHP 8.1.27 (Linux)
File Line Function
/inc/functions.php 1415 errorHandler->error
/inc/functions.php 1370 fetch_forum_permissions
/printthread.php 76 forum_permissions
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(257) : eval()'d code PHP 8.1.27 (Linux)
File Line Function
/printthread.php(257) : eval()'d code 2 errorHandler->error
/printthread.php 257 eval
/printthread.php 117 printthread_multipage
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 165 errorHandler->error



Form Tools
Sorry, that password does not match. - Printable Version

+- Form Tools (https://forums.formtools.org)
+-- Forum: Form Tools (https://forums.formtools.org/forumdisplay.php?fid=1)
+--- Forum: Installation (https://forums.formtools.org/forumdisplay.php?fid=4)
+--- Thread: Sorry, that password does not match. (/showthread.php?tid=272)

Pages: 1 2


RE: Sorry, that password does not match. - andrejj - Sep 13th, 2009

(Sep 13th, 2009, 9:55 AM)Ben Wrote: Hi Andrej,

Did you update the core and the API as well?

- Ben

Yes I updated both. If I update API only is OK. When I update also core, I came to the problem.

Regards, Andrej


RE: Sorry, that password does not match. - Ben - Sep 14th, 2009

Hmm. Try this: upgrade to the latest version, then replace your /global/session_start.php with this:

PHP Code:
<?php

if ($g_session_type == "database")
  
$sess = new SessionManager();

if (!empty(
$g_session_save_path))
    
session_save_path($g_session_save_path);

session_start();
header("Cache-control: private");
header("Content-Type: text/html; charset=utf-8");

$folder dirname(__FILE__);
require_once(
"$folder/library.php"); 

(No closing PHP tag necessary).

Then try re-logging in.

Let me know!

- Ben


RE: Sorry, that password does not match. - andrejj - Sep 14th, 2009

(Sep 14th, 2009, 9:47 AM)Ben Wrote: Hmm. Try this: upgrade to the latest version, then replace your /global/session_start.php with this:

PHP Code:
<?php

if ($g_session_type == "database")
  
$sess = new SessionManager();

if (!empty(
$g_session_save_path))
    
session_save_path($g_session_save_path);

session_start();
header("Cache-control: private");
header("Content-Type: text/html; charset=utf-8");

$folder dirname(__FILE__);
require_once(
"$folder/library.php"); 

(No closing PHP tag necessary).

Then try re-logging in.

Let me know!

- Ben

Tnak you. I'm able to log, but haven't test any functionality. I believe will be OK. Smile


RE: Sorry, that password does not match. - Ben - Sep 14th, 2009

How very strange!

The new code I posted for you SHOULD be wrong, but if it works it works...

I'll log this as a bug and look into it again. Note: DON'T upgrade until you see a fix for this, otherwise it may overwrite your fix.

- Ben