Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Quick Register for 3.5.x - Plugin Edition Details »»
Quick Register for 3.5.x - Plugin Edition
Version: 1.6.2, by RDX1 RDX1 is offline
Developer Last Online: Jul 2011 Show Printable Version Email this Page

Version: 3.5.4 Rating:
Released: 04-28-2006 Last Update: 06-02-2006 Installs: 228
Uses Plugins Template Edits
 
No support by the author.

Quick Register - Version 1.6.2


Don't forget to click Install if you use this modifcation!



Description: This plugin will allow you to display a quick registration to quests. This is a port from my template hack that stores the quick register in a template and is able to be called with a variable.

Requirements: vBulletin 3.5.X

Support: This modifcation comes as-is with limited support. If I have time I will look into your support request in this thread, only if you have clicked install.

Installation:
Log into your Admin Control Panel > Plugin System > Manage Products >
[Add/Import Product] > Import the product included in the .zip > Override yes
Go to Styles & Templates -> Choose your style and click on < > to expand the templates ->
Click Navigation/Breadcrumb Templates > Click on navabar
Add to the end of the template $quickregister
Go to vBulletin Options -> Quick Register Settings ->
Turn on/off settings you want/need

Modifcation Includes:
(1) Plugin
(1) Template
(1) Settings group
(5) New Settings
(25) New Phrases

Changelog:
(5/29/06) 1.6.2 Changed how the forum rules window displays, changed phrase text for Quick Register.
(5/26/06) 1.6.1 You can now set the welcome message via the AdminCP. Fixed minor typo in Admin CP.
(5/24/06) 1.6.0 Image Verification included, new welcome message displayed, bug fixes.
(5/222/06) 1.5.0: Both Plugins merged, added setting options, bug fixes.
(4/30/06) 1.1.1: Fixed a phrase issue with Quick Register Age.
(4/30/06) 1.1.0: Added phrases for all text except Months.
(4/28/06) 1.0.0: Converted from the template edition to Plugin Edition.

Credits: Thanks to LiveWire for contributing and looking over some of the alpha code for version of 1.5
Thanks also goes to SecondV for including the code for image verification.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #42  
Old 05-05-2006, 04:14 PM
almukmin almukmin is offline
 
Join Date: Feb 2006
Posts: 76
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #43  
Old 05-05-2006, 09:15 PM
RDX1 RDX1 is offline
 
Join Date: Apr 2002
Posts: 497
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You can use the $templatecode somewhere else if you need to have the referral box in it's place.
Reply With Quote
  #44  
Old 05-10-2006, 04:06 PM
marsauae.com marsauae.com is offline
 
Join Date: Aug 2003
Location: U.A.E / sharjah
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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

Install
Reply With Quote
  #45  
Old 05-10-2006, 07:23 PM
Al-Fateh Al-Fateh is offline
 
Join Date: Apr 2006
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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

otherwise it cant
Reply With Quote
  #46  
Old 05-11-2006, 02:58 PM
RDX1 RDX1 is offline
 
Join Date: Apr 2002
Posts: 497
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #47  
Old 05-14-2006, 09:10 PM
Mr Chad's Avatar
Mr Chad Mr Chad is offline
 
Join Date: Jul 2005
Posts: 911
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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>";
?>
Reply With Quote
  #48  
Old 05-16-2006, 12:49 AM
Mr Chad's Avatar
Mr Chad Mr Chad is offline
 
Join Date: Jul 2005
Posts: 911
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You think you can add the referal bit (hidden). Because now when people refer they dont get credit.
Reply With Quote
  #49  
Old 05-19-2006, 07:38 AM
RDX1 RDX1 is offline
 
Join Date: Apr 2002
Posts: 497
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #50  
Old 05-22-2006, 03:37 AM
RDX1 RDX1 is offline
 
Join Date: Apr 2002
Posts: 497
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm working on a new version. It does not include image verification yet.
Reply With Quote
  #51  
Old 05-22-2006, 08:03 AM
RDX1 RDX1 is offline
 
Join Date: Apr 2002
Posts: 497
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 09:12 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04622 seconds
  • Memory Usage 2,329KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete