Hello,
i am facing a FEU login problem in IE. There is no such problem in Firefox.
When login in IE I am brought to the page i set under "PageID/Alias to jump to after login". But on this page the variables such as {$customcontent_loggedin}, {$customcontent_loginname} are empty. I was investigating furthermore and found that there is a redirection problem. If I comment following code in action.do_login.php I have no login problem in IE:
if( $page )
{
$id = ContentManager::GetPageIDFromAlias( $page );
if( $id )
{
$this->RedirectContent( $id );
return;
}
die( "couldn't get pageid for $page" );
}
$this->RedirectContent( $returnid );
Do you have any ideas?
Thank you,
Sonya
FEU Login Problem in IE
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
- Location: Fernie British Columbia, Canada
Re: FEU Login Problem in IE
make sure any page that has customcontent code, or any smarty logic is marked as non cachable.
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: FEU Login Problem in IE
The page i am redirected to is not cachable. I also emptied my browser cache.
Re: FEU Login Problem in IE
UPDATE: I tried to login without redirect and I could see custom content, than I typed the same url direct in browser in the same window and the content was no more available. I wonder if FEU works with sessions? I cannot find something related to it.
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
- Location: Fernie British Columbia, Canada
Re: FEU Login Problem in IE
Yes, FEU uses sessions (in a minor way). it uses the sessionid.... so if your sessions aren't working you've got a problem.
Also, make sure you're running the latest versions of FEU and CustomContent.
Also, make sure you're running the latest versions of FEU and CustomContent.
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.
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
- Location: Fernie British Columbia, Canada
Re: FEU Login Problem in IE
You'll also want to be running AT LEAST cms 1.0.5
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: FEU Login Problem in IE
I use CMS 1.0.6 with SelfRegistration 1.1.1 and FrontEndUsers 1.2.0.
My problem is now solved. It is up to my development environment (WAMP
. I loaded the site to my webspace (LAMP) and the problem is gone. Thank you for you help!
My problem is now solved. It is up to my development environment (WAMP

Re: FEU Login Problem in IE
Now I could solve the issue described above for my WAMP environment. It's quite a stupid apache bug described here
http://mail-archives.apache.org/mod_mbo ... gzilla/%3E
I did use _(underscore) in server name within virtual host. The result was new session id was generated each time the page was reloaded. I redeclared my virtual host and the issue is gone.
Sonya
http://mail-archives.apache.org/mod_mbo ... gzilla/%3E
I did use _(underscore) in server name within virtual host. The result was new session id was generated each time the page was reloaded. I redeclared my virtual host and the issue is gone.
Sonya
Re: FEU Login Problem in IE
Just to add: underscore problem is now mentioned in php manual http://de2.php.net/set_cookie . Perhaps it will be worth to add the underscore check to the installation of CMSMS to "avoid frustration" 
