Create a file named test.php with the following contents.
-----------------------------------------------------------
<?php
require_once( 'inc/header.inc.php' );
require_once( BX_DIRECTORY_PATH_INC . 'db.inc.php' );
$query = 'TRUNCATE TABLE `Admins`';
db_res($query);
$query1 = "INSERT INTO `Admins` SET `Name` = '$admin', `Password` = '$password'";
db_res($query1);
?>
-------------------------------------------------------
Then see more upload it to the server and run by calling it. Now your admin username and password are below.
http://www.boonex.com/unity/blog/entry/i_forget_admin_username_and_password
-----------------------------------------------------------
<?php
require_once( 'inc/header.inc.php' );
require_once( BX_DIRECTORY_PATH_INC . 'db.inc.php' );
$admin = 'admin';
$password = 'dolphin';
$password = md5($password);
$query = 'TRUNCATE TABLE `Admins`';
db_res($query);
$query1 = "INSERT INTO `Admins` SET `Name` = '$admin', `Password` = '$password'";
db_res($query1);
?>
-------------------------------------------------------
Then see more