vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Quick Register for 3.5.x - Plugin Edition (https://vborg.vbsupport.ru/showthread.php?t=114342)

almukmin 05-05-2006 04:14 PM

I need the referrer/upline box to appear there since I have the referral statistic mod installed. Can someone help me with that real quick?

Thanks.

RDX1 05-05-2006 09:15 PM

You can use the $templatecode somewhere else if you need to have the referral box in it's place.

marsauae.com 05-10-2006 04:06 PM

thanks RDX1
but how can add Image Verification when it enable in Quick Register ?

Install

Al-Fateh 05-10-2006 07:23 PM

you must also have GUEST CAN VIEW FORUM "YES" so it can show

otherwise it cant

RDX1 05-11-2006 02:58 PM

Quote:

Originally Posted by marsauae.com
thanks RDX1
but how can add Image Verification when it enable in Quick Register ?

Install

You could add it yourself. I've been busy so I can not do this right now.

Mr Chad 05-14-2006 09:10 PM

Hey impliment something like this: http://beasttoast.com/ChadsPlayground/image.php

formhandler.php
PHP Code:

<?php
/*This starts the session that we created on the last page*/
session_start();

/*This trims the random variable of any white space that the user may have unknowingly put in.*/
$random trim($random);

/*Below is a conditional statement: In English it reads, if the string that the user put into the text box is equal to what is in the image then print to the screen, "You are verified."  If they are not equal it tells the user to go back and try again.*/

/*We can use the variable $new_string because we registered it into our session on the last page, it retains its value that it had on the first page.*/
if ($new_string == $random){
echo 
"Verified: Run register code";
}
else{
echo 
"Denied: Give error message";
}
?>

image.php (or what ever)
PHP Code:


<?php
 
/*header*/
Header("Content-Type: image/png");

/* initialize a session. */
session_start();

/*We'll set this variable later.*/
$new_string;

/*register the session variable. */
session_register('new_string');

/*You will need these two lines below.*/
echo "<html><head><title>Verification</title></head>";
echo 
"<body>";

/* set up image, the first number is the width and the second is the height*/
$im ImageCreate(5718);

/*creates two variables to store color*/
$white ImageColorAllocate($im000);
$black ImageColorAllocate($im255255255);

/*random string generator.*/
/*The seed for the random number*/
srand((double)microtime()*1000000);

/*Runs the string through the md5 function*/
$string md5(rand(0,9999));

/*creates the new string. */
$new_string substr($string16);

 
/*fill image with black*/
ImageFill($im00$black);

 
/*writes string */
ImageString($im811$new_string$white);

/* output to browser*/
ImagePNG($im"verify.png");
ImageDestroy($im);

/*I plugged our image in like I would any other image.*/
echo "<form action=\"formhandler.php\" method=post>";
echo 
"<img src=\"verify.png\">";
echo 
"<input name=\"random\" type=\"text\" value=\"\">";
echo 
"<input type=\"submit\">";
echo 
"</form>";
echo 
"</body>";
echo 
"</html>";
?>


Mr Chad 05-16-2006 12:49 AM

You think you can add the referal bit (hidden). Because now when people refer they dont get credit.

RDX1 05-19-2006 07:38 AM

I'll look into that Chad for image verification. You can add the referral box, or whatever you need depending on what you want displayed.

I've been busy with my newly formed business so I haven't really done anything to this. I would liek to make control panel controls where you can switch image verification on/off and DOB on/off and other settings in the registration admin options.

RDX1 05-22-2006 03:37 AM

I'm working on a new version. It does not include image verification yet.

RDX1 05-22-2006 08:03 AM

Quick register 1.5.0 has been released. I'm working on a new design for the template to make registration easier and more clean. Some vital changes were made.

No ETA on Image verification.


All times are GMT. The time now is 07:58 PM.

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.01163 seconds
  • Memory Usage 1,755KB
  • 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_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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