• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows Gesior Accountmanagment Bug

hallabackkid101

New Member
Joined
Feb 7, 2009
Messages
100
Reaction score
0
Location
Georgia, Usa
Can anyone help me solve this issue? Im new to the websites.

PHP:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S02]: Base table or view not found: 1146 Table 'war.groups' doesn't exist' in C:\xampplite\htdocs\pot\OTS_Group.php:48 Stack trace: #0 C:\xampplite\htdocs\pot\OTS_Group.php(48): PDO->query('SELECT `id`, `n...') #1 C:\xampplite\htdocs\pot\OTS_Player.php(302): OTS_Group->load('1') #2 C:\xampplite\htdocs\accountmanagement.php(472): OTS_Player->getGroup() #3 C:\xampplite\htdocs\index.php(134): include('C:\xampplite\ht...') #4 {main} thrown in C:\xampplite\htdocs\pot\OTS_Group.php on line 48
 
Well, it is saying that you are missing a table called "war.groups", if you are using any war-system, add the tables that came with the war-system to your database (SQL).
 
Well, it is saying that you are missing a table called "war.groups", if you are using any war-system, add the tables that came with the war-system to your database (SQL).

It's missing the table groups, war is the database name. :p
 
Last edited:
yep,

Code:
[COLOR=#993333][B]CREATE[/B][/COLOR] [COLOR=#993333][B]TABLE[/B][/COLOR] [COLOR=#ff0000]`groups`[/COLOR]
 [COLOR=#66cc66]([/COLOR]
        [COLOR=#ff0000]`id`[/COLOR] INT [COLOR=#993333][B]NOT[/B][/COLOR] [COLOR=#993333][B]NULL[/B][/COLOR] [COLOR=#993333][B]AUTO_INCREMENT[/B][/COLOR][COLOR=#66cc66],[/COLOR]
        [COLOR=#ff0000]`name`[/COLOR] VARCHAR[COLOR=#66cc66]([/COLOR][COLOR=#cc66cc]255[/COLOR][COLOR=#66cc66])[/COLOR] [COLOR=#993333][B]NOT[/B][/COLOR] [COLOR=#993333][B]NULL[/B][/COLOR] COMMENT [COLOR=#ff0000]'group name'[/COLOR][COLOR=#66cc66],[/COLOR]
        [COLOR=#ff0000]`flags`[/COLOR] BIGINT [COLOR=#993333][B]UNSIGNED[/B][/COLOR] [COLOR=#993333][B]NOT[/B][/COLOR] [COLOR=#993333][B]NULL[/B][/COLOR] [COLOR=#993333][B]DEFAULT[/B][/COLOR] [COLOR=#cc66cc]0[/COLOR][COLOR=#66cc66],[/COLOR]
        [COLOR=#ff0000]`access`[/COLOR] INT [COLOR=#993333][B]NOT[/B][/COLOR] [COLOR=#993333][B]NULL[/B][/COLOR][COLOR=#66cc66],[/COLOR]
        [COLOR=#ff0000]`maxdepotitems`[/COLOR] INT [COLOR=#993333][B]NOT[/B][/COLOR] [COLOR=#993333][B]NULL[/B][/COLOR][COLOR=#66cc66],[/COLOR]
        [COLOR=#ff0000]`maxviplist`[/COLOR] INT [COLOR=#993333][B]NOT[/B][/COLOR] [COLOR=#993333][B]NULL[/B][/COLOR][COLOR=#66cc66],[/COLOR]
        [COLOR=#993333][B]PRIMARY[/B][/COLOR] [COLOR=#993333][B]KEY[/B][/COLOR] [COLOR=#66cc66]([/COLOR][COLOR=#ff0000]`id`[/COLOR][COLOR=#66cc66])[/COLOR]
 [COLOR=#66cc66])[/COLOR] ENGINE [COLOR=#66cc66]=[/COLOR] InnoDB;
 
Use a compatible AAC with your server distribution/DB schema. It seems you're using TFS 0.3 or newer, so get an updated Website AAC

Otherwise you may or may not run into more problems, the above post is a hack to get it to work
 
Use a compatible AAC with your server distribution/DB schema. It seems you're using TFS 0.3 or newer, so get an updated Website AAC

Otherwise you may or may not run into more problems, the above post is a hack to get it to work

Hey, I love you! Bye!
 
Use a compatible AAC with your server distribution/DB schema. It seems you're using TFS 0.3 or newer, so get an updated Website AAC

Otherwise you may or may not run into more problems, the above post is a hack to get it to work

I need help with that, Ive tryed but I cant seem to find one. Im not really experienced around the whole website concept, is there anyway you might can possibly provide me with a link? I use cryingdamson 0.3.6 (8.60) v8.2

- - - Updated - - -

Also, I get error after error lol, so I might need to take cyko's advice, can anyone help me?
 
Back
Top