• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Gesior acc website Bugs.

frozenbolt

New Member
Joined
Jul 17, 2012
Messages
48
Reaction score
0
Hello Otland ,

i have a question i have dowloaded and installed gesior 0.3.4(beta4) fixed v5.

When I'am Press , Logout or Login or Creat Account it redirecting to otland.net/forum.

When i want to :

?subtopic=polls creat polls > come blank page

?subtopic=bugtracker bugtracker > come blank page

I use [8.60] The Lost Server 0.3.6 , what for Gesior / Modern Acc can i used for ?


Pleas anserw solution here or assistance me on Teamwiever.
 
You need to configure account management redirection in layout.php, and for polls and bugtracker, be shure that the subtopics are added correctly in index.php
 
from stop redirect otland only enter config.lua
and search otland.net in url and delete.. in -- status

this:
change
LUA:
url = "http://otland.net"
for
LUA:
url = ""

now for fix error in gesior
search this:
LUA:
	case "tibiarules";
		$topic = "Server Rules";
		$subtopic = "tibiarules";
		include("tibiarules.php");
	break;

and down paste this:

LUA:
      case "polls";
        $topic = "Polls";
        $subtopic = "polls";
        include("polls.php");
    break;

and
LUA:
case "bugtracker";
        $topic = "Bug Tracker";
        $subtopic = "bugtracker";
        include("bug.php");
    break;

@Edit need querys.. ;)

Now Execute next querys:
goto /phpmyadmin - SQL
and paste this
SQL:
CREATE TABLE z_bug_tracker (
  account varchar(255) NOT NULL,
  `type` int(11) NOT NULL,
  `status` int(11) NOT NULL,
  `text` text NOT NULL,
  id int(11) NOT NULL,
  `subject` varchar(255) NOT NULL,
  priority int(11) NOT NULL,
  reply int(11) NOT NULL,
  who int(11) NOT NULL,
  uid int(11) NOT NULL AUTO_INCREMENT,
  tag int(11) NOT NULL,
  PRIMARY KEY (uid)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;
and this
SQL:
CREATE TABLE IF NOT EXISTS `z_forum` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sticky` tinyint(1) NOT NULL DEFAULT '0',
  `closed` tinyint(1) NOT NULL DEFAULT '0',
  `first_post` int(11) NOT NULL DEFAULT '0',
  `last_post` int(11) NOT NULL DEFAULT '0',
  `section` int(3) NOT NULL DEFAULT '0',
  `icon_id` int(3) NOT NULL DEFAULT '1',
  `replies` int(20) NOT NULL DEFAULT '0',
  `views` int(20) NOT NULL DEFAULT '0',
  `author_aid` int(20) NOT NULL DEFAULT '0',
  `author_guid` int(20) NOT NULL DEFAULT '0',
  `post_text` text NOT NULL,
  `post_topic` varchar(255) NOT NULL,
  `post_smile` tinyint(1) NOT NULL DEFAULT '0',
  `post_date` int(20) NOT NULL DEFAULT '0',
  `last_edit_aid` int(20) NOT NULL DEFAULT '0',
  `edit_date` int(20) NOT NULL DEFAULT '0',
  `post_ip` varchar(32) NOT NULL DEFAULT '0.0.0.0',
  PRIMARY KEY (`id`),
  KEY `section` (`section`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=67 ;
 
Last edited:
Back
Top