Page 2 of 2
Re: Cannot logout of FEU
Posted: Wed Feb 11, 2009 2:30 am
by calguy1000
I would check your error log.
because the link is correct
so either there is something that's causing the page to either be cached... or for you not to be logged out.
Re: Cannot logout of FEU
Posted: Wed Feb 11, 2009 3:29 am
by wms
Hi,
I had the FEU & CC in the page to start off and when that wasn't working, I tried it in a template.
From what I provided above in my template, is it correct?
Thanks,
Re: Cannot logout of FEU
Posted: Wed Feb 11, 2009 3:38 am
by wms
Ok, thanks.
So you're saying everything looks corrects. Hmmmm....
The only logs I have on my server on stuff for stats. I can't see anything resembling error logs.
Man.....this stinks.
I have a three templates. One for all of the other pages, one for the employee login and one for the client log in.
Thanks so much for your help.
wms
Re: Cannot logout of FEU
Posted: Fri Feb 13, 2009 2:29 pm
by wms
Hi,
I finally got access to view my server logs.
Here is the URL:
http://server20.lfchosting.com/wms/logs ... 090202.log
I really don't know what I'm looking for. Can someone take a look and let me know if they see something.
Thanks a bunch!!
wms
Re: Cannot logout of FEU
Posted: Fri Feb 13, 2009 6:58 pm
by Nullig
You have a lot of errors relating to the swfobject.js file, which it is looking for in the /uploads/images directory, but it's not there.
I think it may be the flash menu that's causing the problem.
Nullig
Re: Cannot logout of FEU - Solved?...sure why not.
Posted: Wed Feb 18, 2009 2:17 am
by wms
Well,
Putting the user timeout option down to 1 second does the trick. By the time you select the other secured login page, you're already logged out. ~Meh~....we'll see if this does the trick for the client.
Thanks all for all of your help. What a great group here at cmsmadesimple.org.
Re: Cannot logout of FEU
Posted: Mon Mar 02, 2009 2:34 pm
by klio
i found that setting a target page for logout in feu preferences did the trick....
not sure if that helps....
clementina aka klio
Re: Cannot logout of FEU
Posted: Mon Mar 02, 2009 2:50 pm
by klio
sorry

its not working.... it sends me to another page but doesn't log me off....
therefore i suppose i have the same problem.
when i go back to the login page it says user is currently logged in and wont let me re-enter
will do some more checks...
clem
Re: Cannot logout of FEU
Posted: Mon Mar 02, 2009 4:45 pm
by wms
Thanks Clem,
Let me know what you find out. I still have the problem (cannot log out).
Thanks for your help.
Re: Cannot logout of FEU
Posted: Tue Mar 03, 2009 10:57 am
by klio
it mistereriously started working on my online server and still won't work on my local one... i upgraded on both to 1.5.3
i 'was wondering if url rewrite was interfering on the online one but its not active on my local server....
so it remains a bit of a mistery
sorry
Re: Cannot logout of FEU
Posted: Thu Mar 12, 2009 9:55 pm
by typomatic
I too have had the same issue, and have had to resort to a rather unsatisfactory workaround as I have not had the time to properly look at the module itself (or determine if I am in fact responsible for it not working to begin with).
So, without further ado:
CMSMS 1.5.3
FrontEndUsers 1.6.3
CustomContent 1.5.2
A template contains the necessary FEUsers tags (login, logout, etc) as well as the CustomContent if/else stuff. Only one page uses this template, and it is not cached by CMSMS.
I've determined that the URL generated for $url_logout in the FEUsers Logout Template is the culprit, but I do not ultimately know why. In the case of my page, the (pretty) URL generated is
http://altahs.jibehost.com/feu/logout/20/, the "20" being the pageID of the current page. This pageID in the link doesn't vary regardless of whether I specify the logout destination ("PageID/Alias to jump to after logout") in the FEUsers Preferences or not. I can click this link all day and never get logged out.
Now for my workaround. Rather than use the logout template, I just insert my own into the page template.
Code: Select all
<div id="logout">
<p>Welcome, {$ccuser->username()}</p>
<p><a href="/feu/logout/28/">Sign Out</a></p>
</div>
All I have done is substitute the pageID of a logout page for the one generated for $url_logout. I would prefer to have users dropped back to the login (which is also on pageID 20), but this gets the job done.
I hope this is useful to someone. My apologies if I have missed something obvious.
Ben