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!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.
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.
$rank->hideGM = $_config['HideGM'];
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'];
Here Try this.
open index.php
add this line
AFTER " $rank = new RankController; "PHP:$rank->hideGM = $_config['HideGM'];
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'];