vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Add-On Releases - Pay to Register (https://vborg.vbsupport.ru/showthread.php?t=263521)

SamirDarji 06-14-2011 10:42 PM

Noting to look at later in the year. I'm still on vb3.8x, so I hope it works when I get a chance to work on it.

BadgerDog 06-15-2011 12:09 PM

Installed with thanks for testing on 4.1.3 development forum ... :up:

Nice work and the mod as a lot of excellent potential for site owners to drive increased revenues. We would pay for some customization (if available) once it settles into a final production version. :)

We have immediately noticed one problem if a specific sequence of keystrokes is followed.

1. Logged out as a valid user (Admin)
2. Clicked on "Register" link.
3. Screen appeared properly with two choices (Paid Registration Method and Free Registration Method).
4. Was satisfied the mod worked fine to this point and wanted to defer further testing until later.
5. Next, simply re-entered my personal site user name and password in the empty boxes, checked "Remember Me" and hit SUBMIT BUTTON.
6. Screen clears but instead of logging in, vBulletin attempts to execute the link below (xxx's replaced site name for privacy) and nothing happens except a blank white screen which is locked up. If you backspace on the browser input line and only click on basic site link, then site loads properly and one can login after that, or it may be pick up the stored "cookie" and login properly.
7. Problem is repeatable on our site on a consistent basis.

http://www.xxxxx.com/devforum/register.php?do=select_subscription

If you need any further information, please let me know ... :up:

Regards,
Doug

HellRZR 06-15-2011 12:25 PM

Quote:

Originally Posted by BadgerDog (Post 2208027)
Installed with thanks for testing on 4.1.3 development forum ... :up:

Nice work and the mod as a lot of excellent potential for site owners to drive increased revenues. We would pay for some customization (if available) once it settles into a final production version. :)

We have immediately noticed one problem if a specific sequence of keystrokes is followed.

1. Logged out as a valid user (Admin)
2. Clicked on "Register" link.
3. Screen appeared properly with two choices (Paid Registration Method and Free Registration Method).
4. Was satisfied the mod worked fine to this point and wanted to defer further testing until later.
5. Next, simply re-entered my personal site user name and password in the empty boxes, checked "Remember Me" and hit SUBMIT BUTTON.
6. Screen clears but instead of logging in, vBulletin attempts to execute the link below (xxx's replaced site name for privacy) and nothing happens except a blank white screen which is locked up. If you backspace on the browser input line and only click on basic site link, then site loads properly and one can login after that, or it may be pick up the stored "cookie" and login properly.
7. Problem is repeatable on our site on a consistent basis.

http://www.xxxxx.com/devforum/register.php?do=select_subscription

If you need any further information, please let me know ... :up:

Regards,
Doug

Nice catch! I confirm that this is happening to our installation as well. Tested the above on Chrome, IE 9 and Firefox.

BadgerDog 06-15-2011 12:46 PM

Quote:

Originally Posted by HellRZR (Post 2208031)
Nice catch! I confirm that this is happening to our installation as well. Tested the above on Chrome, IE 9 and Firefox.

You're welcome .... :up:

This add-on has wonderful potential at many levels to capture impulse based revenue as users are in the mood during registration. Appreciate the author's efforts and yours in helping his development process.

Regards,
Doug

HellRZR 06-15-2011 12:57 PM

Quote:

Originally Posted by BadgerDog (Post 2208038)
You're welcome .... :up:

This add-on has wonderful potential at many levels to capture impulse based revenue as users are in the mood during registration. Appreciate the author's efforts and yours in helping his development process.

Regards,
Doug

Hi Doug,

Agreed! If you visit our website you will see how we use it. Thus far it has brought in revenue already. Beside the problem you just reported we have been using it with great success. I highly recommend this addition to all sites who which to make some revenue to help maintain their site.

vbresults 06-15-2011 01:03 PM

Never thought of someone using that exact sequence! The page is blank because the paid registration script is stopping the page from being loaded by an already registered user. I will just change the exit/blank page to a no permission screen so log in can proceed. An update is coming within ten minutes. :)

BadgerDog 06-15-2011 01:08 PM

Quote:

Originally Posted by HellRZR (Post 2208046)
Hi Doug,

Agreed! If you visit our website you will see how we use it. Thus far it has brought in revenue already. Beside the problem you just reported we have been using it with great success. I highly recommend this addition to all sites who which to make some revenue to help maintain their site.

Yup ... :up:

One of the customizations we've been trying to figure out how to do is have a slightly different message displayed for folks who see the "subscription" description during registration, as opposed to the ones that view it later after free registration. The canned description we currently use for the latter works for the most part, but it would be great to be able to present something "more tuned" to the new (in the process of registering) user as opposed to just showing the canned one, yet the end result of subscription amounts, that process and procedure are the same in both cases.

Regards,
Doug

vbresults 06-15-2011 01:22 PM

Quote:

Originally Posted by BadgerDog (Post 2208053)
Yup ... :up:

One of the customizations we've been trying to figure out how to do is have a slightly different message displayed for folks who see the "subscription" description during registration, as opposed to the ones that view it later after free registration. The canned description we currently use for the latter works for the most part, but it would be great to be able to present something "more tuned" to the new (in the process of registering) user as opposed to just showing the canned one, yet the end result of subscription amounts, that process and procedure are the same in both cases.

Regards,
Doug

I will attempt to add template conditionals so you can do:
HTML Code:

<vb:if condition="THIS_SCRIPT == 'register'>
        <!-- registration description -->
<vb:else />
        <!-- user panel description -->
</vb:if>

No promises, but if I can, this will take us straight to 2.0. :)

For now, if you are using JQuery, you can use the add the code below to your header template since vBulletin sets the THIS_SCRIPT variable.
HTML Code:

<script type="text/javascript">
        $(document).ready(function() {
                if (THIS_SCRIPT == 'register') {
                        $('.registration_description').removeClass('hidden');
                } else {
                        $('.user_panel_description').removeClass('hidden');
                }
        });
</script>

In each description, wrap your registration html in...
HTML Code:

<div class="registration_description hidden">...</div>
In each description, wrap your user panel html in...
HTML Code:

<div class="user_panel_description hidden">...</div>

HellRZR 06-15-2011 01:54 PM

thanks for the update lancer. :)

vbresults 06-15-2011 04:13 PM

Thanks to kh99 for inspiring the concept that after receiving payment and the registration is complete, you can refund the fee so registration is actually free, yet retain the spam-deterring effects of paid registration!


All times are GMT. The time now is 08:54 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.01565 seconds
  • Memory Usage 1,757KB
  • 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
  • (4)bbcode_html_printable
  • (5)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