vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Miscellaneous Hacks - vMail - Verify Mail before registration. (https://vborg.vbsupport.ru/showthread.php?t=201466)

vitrag24 06-21-2009 07:41 PM

@Makc666,
i didnt understand you.
this mod isnt compatible with my vb version 3.7.1?

Gotmian 06-22-2009 04:56 PM

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 06-24-2009 05:33 PM

Quote:

Originally Posted by vitrag24 (Post 1834293)
@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 (Post 1834914)
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.

You can check this one by disabling this mod.

vitrag24 06-25-2009 12:42 PM

Quote:

Originally Posted by Makc666 (Post 1836548)
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.


This is or your vBulletin's "Email Options" error or server's error.

You can check this one by disabling this mod.


https://vborg.vbsupport.ru/showpost....&postcount=169
there shdnt be problem with image verification as even if i dont keep it on in vmail settings, then also registration error.
https://vborg.vbsupport.ru/showpost....&postcount=169
plz check and read it again.

i need this mod to prevent spammers..
Thanks.

Makc666 06-26-2009 05:33 PM

1.
Did you applied this patch?
https://vborg.vbsupport.ru/showthread.php?p=1788517
If no, do it and re-upload the product.

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.

steve71 07-05-2009 02:42 PM

Excellent mod. :)

Working fine in 3.82

vitrag24 07-05-2009 06:04 PM

Quote:

Originally Posted by Makc666 (Post 1837980)
1.
Did you applied this patch?
https://vborg.vbsupport.ru/showthread.php?p=1788517
If no, do it and re-upload the product.

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.

Makc666 07-08-2009 10:28 AM

Quote:

Originally Posted by Makc666 (Post 1837980)
1.
Did you applied this patch?
https://vborg.vbsupport.ru/showthread.php?p=1788517
If no, do it and re-upload the product.

Quote:

Originally Posted by vitrag24 (Post 1843325)
1. Thanks. I hope that will solve my problem.
but i dont know how to add function?
what to do after selecting edit product?

  1. You have to download the product.
  2. Open its XML file in some Text Editor.
  3. Make changes from https://vborg.vbsupport.ru/showthread.php?p=1788517.
  4. Save.
  5. Then upload or re-upload this product.

This is the first thing you have to do.

Then check.

vitrag24 07-08-2009 06:02 PM

Quote:

Originally Posted by Makc666 (Post 1845039)
  1. You have to download the product.
  2. Open its XML file in some Text Editor.
  3. Make changes from https://vborg.vbsupport.ru/showthread.php?p=1788517.
  4. Save.
  5. Then upload or re-upload this product.

This is the first thing you have to do.

Then check.

Thanks but that is wht i'm asking.
how to edit?
Where should i add that code? anywhere or at the bottom or top in file?

Makc666 07-08-2009 08:17 PM

[product]-vMail-2.0.1(English-Base).xml

Find line:
Code:

// Build veirfy code .
Above add:
Code:

function Cleaning($type,$code) {
        global $vbulletin;
        switch($type)
        {
                case 'free':
                $vbulletin->db->query_write("DELETE FROM ". TABLE_PREFIX . "nlp_vmail WHERE code = '".$code."'");
        }
}



All times are GMT. The time now is 03:33 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01448 seconds
  • Memory Usage 1,764KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (4)bbcode_php_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete