CustomContent and FrontEndUser modules don't seem to be working properly
Posted: Sun Dec 31, 2006 12:54 am
Hi,
I am using CMSMS version 1.0.2, CustomContent 1.4.3, FrontEndUsers 1.1.1, and cannot seem to get them to work properly. I've read all the help files, but don't understand all the settings needed in FrontEndUsers to get it working, I guess.
What I'm trying to do: I need to display members-only content when a member logs in. They should have a generic login username and password for all members. It doesn't need to be a personal username and password. And all I need from them is their username and password--the default fields for FrontEndUser. In other words, I don't need any "properties" in the FrontEndUser Management screen.
Yet, logged in as a member or an admin I cannot see the content of the page.
Here's my template code:
Any help or further guidance would be much appreciated. I have searched the forums, but couldn't find anything similar to this problem.
Thanks,
Matt
I am using CMSMS version 1.0.2, CustomContent 1.4.3, FrontEndUsers 1.1.1, and cannot seem to get them to work properly. I've read all the help files, but don't understand all the settings needed in FrontEndUsers to get it working, I guess.
What I'm trying to do: I need to display members-only content when a member logs in. They should have a generic login username and password for all members. It doesn't need to be a personal username and password. And all I need from them is their username and password--the default fields for FrontEndUser. In other words, I don't need any "properties" in the FrontEndUser Management screen.
Yet, logged in as a member or an admin I cannot see the content of the page.
Here's my template code:
Code: Select all
{cms_module module=CustomContent}
{if $customcontent_loggedin}
<h2>Welcome {$customcontent_loginname}</h2>
{content}
{else}
<h2>Sorry, you must be a logged-in member to view this page.</h1>
{cms_module module=FrontEndUsers}
{/if}
Thanks,
Matt