Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#289 2008-03-09 21:27:52
Offline
#290 2008-04-02 13:34:40
- jimmygator
- Member
- Registered: 2008-03-17
- Posts: 10
Re: mem_self_register
Hi Manfre;
Will this plugin run on a windows server and IIS?
Jim
Offline
#291 2008-04-02 14:05:45
Re: mem_self_register
jimmygator wrote:
Hi Manfre;
Will this plugin run on a windows server and IIS?
Jim
I can’t think of any reason why it would not run. Let me know how it goes.
Offline
#292 2008-06-05 20:22:59
Re: mem_self_register
Manfre,
I finally have a reason to use this plugin. Wow! this thing is amazing! Thanks so much for all the hard work.
Quick question:
In the setup there are options for “add_address_field” and “add_phone_field”…how do I access those? Is there a way for the user to self edit them?
Ideally I’d love to have access to those fields from the the ADMIN > USERS tab? Anyone done that?
Thanks Again!
—
Tom
Last edited by renobird (2008-06-05 20:23:23)
Offline
#293 2008-06-24 09:23:25
Re: mem_self_register
Great Plugin – Thank you
A possible future feature …? A text box for Admin to add sign up ‘Terms & Conditions’ and a accept/decline button in the form.
Thanks
Geoff
There are 10 types of people in the world: those who understand binary, and those who don’t.
Offline
#294 2008-08-12 18:32:14
- Smirk
- New Member
- Registered: 2008-08-02
- Posts: 5
Re: mem_self_register
Does this plugin allow to add custom fields into the registration form and allow users to upload their images (aka avatars)?
Offline
#295 2008-12-11 22:50:21
- lovehasnologic
- New Member
- Registered: 2008-12-03
- Posts: 3
Re: mem_self_register
Hey everyone. Plugin is working great other than one problem. A user can register on the site and they get their confirmation e-mail and are added to the users database. However, a copy of the e-mail is not sent to the admin e-mail address. I’v e checked the Preferences > Advanced section and the admin e-mail is correct, and it’s on the same domain. Can’t see why the admin isn’t being copied on the message. Any hints? I’ve been trying to sort this out for a few hours now.
Mike
Offline
#296 2008-12-12 01:02:35
Re: mem_self_register
@Smirk, this plugin does not manage file uploads.
@lovehasnologic, It doesn’t CC the admin.
Offline
#297 2008-12-12 01:13:52
- lovehasnologic
- New Member
- Registered: 2008-12-03
- Posts: 3
Re: mem_self_register
ok, I read in the (admittedly MUCH) earlier posts that by default it BCC’d the admin user when a user signed up. Does it not do that anymore? Is there no ability to make that happen?
Thanks in advance for the answer (and the quick response on the first question).
————————
Also, just checked the plugin page and it says…
“Configurable email message that is sent to users upon successful creation of account. Admin will also receive a copy of this email.”
Last edited by lovehasnologic (2008-12-12 01:15:15)
Offline
#298 2009-01-07 16:31:52
- Calm
- Member
- Registered: 2009-01-07
- Posts: 16
Re: mem_self_register
Hello!
Please help me.
I try to use mem_self_register pulgin.
But I can’t understand how work form for editing user profile – mem_self_user_edit_form tag.
I made section named “mem_self_user_edit_section”. I made page “mem_self_user_edit_page”. This page is assigned to section.
This is fragment of page code:
<div id="content">
<txp:mem_self_user_edit_form >
<txp:mem_form_text name="RealName" label="Full Name" break=":" default = "<txp:mem_username />"/>
<txp:mem_form_email name="email" label="Email" break=":" />
<txp:mem_form_submit name="Save" />
</txp:mem_self_user_edit_form >
</div>
This form must show user name and user email, of course?
But all input field is empty.
What can I do?
Best regards.
Best regards
Offline
#299 2009-01-07 16:45:07
Re: mem_self_register
So, the inputs are showing – they just aren’t populated with the current username/email address?
Offline
#300 2009-01-07 16:54:51
Re: mem_self_register
Calm
Me thinks this will accomplish what you need:
<div id="content">
<txp:mem_self_user_edit_form >
<txp:mem_form_text name="RealName" label="Full Name" break=":" default = "<txp:mem_profile var="RealName" />"/>
<txp:mem_form_email name="email" label="Email" break=":" default = "<txp:mem_profile var="email" />" />
<txp:mem_form_submit name="Save" />
</txp:mem_self_user_edit_form >
</div>
Offline