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.

corn dog 05-23-2006 12:43 AM

Just what I have been looking for :)

-Corn dog

RDX1 05-24-2006 04:56 AM

I am working on Quick Register 1.6 which includes a new template to clean up the look of the quick register and a few other options.

Thanks to SecondV, who has sent me the code to get image verifcation to work, which will be included in 1.6.

RDX1 05-24-2006 03:23 PM

1.6 now released with welcome message, bug fixes and image verification!

Eric 05-24-2006 05:43 PM

Quote:

Originally Posted by RDX1
I am working on Quick Register 1.6 which includes a new template to clean up the look of the quick register and a few other options.

Thanks to SecondV, who has sent me the code to get image verifcation to work, which will be included in 1.6.

:)

*installs ;)

chanhlinh 05-25-2006 01:03 AM

Thank you very much!

FleaBag 05-25-2006 04:45 PM

Working great, thanks. For those wondering how to enable on vBadvanced CMPS, add 'quickregister' to your Portal Output Global Variables in the vBa settings. ;)

RDX1 05-25-2006 07:32 PM

You'll need to figure that out on your own, I don't have vBadvanced installed and have no plan on adding support to it.

RDX1 05-26-2006 08:42 AM

1.6.1 has been released, You can now set the welcome message via the Admin CP. :D

Mr Chad 05-27-2006 04:25 AM

YAY Image Verification!

Mr Chad 05-27-2006 04:52 AM

For me the image verification is not working :(

its giving me a "Vbulletin" image. And there is no hash.

RDX1 05-27-2006 12:41 PM

Weird, works for me and everyone else. Not much I can do without looking at your site.

Mr Chad 05-28-2006 06:50 AM

hmm, how do i uninstall the older version (i think they are having a problem with eachother)

RDX1 05-28-2006 08:11 AM

Go into your plugins folder and uninstall. Reinstall and revert the template.

BTW, click install. :)

Mr Chad 05-28-2006 08:58 AM

Ill try this tommorow, im pretty sure i aready did this.

I even installed it on my other site (it worked, but i never had the older version on that one)

malisert 05-28-2006 10:35 AM

I installed it correctly.I added $quickregister at the end of the navbar template.But it didn't work.Why?

Mr Chad 05-28-2006 03:48 PM

Quote:

Originally Posted by malisert
I installed it correctly.I added $quickregister at the end of the navbar template.But it didn't work.Why?

see, thats whats happening to me.

phill2003 05-29-2006 05:04 PM

Works like a charm thank you very much i have high hopes for this product more so than any other.

phill2003 05-29-2006 05:16 PM

Quote:

Originally Posted by FleaBag
Working great, thanks. For those wondering how to enable on vBadvanced CMPS, add 'quickregister' to your Portal Output Global Variables in the vBa settings. ;)


Or just stick it in your header template that way it is site wide without messing about.

RDX1 05-29-2006 05:33 PM

Quote:

Originally Posted by mrahul
would be great if image verification is also included. which makes my life better from the bots

Thanks! This is my first hack. :P

Not sure what to add. It's pretty great how it is now. A new design is all I could think of.

phill2003 05-29-2006 06:19 PM

Quote:

Originally Posted by RDX1
Thanks! This is my first hack. :P

Not sure what to add. It's pretty great how it is now. A new design is all I could think of.


To be honest it seems perfect to me, not too intrusive but enough to make the guest read and hopefully take the time to register.


For a first hack it is very good and works as i say a treat :)

Hmm perhaps one little thing. the forum rules would be good if it popped up in a little box rather than taking you to a new page, but its only small thing and not important :)

RDX1 05-29-2006 11:52 PM

Quote:

Originally Posted by phill2003
Hmm perhaps one little thing. the forum rules would be good if it popped up in a little box rather than taking you to a new page, but its only small thing and not important :)

That would require adding a new file.

RDX1 05-29-2006 11:57 PM

Version updated to 1.6.2 for a few changes.

bayard88 05-30-2006 09:37 PM

Thank you RDX1 for your great job !
(for my part I have associated your quick register with the "welcome header" plug-in)
* installed *

Mr Chad 05-30-2006 10:12 PM

yea im useing your old hack, how do you fully uninstall it?

(oh and you can add more collums)


https://vborg.vbsupport.ru/

(the example above is a snapshot of my myspace register system with this hack, the images are turned off on my browser, I will not be releaseing this hack :P took too long to come up with. And had no help.)

bada_bing 05-31-2006 02:45 AM

Installed but cant get it to show up on my vbadvance portal , anyone know where to add the $quickregister for this to show up on vbadvance?

RDX1 05-31-2006 05:50 AM

I don't want to make it too big in size. :)

Uninstall the plugin and revert the templates if needed.

Quote:

Originally Posted by Mr Chad
yea im useing your old hack, how do you fully uninstall it?

(oh and you can add more collums)


http://www.imgshed.com/files/1/untitled_thumb.jpg

(the example above is a snapshot of my myspace register system with this hack, the images are turned off on my browser, I will not be releaseing this hack :P took too long to come up with. And had no help.)

Quote:

Originally Posted by bayard88
Thank you RDX1 for your great job !
(for my part I have associated your quick register with the "welcome header" plug-in)
* installed *

Thanks. :D

phill2003 05-31-2006 03:42 PM

Hi.

I have a problem if you have to time to help :).

I have photopost gallery and have this in the header so it shows on the whole site, the only thing is the image verification image does not get generated on the photopost pages? any idea what i can do please.

RDX1 05-31-2006 08:02 PM

I don't use Photopost so I can't help you with that. The only thing I can think of is if it's in another directory that it's calling the image function files.

phill2003 06-02-2006 04:18 AM

Oh well never mind, would you know how to stop it being shown on the photopost page using an <if> thing then :)

RDX1 06-02-2006 09:51 AM

Quote:

Originally Posted by phill2003
Oh well never mind, would you know how to stop it being shown on the photopost page using an <if> thing then :)

Not tested, something along these lines, I have no clue what to put though since I don't use photopost?
Code:

<if condition="THIS_SCRIPT != 'photopost'">$quickregister</if>


All times are GMT. The time now is 01:02 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.02355 seconds
  • Memory Usage 1,836KB
  • 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
  • (1)bbcode_code_printable
  • (2)bbcode_php_printable
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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