Page 1 of 1

Announcing new betas of FrontEndUsers and SelfRegistration Modules

Posted: Fri Jan 26, 2007 4:06 am
by calguy1000
Hi All....

I'd like to announce the release of a new beta of FrontEndUsers, and of SelfRegistration module. 

The FrontEndUsers module adds two property types, one for a multi-select list, and the other an image type to allow end users to upload images.  I've also thrown in numerous other bugfixes, and some minor enhancements and performance tweaking.

The SelfRegistration module has been changed to handle the new multiselect list type, and to ignore image properties.

I would like to heap large thanks on the sponsor for this project, and ask him to keep it coming.

I would appreciate your active testing, as after release I am not sure when I'll be able to get back to this project to fix any bugs that aren't found in this short beta cycle.

Please submit a bug in the forge, or respond here if you find anything.

Thanks.

Re: Announcing new betas of FrontEndUsers and SelfRegistration Modules

Posted: Fri Jan 26, 2007 7:37 pm
by ID2020
Thanx for these great Modules.  ;D 

I started translating them into dutch.
Can't wait to see them in non beta.

Keep up the good work.

Id2020

Re: Announcing new betas of FrontEndUsers and SelfRegistration Modules

Posted: Wed Jan 31, 2007 12:41 pm
by RohanP
After installing the new SelfReg module version, I now seem to get an error when trying to use the "re-send the registration / verification email" link:

Fatal error: Call to undefined function: _userdisplaylostregemailform() in
c:\domains\[my domain]\wwwroot\modules\SelfRegistration\action.default.php on line 412

Not sure if this error / bug has only just appeared, but think I have used the re-send process successfullly before now.

Re: Announcing new betas of FrontEndUsers and SelfRegistration Modules

Posted: Thu Feb 01, 2007 10:24 pm
by dignity
Got the same error.

Re: Announcing new betas of FrontEndUsers and SelfRegistration Modules

Posted: Fri Feb 02, 2007 4:40 pm
by harleyquinn
Using Frontendusers 1.1.3-beta1 with CMS Made Simple 1.0.4 and get the following message after user logs in:

"can't find pageid ..."

Users can log in, just doesn't redirect to the correct page.

Can't figure out if I forgot to put some param or tag somewhere or if it's a bug.

Anyone else having the same problem?

Re: Announcing new betas of FrontEndUsers and SelfRegistration Modules

Posted: Fri Apr 06, 2007 2:50 pm
by donnut
Hi,

I solved the following error message:

Code: Select all

Fatal error: Call to undefined function: _userdisplaylostregemailform() in
c:\domains\[my domain]\wwwroot\modules\SelfRegistration\action.default.php on line 412
by changing line 412 from:

Code: Select all

$this->_UserDisplayLostRegEmailForm(  $id, $params, $returnid );
to

Code: Select all

_UserDisplayLostRegEmailForm( $this, $id, $params, $returnid );
It seems to work, but I can not oversee the whole code, so I not aware of any unwanted side effects,

donnut