Version: 2.0.1, by Almotmaiz.Net
Developer Last Online: Oct 2013
Category: Miscellaneous Hacks -
Version: 3.8.x
Rating:
Released: 01-11-2009
Last Update: 01-17-2009
Installs: 579
DB Changes Uses Plugins Auto-Templates
Translations
No support by the author.
vMailv2.0.1
Product Verify Mail before registration
No FAKE email after Today !!
================ Please remember to click Mark as Installed if you use this modification.
Support questions from members who have not marked this as installed will be considered low priority.
================
ABOUT THIS MOD
This mod give correct E-mail via new user-register , Send code to email before go to register form step , and this new user can't reg without this code (in Email) , with this product u can make sure about your new user in your forum . And u can verify E-mails in user update his/her Email .
ADVANTEGS OF PRODUCT .
Option to swithching this Addon "ON" or "OFF" .
Option to SET custom PREFIX for veify code ( to make it harder for someone to decrypt it.)
option to SET Number of days after which we will delete the verification code form the database.
Option to hide E-mail field's in register form .
Option to use Image Verification.
Option to verify E-mails in user update email in usercp.
Option to check E-mail domain if exist or not before send the code.
SCREEN'S
in second post.
HOW TO INSTALL AND UPGRADE.
UPLOAD product from your ACP .(overwrite if UPGRADE)
Hey, GREAT mod and will help a lot with the HUGE number of random registration we get. I have an issue though, the registration email takes forever to be sent...
Is there sth wrong with me and my configuration, or is it a server / script error?
@Makc666,
i didnt understand you.
this mod isnt compatible with my vb version 3.7.1?
I was wondering what version of vBulletin you use as not all users update their profiles here on forum.
Try to disable in MOD's settings the option "Image Verification".
Oh. You already did that one.
Then try to search in you forum's *.php files for code like:
PHP Code:
function fetch_require_hvcheck(
If didn't find it then this mod is not compatibly with "Image Verification" process.
Quote:
Originally Posted by Gotmian
Hey, GREAT mod and will help a lot with the HUGE number of random registration we get. I have an issue though, the registration email takes forever to be sent...
Is there sth wrong with me and my configuration, or is it a server / script error?
This is or your vBulletin's "Email Options" error or server's error.
2.
Have you change vBulletin's version in ACP in Debug mode?
In other words do you see version 3.7.1 on forums?
3.
There is no such function as "function fetch_require_hvcheck" in vBulletin version 3.7.1
There is a special check for this one in version 2.0.1 of this mode.
Here it is:
PHP Code:
// fixed 2.0.1 unknown function in vB 3.7.x. if($vMail->vB_version(8) AND (function_exists('fetch_require_hvcheck') && fetch_require_hvcheck('register'))) { // vBulletin 3.8 require_once(DIR . '/includes/class_humanverify.php'); $verify =& vB_HumanVerify::fetch_library($vbulletin); $human_verify = $verify->output_token(); }
2.
Have you change vBulletin's version in ACP in Debug mode?
In other words do you see version 3.7.1 on forums?
3.
There is no such function as "function fetch_require_hvcheck" in vBulletin version 3.7.1
There is a special check for this one in version 2.0.1 of this mode.
Here it is:
PHP Code:
// fixed 2.0.1 unknown function in vB 3.7.x.
if($vMail->vB_version(8) AND (function_exists('fetch_require_hvcheck') && fetch_require_hvcheck('register'))) {
// vBulletin 3.8
require_once(DIR . '/includes/class_humanverify.php');
$verify =& vB_HumanVerify::fetch_library($vbulletin);
$human_verify = $verify->output_token();
}
It looks like some problem on your side.
1. Thanks. I hope that will solve my problem.
but i dont know how to add function?
what to do after selecting edit product?
2. yes, i can see vb 3.7.1 on my fourm.
3. wht shd i do then?
Thanks a lot again.
I hope i can use this mod without any error soon.
function Cleaning($type,$code) {
global $vbulletin;
switch($type)
{
case 'free':
$vbulletin->db->query_write("DELETE FROM ". TABLE_PREFIX . "nlp_vmail WHERE code = '".$code."'");
}
}