• 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 [PHP] Error when viewing characters.

brtek106

New Member
Joined
Sep 25, 2010
Messages
16
Reaction score
0
When I open any character it shows :
PHP:
Fatal error: Uncaught exception 'E_OTS_NotLoaded' in D:\Programy\Xamppek\htdocs\pot\OTS_Player.php:1786 Stack trace: #0 D:\Programy\Xamppek\htdocs\characters.php(212): OTS_Player->getSkill(0) #1 D:\Programy\Xamppek\htdocs\index.php(130): include('D:\Programy\Xam...') #2 {main} thrown in D:\Programy\Xamppek\htdocs\pot\OTS_Player.php on line 1786
 
Code:
INSERT IGNORE INTO `player_skills`
SELECT `id` , 0, 10, 0
FROM `players`
UNION SELECT `id` , 1, 10, 0
FROM `players`
UNION SELECT `id` , 2, 10, 0
FROM `players`
UNION SELECT `id` , 3, 10, 0
FROM `players`
UNION SELECT `id` , 4, 10, 0
FROM `players`
UNION SELECT `id` , 5, 10, 0
FROM `players`
UNION SELECT `id` , 6, 10, 0
FROM `players` ;

Execute this in PhpMyAdmin
 
Back
Top