Help Me How To Remove Information in flux

go to your cp/config/application.php

and find this code

'Information' => array( 'Server Info.' => array('module' => 'server', 'action' => 'info'), 'Server Status' => array('module' => 'server', 'action' => 'status'), 'WoE Hours' => array('module' => 'woe'), 'Castles' => array('module' => 'castle'), "Who's Online" => array('module' => 'character', 'action' => 'online'), 'Map Statistics'=> array('module' => 'character', 'action' => 'mapstats'), 'Ranking Info.' => array('module' => 'ranking', 'action' => 'character'), ),
and add comment lines or just copy this

Code:
/*'Information' => array(			'Server Info.'  => array('module' => 'server', 'action' => 'info'),			'Server Status' => array('module' => 'server', 'action' => 'status'),			'WoE Hours'     => array('module' => 'woe'),			'Castles'       => array('module' => 'castle'),			"Who's Online"  => array('module' => 'character', 'action' => 'online'),			'Map Statistics'=> array('module' => 'character', 'action' => 'mapstats'),			'Ranking Info.' => array('module' => 'ranking', 'action' => 'character'),		),*/
 
You commented the lines explained by thana wrong. 

Make sure the /* begins right before "'Information' => array("  and add the */ right bfore the last " )," within the information array. 

If you still can't get it right, show us the code you commented out.

 
Back
Top