In a fresh cmsms 2.2.16 I did add the FEU 3.2.2 module.
All works fine with 1 group, 1 user prop and 1 user.
I'm using CgBetterForms templates for the Login and Logout.
The core:page starts with
Code: Select all
{strip}{process_pagedata}
{root_url assign="root_url"}
{get_current_url assign="page_url"}
{$home = (($page_alias === "home") || ($page_url|stripos:"/index.php" !== false))}
{title assign="main_title"}
{get_parent_alias alias=$page_alias assign=parent_alias}
{cms_module_hint module=FrontEndUsers logintemplate='App Login Form'}
{cms_module_hint module=FrontEndUsers logouttemplate='App Logout Href'}
{$feugroup = "Buurt"}
{$username = feu_smarty::get_current_username()}
{$uid = feu_smarty::get_userid($username)}
{* other stuff *}
{share_data scope=global
vars="root_url,page_url,home,main_title,parent_alias,feugroup,username,uid, ... "}
{/strip}<!doctype html>
Code: Select all
$feu_disable_forgotpw = true;
$feu_disable_lostusername = true;
$feu_disable_rememberme = false;
$feu_min_passwordlength = 6;
$feu_enhanced_passwords = false;
I can't figure out why these config.php settings not having effect.
Somebody can help me out with this?
Thanks, Ronald