For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
The dot issue was a typo..... thanks, I would never have seen that.
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.
That's right. Expired users are now forbidden to log on - kind of. They can't view any protected content, but if I send them to a page that displays only the {cms_module module=FrontEndUsers} smarty tag, that page shows the "Change My Settings or Sign Off" links. So the system is still recognizing that they are logged in and that their username exists, but it at least is preventing access to the restricted content. I'm trying to figure out a workaround right now, since I'm too much of a PHP dunce to actually fix the module.
I'm thinking of something like
<?php
if ( loggedin != true {
echo ("{cms_module module=FrontEndUsers form=login}")
}
I don't know if this is the right php syntax, but I'm going to give it a try right now.
You are saying expired user still can log in. They never receive the message "Account expired". You can only filter them afterwards, with another module. In other words, it doesn't work.
Yes, that is correct. I wasn't aware that they were supposed to see an "Account Expired" message. I can't find that anywhere in the documentation, but it makes sense. That would be great if it worked.