Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

GM Appearing in Rankings

Joined
Dec 5, 2011
Messages
809
Reaction score
247
Location
Motherboard
Page Not Found - GM Appearing in Rankings - RaGEZONE Forums
[/URL]



#-- Rankings Setting
$_config['HideGM'] true;

Someone help me? =
 
try to restore another database. refresh your database. it happened to me bro. then i delete my current database and restore it again but make sure to back up it first. refresh refresh.. hope this gives you an idea.
 
Upvote 0
try to restore another database. refresh your database. it happened to me bro. then i delete my current database and restore it again but make sure to back up it first. refresh refresh.. hope this gives you an idea.

Sir, i do what you said, i delete my database and restore it , twice but i have same problem. jerico please help
 
Upvote 0
Here Try this.
open index.php
add this line
PHP:
$rank->hideGM = $_config['HideGM'];
AFTER " $rank = new RankController; "


See if it works...
it should look like this
PHP:
include_once('root.inc.php');
include_once('lib/logic/News.php');
include_once('control/ctl_news.inc.php');
include_once('control/ctl_rank.inc.php');
include_once('control/ctl_vote.inc.php');
$news = new NewsController;
$rank = new RankController;
$rank->hideGM = $_config['HideGM'];
 
Upvote 0
Here Try this.
open index.php
add this line
PHP:
$rank->hideGM = $_config['HideGM'];
AFTER " $rank = new RankController; "


See if it works...
it should look like this
PHP:
include_once('root.inc.php');
include_once('lib/logic/News.php');
include_once('control/ctl_news.inc.php');
include_once('control/ctl_rank.inc.php');
include_once('control/ctl_vote.inc.php');
$news = new NewsController;
$rank = new RankController;
$rank->hideGM = $_config['HideGM'];


It Works thanks sir jerico.. more power to you
 
Upvote 0
Back