Small Problem on the administration Forums the error is Access Denied
Only open modules/Forums/admin/forums.php
-------Find Code------
if (!eregi("admin.php", $_SERVER['SCRIPT_NAME'])) { die ("Access Denied"); }
------Replace with------
global $admin_file;
if (!eregi("".$admin_file.".php", $_SERVER['SCRIPT_NAME'])) { die ("Access Denied"); }
by CoyoWeb