Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#256 2008-01-05 10:32:42
Re: mem_self_register
Were there any error messages? Do you use zem_contact_reborn? If so, does it work?
There is also a newer version that is undergoing testing and it has a complete rewrite of the email functionality.
Offline
#257 2008-01-05 10:42:24
Re: mem_self_register
Hi Manfre, yeah, zem is working, however when I tried to change a password for an user through admin > users > change password and I didn’t get an email that way either, so it is possibly a textpattern problem? One of the hosting companies where the email sending is not working is Mosso (but it’s not working on my local server either, though I don’t know if the email server is set up properly, it’s out-of-the-box MAMP).
I may note that it is doing it’s work in the DB, it creates the user, all regularly. It’s just the email sending that’s the problem.
Last edited by draganbabic (2008-01-05 10:43:32)
Offline
#258 2008-01-05 11:10:35
Re: mem_self_register
If zem is working, then the new will have a better chance of working. Although, if the core mail functionality is having issues, all bets are off.
Offline
#259 2008-01-05 11:47:50
Re: mem_self_register
It’s weird, now i have reset my own password, and checked the box “mail it to me” and I got the email.
Offline
#260 2008-01-05 14:19:47
Re: mem_self_register
It seems there is no solution for this? Bummer…
I have noticed one other thing though – if the username already exists in the DB, and another user tries to register under that username – it spits out the generic error as if the field is blank, when I expected this (form the plugin source):
'user_exists' => 'Username already exists. Please try another name',
Here’s my form:
<div class="ctrlHolder">
<label for="mem_name_input">Full Name</label>
<txp:mem_name_input />
<txp:mem_name_warn />
</div>
<div class="ctrlHolder">
<label for="mem_user_input">Username</label>
<txp:mem_user_input />
<txp:mem_user_warn />
</div>
<div class="ctrlHolder">
<label for="mem_email_input">Email</label>
<txp:mem_email_input />
<txp:mem_email_warn />
</div>
<div class="buttonHolder">
<txp:mem_submit />
</div>
Offline
#261 2008-01-05 16:28:16
Re: mem_self_register
Sorry to bump this again, I just want to let you know it is definitely a plugin related issue that the emails with passwords are not going through.
Offline
#262 2008-01-05 16:31:35
Re: mem_self_register
bumping a thread every few hours is not going to help you. either way i’ve tested the plugin on my own install and i get emails with passwords just fine. how are you sure its a plugin issue?
Offline
#263 2008-01-05 16:52:07
Re: mem_self_register
My apologies to subscribers, I wasn’t trying to get off as desperate, but just be clear.
Earlier I have mentioned that there is a possibility that all email sent by TXP isn’t being received, and in my previous post I just wanted to say that after further testing emails from TXP work, just emails being sent by the plugin (containing the password) aren’t being sent or received.
Offline
#264 2008-01-29 04:34:38
Re: mem_self_register
There is a new version of mem_self_register available. I fixed a lot of issues and changed a bunch of the tags so that all forms now use my mem_form plugin.
Examples and such are in the first post.
Offline
#265 2008-01-29 20:16:06
Re: mem_self_register
I tried to do a new install of mem_self_register on a brand new svn install. After clicking “Start Install Wizard,” the next page returns three errors:
A problem occured while loading the plugin: mem_form -> Notice: Undefined index: mem_self_admin_email on line 135
A problem occured while loading the plugin: mem_form -> Notice: Undefined index: mem_self_admin_name on line 136
A problem occured while loading the plugin: mem_form -> Notice: Undefined index: mem_self_new_user_priv on line 137
The only plugins I have installed are mem_self_register 0.9, mem_form 0.3, and ign_password_protect 0.4.2d.
I haven’t tried clicking Install so I don’t know what happens then.
Offline
#266 2008-01-30 16:19:07
Re: mem_self_register
Those are safe to ignore. The notices are caused from the config values not existing in $prefs yet. The install would resolve this. I also uploaded a new copy that should silence them.
Offline
#267 2008-01-30 18:29:17
Re: mem_self_register
Manfre wrote:
To those wishing to do a public profile, I have started to add support for it. Available in SVN, I have v0.8.4b with an updated mem_profile tag.
Any possibility of adding an image attribute to the <txp:mem_profile /> tag?
Swim Kitten, A Magento Site
When nothing but incredibly revealing dresses and swimwear will do
Offline
#268 2008-01-30 18:30:47
Re: mem_self_register
Add the field to the db and then you should be able to reference it by the case sensitive name.
Offline
#269 2008-01-30 18:31:31
Re: mem_self_register
Manfre wrote:
Add the field to the db and then you should be able to reference it by the case sensitive name.
Yep – just saw the previous notes about using custom fields. I’m assuming that will do it. Thanks!
Swim Kitten, A Magento Site
When nothing but incredibly revealing dresses and swimwear will do
Offline
#270 2008-01-30 18:34:52
Re: mem_self_register
I’ve also been in discussion with Patrick about glx_gravatar. I think it works with the <txp:comment_email /> tag, but I’d like to get it to work with users in Txphorum, too. Because Txphorum posts are actually articles, and not comments, it won’t work out of the box. Still, I’m sure there’s a way to call the users email (probably through your <txp:mem_profile /> tag) and have the gravatar show up. Any thoughts?
I really don’t know php, but here’s the portion of Patrick’s code that I think is making the call:
$url = ‘http://www.gravatar.com/avatar.php?gravatar_id=’; $url .= md5($thiscomment[‘email’]); if (!empty($atts[‘rating’])){ $url .= ‘&rating=’.$atts[‘rating’];
Maybe altering or adding to ($thiscomment[‘email’]); will do the trick?
Ok. Off to lynda.com. It’s high time I try to learn a little bit of this myself.
Last edited by rsskga (2008-01-30 18:41:40)
Swim Kitten, A Magento Site
When nothing but incredibly revealing dresses and swimwear will do
Offline