QUOTE(iDunzo @ Dec 13 2007, 06:26 AM)

My host doesn't allow there to be a folder called 'admin' in root. It would be nice to know if with version 3 there is a way to do this.
Well, it depends how much work you are willing to do and what tools you have available.
I used my programmer's text editor to find all occurances in the code for "/admin".
There are 18 occurances in the code and two occurances in each of the language files.
Almost all of the 18 are form action parameters and look like:
action="<?php echo $GLOBALS['rootRel'];?>admin/..."
You can either change all occurances of /admin to /whatever, then re-up your store, or create a new $GLOBALS variable, 'adminRel', and make it equal to rootRel&&whatever, and change all the instances of the code.
But there's gonna be code changes. Here's the files and line numbers:
\admin\adminusers\administrators.php(178)
\admin\adminusers\changePass.php(65)
\admin\includes\header.inc.php(57)
\admin\includes\header.inc.php(65)
\admin\includes\navigation.inc.php(102)
\admin\includes\navigation.inc.php(103)
\admin\misc\licForm.php(59)
\admin\modules\index.php(59)
\admin\modules\affiliate\iDevAffiliate\index.php(66)
\admin\modules\affiliate\JROX\index.php(64)
\includes\functions.inc.php(120)
\install\index.php(127)
\install\index.php(575)
\install\index.php(743)
\install\index.php(744)
\modules\gateway\HSBC\form.inc.php(47)
(This is for 3.0.15)