I know a lot of people do this but apps.cfm is not necessary if you are using individual sites for each farcry app. It's only a requirement if you are running multiple apps under a single domain -- typically a development environment. Delete apps.cfm and see if it doesn't still work.

I personally set up a separate website for each site I'm working on from my workstation and delete apps.cfm completely.

-- geoff
http://www.dameon.com.au/

Andrew Mercer wrote:
this is also how you access multiple sites
<cfscript>
stApps = structNew();
stApps['127.0.0.1'] = 'mySite';
stApps['localhost'] = 'mySite';
stApps['mySite.com.au'] = 'mySite';

stApps['myOtherSite.com.au'] = ''otherSite;

</cfscript>

each site needs a unique address
if you are working on one box you can have at least two site
stApps['127.0.0.1'] = 'siteOne';
stApps['localhost'] = 'siteTwo';


On Wed, 17 Nov 2004 16:57:39 +1100, ABCB <[EMAIL PROTECTED]> wrote:

Hi Andrew,

That was exactly the problem, once I put our domain name address into the
file it worked better than a bought one (as the saying goes).

Cheers :)

David Kearins


"Andrew Mercer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]



does your apps.cfm have and entry for all name you want to access the

server by?

eg
<cfscript>
stApps = structNew();
stApps['127.0.0.1'] = 'mySite';
stApps['localhost'] = 'mySite';
stApps['mySite.com.au'] = 'mySite';

</cfscript>


On Wed, 17 Nov 2004 13:10:14 +1100, ABCB <[EMAIL PROTECTED]> wrote:

Hi everyone,

When I login to the admin area via our domain name, I find that I get

the

error below...and yet I can login using the site ip with not problems.

Has anyone had the same problem?

We are using two load balanced servers...could this be effecting this?

Kind Regards
David Kearins

////////////////////////////////////////////////////////////
// start error

Element MODE.BADMIN is undefined in REQUEST.

// end error
////////////////////////////////////////////////////////////

---
You are currently subscribed to farcry-dev as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to farcry-dev as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/





--- You are currently subscribed to farcry-dev as: [email protected] To unsubscribe send a blank email to [EMAIL PROTECTED] Aussie Macromedia Developers: http://lists.daemon.com.au/

Reply via email to