You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the 'Merge Players' function on the admin page results in this error:
Career highs and player count.... Fatal error: Uncaught Error: Call to a member function fetch() on boolean in /volume1/homes/ed/www/utstatsdb/includes/logsql.php:156 Stack trace: #0 /volume1/homes/ed/www/utstatsdb/includes/plrmerge.php(268): sql_fetch_assoc(false) #1 /volume1/homes/ed/www/utstatsdb/includes/adminmerge.php(220): player_merge(27, 1) #2 /volume1/homes/ed/www/utstatsdb/admin.php(273): mergeexecute() #3 {main} thrown in /volume1/homes/ed/www/utstatsdb/includes/logsql.php on line 156
The problem, as indicated above, is in the 'includes/plmerge.php' file, where the fetch fails because the SELECT statement includes two fields which do not exist in the 'ut_totals' table: tl_chflakmonkey_plr and tl_chcombowhore_plr (located on lines 246-247).
Removing these two lines, with the non-existing field names, resolved the issue.
The text was updated successfully, but these errors were encountered:
Using the 'Merge Players' function on the admin page results in this error:
The problem, as indicated above, is in the 'includes/plmerge.php' file, where the fetch fails because the SELECT statement includes two fields which do not exist in the 'ut_totals' table: tl_chflakmonkey_plr and tl_chcombowhore_plr (located on lines 246-247).
Removing these two lines, with the non-existing field names, resolved the issue.
The text was updated successfully, but these errors were encountered: