You may create a file called administration.php, with the following content:
<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2006 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit http://gnu.org
+----------------------------------------------------*/
require_once "maincore.php";
require_once "subheader.php";
require_once "side_left.php";
if (iADMIN) {
redirect(ADMIN."index.php".$aidlink);
} else {
redirect(BASEDIR."index.php");
}
require_once "side_right.php";
require_once "footer.php";
?>
- that should redirect you to the admin panel...