Hi Mause,
I guess that is what I am missing here?
#myFusebox.Originalfuseact
Main Topics
Browse All TopicsI am having a problem with cflocating users to the login page is the session var has expired.
in my myglobals.cfm (global plugin).
<cfif NOT IsDefined("session.loggedi
<cflocation url="#self#?cLogin.showLog
</cfif>
This code makes the app go into an infinite loop and it will say exceeded url refresher amount.
Help me out ?
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
you're on the right track. you need to make sure you're not currently trying to execute one of the login fuseactions
assuming your login action was cLogin.showlogin and it submitted to cLogin.validatelogin
<cfif NOT IsDefined("session.loggedi
<cflocation url="#self#?cLogin.showLog
</cfif>
suggestion:
Move
<cfif NOT IsDefined("session.loggedi
<cflocation url="#self#?cLogin.showLog
</cfif>
outside of global.cfm
create a new fuseaction with that code.
sample verifylogin.cfm
<fuseaction = "verifylogin" >
<include value="verifylogin.cfm">
<fuseaction/>
then on the circuit where you want to have a security login, insert that fuse on the prefuseaction of that cicuit
<circuit>
<prefuseaction>
<do action="verifylogin"/>
</prefuseaction>
<fuseactions
<postfuseaction>
</postfuseaction>
</circuit>
(recommended)
you might want to try
http://downloads.fusebox.o
Lets Make a Deal v4 by John Q
Im using this plugin on my coldfusion pages.
no luck?
post in fusebox forum. they may help you..
http://www.fusebox.org/for
Business Accounts
Answer for Membership
by: MausePosted on 2004-11-14 at 13:43:42ID: 12579942
I gues you also have to check if the action is not showlogin
Mause