• 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!

Solved Gesior acc

Og1999

New Member
Joined
Apr 1, 2015
Messages
34
Reaction score
1
Hello!

I have looked for a Gesior wesite to tfs 1.2 but can't find any...
Do someone know if there's any Gesior to tfs 1.2?
Iam using Znote right now but don't really like it, and the shop system there dont have like a directly shop system you need to type (!Shop) to get a item.

So the question is: Is there any Gesior for TFS 1.2? Please send a download page.
 
Error ID: #C-5
More info: ERROR: #C-5 : Class::ConfigPHP - Key passwordType doesn't exist.

File: C:\UniServerZ\www\classes/configphp.php Line: 96
File: C:\UniServerZ\www\classes/website.php Line: 123
File: C:\UniServerZ\www/install.php Line: 178


this happends when i try to download the latest gesior. Any ideas?

Solved
 
Last edited:
Error ID: #C-5
More info: ERROR: #C-5 : Class::ConfigPHP - Key passwordType doesn't exist.

File: C:\UniServerZ\www\classes/configphp.php Line: 96
File: C:\UniServerZ\www\classes/website.php Line: 123
File: C:\UniServerZ\www/install.php Line: 178


this happends when i try to download the latest gesior. Any ideas?

Solved
https://otland.net/threads/rules-for-the-support-board.217087/
#8.
Do not just write solved, no point in having threads that just says "Solved" and without any solution..

Remember you can also search for a problem on OTLand and you might find a thread.

Solution can be found here:
https://otland.net/threads/website-error.208358/#post-1995374
 
https://otland.net/threads/rules-for-the-support-board.217087/
#8.
Do not just write solved, no point in having threads that just says "Solved" and without any solution..

Remember you can also search for a problem on OTLand and you might find a thread.

Solution can be found here:
https://otland.net/threads/website-error.208358/#post-1995374
Yeah sorry for that..
I already solved that, When i'm creating a guild it says guild with ID 0 doesn't exist.
You have any idea why? And yes i have looked around like along time in other threads.
 
Yes i have tried that. And i can Register a Guild, but you can't manage guild or invite players etc.
Natura.zapto.org is my ip. You can test it there so you know what i mean.

Iam very greatful if you helped me! :)
What TFS version do you use?

You get this "bug" because you miss the ONCREATE inserts in the database.

TFS 1.X database example:
Code:
CREATE TRIGGER `oncreate_guilds` AFTER INSERT ON `guilds` FOR EACH ROW BEGIN INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('the Leader', 3, NEW.`id`);
INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('a Vice-Leader', 2, NEW.`id`);
INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('a Member', 1, NEW.`id`); END
 
What TFS version do you use?

You get this "bug" because you miss the ONCREATE inserts in the database.

TFS 1.X database example:
Code:
CREATE TRIGGER `oncreate_guilds` AFTER INSERT ON `guilds` FOR EACH ROW BEGIN INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('the Leader', 3, NEW.`id`);
INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('a Vice-Leader', 2, NEW.`id`);
INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('a Member', 1, NEW.`id`); END
TFS 1.2

I cant put that in SQL. i only get errors.
 
TFS 1.2

I cant put that in SQL. i only get errors.
"I only get errors"..
Would be good if we knew what kind of errors.

Run this in the SQL input
Code:
DROP TRIGGER IF EXISTS `oncreate_guilds`;

CREATE TRIGGER `oncreate_guilds` AFTER INSERT ON `guilds`
  FOR EACH ROW BEGIN
     INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('the Leader', 3, NEW.`id`);
     INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('a Vice-Leader', 2, NEW.`id`);
     INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('a Member', 1, NEW.`id`);
END
 
"I only get errors"..
Would be good if we knew what kind of errors.

Run this in the SQL input
Code:
DROP TRIGGER IF EXISTS `oncreate_guilds`;

CREATE TRIGGER `oncreate_guilds` AFTER INSERT ON `guilds`
  FOR EACH ROW BEGIN
     INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('the Leader', 3, NEW.`id`);
     INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('a Vice-Leader', 2, NEW.`id`);
     INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('a Member', 1, NEW.`id`);
END
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 3

I will delete my database and reinstall everything and check if its working.
 
Error ID: #C-5
More info: ERROR: #C-5 : Class::ConfigPHP - Key passwordType doesn't exist.

File: C:\UniServerZ\www\classes/configphp.php Line: 96
File: C:\UniServerZ\www\classes/website.php Line: 123
File: C:\UniServerZ\www/install.php Line: 178


this happends when i try to download the latest gesior. Any ideas?

Solved

just add in config this line:
passwordType = "sha1"
 
Back
Top