There are only 3 edits in the admin configure.php that are required
Say it currently reads, in order of appearance
Code:
define('DIR_WS_ADMIN', '/admin/');
define('DIR_WS_HTTPS_ADMIN', '/admin/');
define('DIR_FS_ADMIN', '/home/account/public_html/admin/');
you just remane the admin directory with FTP and change the 3 entries to match
So if the new directory name is "secret"(note all lowercase)but not required just so long as they match
Code:
define('DIR_WS_ADMIN', '/secret/');
define('DIR_WS_HTTPS_ADMIN', '/secret/');
define('DIR_FS_ADMIN', '/home/account/public_html/secret/');
"account" is your account name whatever that is
And yours maybe htdocs or something else versus public_html depending upon your server
Should be simple and no magic