Jeff thanks for your indepth response

Off topic though, i downloaded your video tutorials but they had no
sound :(

Now.....

------------------------------------
_serverSpecificVars.cfm
------------------------------------
<cfsetting enablecfoutputonly="Yes">

<cfscript>
application.dsn = "farcry_demo";
application.dbtype = "odbc";
application.dbowner = "dbo."; // don't forget the "."

application.path.project =
replaceNoCase(replace(getCurrentTemplatePath(),"\","/","all"),"/config/_serverSpecificVars.cfm","");
application.path.core =
listDeleteAt(application.path.project,listlen(application.path.project,"/"),"/")
& "/farcry_core";

// application web urls
application.url.webroot = "";
application.url.farcry = application.url.webroot & "/farcry"; //admin

application.packagepath = "farcry.farcry_core.packages";
application.custompackagepath =
"farcry.#application.applicationname#.packages";
application.securitypackagepath = application.packagepath &
".security";
</cfscript>

<cfsetting enablecfoutputonly="no">

------------------------------------
www/Application.cfm
------------------------------------
<cfsetting enablecfoutputonly="Yes">

<cfapplication name="farcry_demo" sessionmanagement="Yes"
sessiontimeout="#createTimeSpan(0,1,0,0)#">

<!--- Application Initialise --->
<cfif NOT IsDefined("application.bInit") OR IsDefined("url.updateapp")>
        <!--- Project Specific Initialisation --->
        <cfinclude template="../config/_applicationInit.cfm">
        <!--- Farcry Core Initialisation --->
        <cfinclude
template="/farcry/farcry_core/tags/farcry/_farcryApplicationInit.cfm">
        <!--- $TODO: must have project vars set AFTER core vars! GB$ --->
</cfif>

<!--- general application code --->
<cfinclude
template="/farcry/farcry_core/tags/farcry/_farcryApplication.cfm">

<cfsetting enablecfoutputonly="no">

------------------------------------
apps.cfm
------------------------------------
<cfscript>
stApps = structNew();
stApps['farcry_demo'] = 'farcry_demo';
</cfscript>


This is a fresh install and i havent been able to log in at all.  The
website comes up fine so doesnt seem to be a problem accessing the
database.  I have debuged the login process and it tells me i have
logged in successfully right up to the point of the cflocation happens
and then everything resets and i get nothing.

I am running Windows 2000 IIS5 and MSSQL2000.  The authentication
method is db and not AD.

There is a user in the database with this info
userId = 1
userLogin = farcry
userPass = farcry
userStatus = 4

...and there is an entry in the dmUserToGroup table with...
userId = 1
groupId = 6

I hope this is enough info to get some assistance with this.

Regards
Steve Onnis

Jeff Coughlin wrote:
> Steve,
>
> > Just getting into this whole farcry thing and i have
> > come across an issue which is..well.....i cant log in.
> >
> > The user info is in the database and everything looks
> > like its installed properly, except when i log in,
> > well it doesnt log me into the system.
>
> Welcome Steve!  I hope we can help you resolve your issue so that you can
> enjoy FarCry and all its wholesome goodness! :)
>
> I'm guessing by the way you described your problem that this is a fresh
> install.  Is this a correct assumption?
>
> Have you been able to login to this installation previous to this problem?
> If yes, did you change any security settings for the system or a particular
> user?  If no, then it is likely a configuration issue (those are usually
> easy to fix... but I don't want to jynx it :) ).
>
> What is your OS version and DB type and version?
>
> Can you please post the following config items:
> 1. the values for the following variables in your _serverSpecificVars.cfm
> file? (application.dsn, application.dbtype, application.dbowner,
> application.url.webroot, and application.url.farcry)
> 2. the application name in www/Application.cfm
> 3. the contents of apps.cfm
> 4. The folder name for your project
>
> ---
> Jeff Coughlin
> Web Application Developer
> http://www.jeffcoughlin.com


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"farcry-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/farcry-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to