Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Template Modifications
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Redirect Unregistered Users to Register page in X seconds {more members proven!} Details »»
Redirect Unregistered Users to Register page in X seconds {more members proven!}
Version: 2.0, by DanTHEGREAT DanTHEGREAT is offline
Developer Last Online: Mar 2013 Show Printable Version Email this Page

Category: Forum Home Enhancements - Version: 3.8.x Rating:
Released: 01-31-2009 Last Update: 04-18-2009 Installs: 47
Template Edits
Additional Files Is in Beta Stage  
No support by the author.

Redirect Unregistered Users to Register page in X seconds
v.2.00

What does this template mod do?
Basically, this will increase registration rates by letting your guests view the forum posts, threads, etc for X amount of seconds until they get redirected to the registration page. I use this on my forum is works great! It has increased the registrations by a long shot. The key to this is that most users who join vBulletin forums cannot find the register link sometimes and often are confused. With this, they immediately get sent there and register!

How do I install this modification?
Installing is the simple part. Here we go:

simple steps into installing!

Go to admin cp>style manager>all style options>place in your header.......
Code:
<if condition="$bbuserinfo['usergroupid'] == 1" AND "THIS_SCRIPT != 'register'">
<meta HTTP-EQUIV="REFRESH" content="X; url=http://www.yourforum.com/register.php">
</if>
Replace X with how many seconds you want the unregistered to view your board.
Replace "yourforum" with your site name.

Press Save.

Next, go into your FTPs and replace your register.php with the one below.

You are all finished .

I will not be giving support to people who do not mark as installed and I do not accept help pms.

Thanks!


History:

March 1st - Initial Release
Introduction to experiment

April 19th - Register.php Addition
- Fixed Refreshing While in Registration
Thanks AllOutVB

Download Now

File Type: php register.php (40.3 KB, 170 views)

Show Your Support

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

Comments
  #12  
Old 02-02-2009, 06:26 PM
DanTHEGREAT's Avatar
DanTHEGREAT DanTHEGREAT is offline
 
Join Date: Oct 2008
Posts: 194
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Phaedrus View Post
It's because the script uses the Userid of 1 rather than the Usergroup of 1...

Change the script to:

Code:
<if condition="$bbuserinfo['usergroupid'] == 1">
<meta HTTP-EQUIV="REFRESH" content="X; url=http://www.yourforumurl.com/register.php">
</if>
Thanks wrote my code wrong.
Quote:
Originally Posted by Stubbed View Post
No.

Pretty poorly coded IMHO, if it wasn't for the input of the other people in this thread it wouldn't even work.

This will just annoy guest users more than anything.
I respect your opinion.

guys, if you give your guests enough time, you can implement this real easy. I made it wait every five minutes. It works great.

I will update a newer version soon with better coding.
Reply With Quote
  #13  
Old 02-02-2009, 06:33 PM
TheInsaneManiac TheInsaneManiac is offline
 
Join Date: Feb 2008
Posts: 1,360
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DanTHEGREAT View Post
Thanks wrote my code wrong.


I respect your opinion.

guys, if you give your guests enough time, you can implement this real easy. I made it wait every five minutes. It works great.

I will update a newer version soon with better coding.
The problem with that is who remains on a page for five minutes? The counter will refresh after the page changes.
Reply With Quote
  #14  
Old 02-02-2009, 06:57 PM
dreads dreads is offline
 
Join Date: Feb 2007
Posts: 141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Google does follow meta tags -_-
they dont follow javascript lol

I am going to release my own hold up
Reply With Quote
  #15  
Old 02-03-2009, 07:58 PM
thea1masta thea1masta is offline
 
Join Date: Feb 2009
Posts: 4
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thank you. i was able to install this very quickly with no problems. Very good idea.
Reply With Quote
  #16  
Old 02-08-2009, 03:46 PM
medusa1 medusa1 is offline
 
Join Date: Jul 2007
Location: Brazil
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

a other good solution without automatic redirect is disable the search for guests and add the follow code to your header where your navbar is located

Code:
<if condition="$bbuserinfo['usergroupid'] == 1">


			<td id="navbar_search" width="50" height="55"><a href="register.php$session[sessionurl_q]" rel="nofollow"><img src="$stylevar[imgdir_misc]/nav_search.gif" width="50" height="55" border="0" alt=""/></a> 

</if>
now they can see the searchbutton but he open the registerpage early or later they will register to be able use the searchfunktion
Reply With Quote
  #17  
Old 02-08-2009, 08:41 PM
ckusmez ckusmez is offline
 
Join Date: Nov 2007
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Affects Google Bots ?
Reply With Quote
  #18  
Old 02-08-2009, 10:38 PM
Phaedrus Phaedrus is offline
 
Join Date: Jul 2006
Location: Colorado
Posts: 617
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

One thing to keep in mind. If you don't allow enough time, they will be unable to register as they will be redirected back to the start of the register page every X seconds (whatever you select).
Reply With Quote
  #19  
Old 02-10-2009, 01:47 AM
luan7749's Avatar
luan7749 luan7749 is offline
 
Join Date: Apr 2008
Posts: 69
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How about SpiderBot ( google, yahoo ) ? Will They redirect ? I don't want so !
Reply With Quote
  #20  
Old 02-10-2009, 01:54 AM
ForumsMods ForumsMods is offline
 
Join Date: Aug 2007
Location: Argentina
Posts: 667
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes, they will be redirected.
Reply With Quote
  #21  
Old 02-11-2009, 06:49 PM
luan7749's Avatar
luan7749 luan7749 is offline
 
Join Date: Apr 2008
Posts: 69
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Gasper View Post
Yes, they will be redirected.
This's bad
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 05:49 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.04844 seconds
  • Memory Usage 2,333KB
  • Queries Executed 26 (?)
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
  • (3)bbcode_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (1)postbit_attachment
  • (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_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete