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

Cannot show character info on geisor

drentt

New Member
Joined
May 25, 2010
Messages
6
Solutions
1
Reaction score
1
well, i have other problem and i was lurking but i didnt find anything :p, when i click on the name of any character it didnt appear, i run it on debug mode but didnt show any error :S

My AAC is Geisor

Code:
Query:    SELECT `id`, `name`, `group_id`, `account_id`, `level`, `vocation`, `health`, `healthmax`, `experience`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `lookaddons`, `maglevel`, `mana`, `manamax`, `manaspent`, `soul`, `town_id`, `posx`, `posy`, `posz`, `conditions`, `cap`, `sex`, `lastlogin`, `lastip`, `save`, `skull`, `skulltime`, `lastlogout`, `blessings`, `balance`, `stamina`, `skill_fist`, `skill_fist_tries`, `skill_club`, `skill_club_tries`, `skill_sword`, `skill_sword_tries`, `skill_axe`, `skill_axe_tries`, `skill_dist`, `skill_dist_tries`, `skill_shielding`, `skill_shielding_tries`, `skill_fishing`, `skill_fishing_tries`, `deleted`, `create_ip`, `create_date`, `comment`, `hide_char` FROM `players` WHERE `name` = 'God'
SQLSTATE:    00000
Driver code:  
Error message:  
Query:    SELECT `id`, `name`, `password`, `premdays`, `lastday`, `email`, `key`, `create_ip`, `creation`, `premium_points`, `page_access`, `location`, `rlname`, `email_new`, `email_new_time`, `email_code`, `next_email`, `last_post`, `flag`, `guild_points` FROM `accounts` WHERE `id` = '8'
SQLSTATE:    00000
Driver code:  
Error message:  
Query:    SELECT `account_bans`.`account_id`, `account_bans`.`reason`, `account_bans`.`banned_at`, `account_bans`.`expires_at`, `account_bans`.`banned_by` FROM `account_bans` WHERE `account_id` = '8'
SQLSTATE:    00000
Driver code:  
Error message:  
Query:    SELECT `rank_id`, `nick` FROM `guild_membership` WHERE `player_id` = '13'
SQLSTATE:    00000
Driver code:  
Error message:  
Query:    SELECT `player_items`.`player_id`, `player_items`.`pid`, `player_items`.`sid`, `player_items`.`itemtype`, `player_items`.`count`, `player_items`.`attributes` FROM `player_items` WHERE `player_items`.`player_id` = '13'
SQLSTATE:    00000
Driver code:  
Error message:

https://imgur.com/a/PnAcA
 
Solution
anyone?
----------------
Ok i solved it, it was a problem with my PHP, i didnt had installed bcmath lib.

if someone have the same problem i solved with it, (i work on linux)

First need install the apt.
sudo apt install php-bcmath
them install the lib.
sudo apt-get install php-bcmath
and Reboot your Server or VPS
anyone?
----------------
Ok i solved it, it was a problem with my PHP, i didnt had installed bcmath lib.

if someone have the same problem i solved with it, (i work on linux)

First need install the apt.
sudo apt install php-bcmath
them install the lib.
sudo apt-get install php-bcmath
and Reboot your Server or VPS
 
Last edited:
Solution
Back
Top