MyBB Community Forums

Full Version: PM on Registration
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm not sure on how I am suppose to do this. I've tried going to

http://mods.mybb.com/view/pm-on-registration

but appearently it doesn't work with 1.6 so I am stuck at the moment. What I am trying to do is send a PM to all the new users that Register to my forum. Is there a update to this?
Open your plug-in/mod and change this:

Quote:function pmonreg_info()
{
global $lang;
pmonreg_load_language();

return array(
"name" => $lang->pmonreg,
"description" => $lang->pmonreg_desc,
"website" => "http://www.dennistt.net",
"author" => "DennisTT",
"authorsite" => "http://www.dennistt.net",
"version" => "1.2.0",
"guid" => "eacf7cafb1fc90c53a27cbf2f4687449",
"compatibility" => "14*",

// DennisTT custom info
"codename" => 'pmonreg',
);


TO:

Quote:function pmonreg_info()
{
global $lang;
pmonreg_load_language();

return array(
"name" => $lang->pmonreg,
"description" => $lang->pmonreg_desc,
"website" => "http://www.dennistt.net",
"author" => "DennisTT",
"authorsite" => "http://www.dennistt.net",
"version" => "1.2.0",
"guid" => "eacf7cafb1fc90c53a27cbf2f4687449",
"compatibility" => "16*",

// DennisTT custom info
"codename" => 'pmonreg',
);


It's work for me so it's works also for you Big GrinBig Grin


Goodluck!
Thank you, it worked
Just for future reference all you need to change is the compatibility 14* to 16*
THANKS! I just had a 1.6 incompatibility issue with the Email About New Members plugin, and got it to install by using this trick. I have another to try also, and then I just have to see if they actually work!
This should really be updated to 1.6 and posted on the Mods site. I can't post this on the mods site, but here it is for anyone who doesn't want to go through the trouble: