Cannot logout of FEU
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
- Location: Fernie British Columbia, Canada
Re: Cannot logout of FEU
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.
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.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: Cannot logout of FEU
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,
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
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
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
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
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
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
I think it may be the flash menu that's causing the problem.
Nullig
Re: Cannot logout of FEU - Solved?...sure why not.
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.
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
i found that setting a target page for logout in feu preferences did the trick....
not sure if that helps....
clementina aka klio
not sure if that helps....
clementina aka klio
Re: Cannot logout of FEU
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

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
Thanks Clem,
Let me know what you find out. I still have the problem (cannot log out).
Thanks for your help.
Let me know what you find out. I still have the problem (cannot log out).
Thanks for your help.
Re: Cannot logout of FEU
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
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
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.
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
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>
I hope this is useful to someone. My apologies if I have missed something obvious.
Ben