Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Archive /

Our old forums are still available as a read-only archive.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo

Has anyone figured out how to implement a user registration system


Go to End


12 Posts   5463 Views

Avatar
Mgc

Community Member, 23 Posts

13 August 2008 at 8:04am

I was wondering if anyone has figured out how to implement a user registration system into silverstripe. I desperately need it for a project i am working. I am not much of a coder so I was wondering if anyone had started a module for this.

Avatar
Josh

SilverStripe Developer, 65 Posts

13 August 2008 at 9:08am

Hello,

Yes I have implemented a user registration system - though it is not a module yet. http://www.tearaway.co.nz/register/

It was quite easy to do really. It just requires minor modification of the Member.php file and something along the lines of this: http://doc.silverstripe.com/doku.php?id=recipes:forms

Good luck!

Avatar
Blackdog

Community Member, 156 Posts

13 August 2008 at 10:23am

It would probably be handy as a module.

Avatar
Josh

SilverStripe Developer, 65 Posts

13 August 2008 at 11:10am

Yes - it may be developed as a module in the future. The support is there on the wiki for users who wish to try and write it themselves before-hand. Only takes a few minutes once you understand the SilverStripe basics :)

Cheers,
Josh

Avatar
Mgc

Community Member, 23 Posts

13 August 2008 at 11:35am

Thanks for the quick reply guys. I guess i'll have to mess around with the code.

Josh, I noticed you had some drop down menus on your site, any would you be able to give some times on how to achieve that.

Thanks

Avatar
Josh

SilverStripe Developer, 65 Posts

13 August 2008 at 11:53am

No worries.

All you answers should be on doc.silverstripe.com :)

Try search for DropdownField

Cheers,
Josh

Avatar
Mgc

Community Member, 23 Posts

13 August 2008 at 2:17pm

Sorry i dont think i explained my self... I was asking about the dropdown navigation menu you have. How were you able to do that. Does silverstripe have a feature to do this?

Avatar
Josh

SilverStripe Developer, 65 Posts

13 August 2008 at 2:23pm

Edited: 13/08/2008 2:24pm

Oh right.

No this is not built in to SilverStripe. However it is all Html/CSS based, therefore fairly easy.

Check this article out http://htmldog.com/articles/suckerfish/dropdowns/

Go to Top