vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Miscellaneous Hacks - VSa - Advanced Registration (https://vborg.vbsupport.ru/showthread.php?t=236117)

Videx 08-02-2011 12:38 AM

Quote:

Originally Posted by SomeoneTalked (Post 2227935)
Can't seem to get this working on vBulletin 4.1.5, anybody here having the same trouble?

You need to give us something to go on, like what type of hosting, which version of PHP, what type of errors are you getting, did the .xml seem to import okay, what other mods do you have that might be interfering, etc. etc.

SomeoneTalked 08-02-2011 09:25 AM

Hosting on HostGator (currently hatchling plan)
PHP5

I'm not getting any errors, I upload the xml file via "Import/Export" product but it never shows up on my Admin CP Options list, nothing at all. It's there on my product list and everything, but I can't see the control panel for it anywhere.

Get exactly the same problem for VSa Chatbox. I have only just set the forum up so there are no other plugins, mods, skins or products installed currently.

Apologies, I'm a techy novice.

https://vborg.vbsupport.ru/external/2011/08/119.png

https://vborg.vbsupport.ru/external/2011/08/120.png

Videx 08-02-2011 01:08 PM

A quick site search for "options not showing" turned up this short thread from 2006: https://vborg.vbsupport.ru/showthread.php?t=132957 . Like him, I think your install is bad and I'd try reinstalling vb. I think since then there are some tools that might help, like "check file versions", but a reinstall may be lots easier and would fix lots of problems you haven't even run into yet.

SomeoneTalked 08-02-2011 09:56 PM

Ah man, that is ++++ing weeeeak. No worries. Is there any way I can back up the work I've done on the forum so far, forums, configs etc?

Videx 08-02-2011 10:24 PM

I don't think you want to. Clearly there's a very serious problem and you need to purge everything and start over. Look at it this way - you'll do it all quicker the second time around!

That being said, you can certainly try importing a db backup after a clean install. But I don't think I would trust it enough to warrant the short time it would take to just do it over again.

SomeoneTalked 08-02-2011 10:46 PM

No worries, thanks for the heads up, wish me luck this time around!

OlijO 09-11-2011 12:42 PM

Hi, after install i obtain a white page when i try to configure the random question.
Si http://www.mysite.com/misc.php?do=vsaaregman&ca=mq
= white page.
My vB is 4.1.5PL1

SweDev 09-13-2011 02:03 PM

Hi
Just installed no problems. A question though;
Does setting "Maximum Invitations user can send at once" to 0 = no limit?

nit233 09-20-2011 07:08 AM

It gives an error if there are whitespaces...else works perfect

bluebare 09-22-2011 05:20 PM

Hi

Just installed no problems on 4.1.6 with operations, but have a style problem. I have a dark background, and the invite page. Has Dark input box & Dark Font. I had this problem on another item but can't seem to find it on the templates. Could you please assist?

basilrath 09-26-2011 12:31 PM

Quote:

Originally Posted by bluebare (Post 2249007)
Hi

Just installed no problems on 4.1.6 with operations, but have a style problem. I have a dark background, and the invite page. Has Dark input box & Dark Font. I had this problem on another item but can't seem to find it on the templates. Could you please assist?

Same here its a style thing

Not sure of the fix yet

edit

add.......
{vb:raw headinclude_bottom}

above
</head>

Onto templates:

vsa_areg_editquestion
vsa_areg_invite
vsa_areg_manage

bluebare 09-26-2011 05:47 PM

this fix the problem thank you

oldfan 09-27-2011 04:21 PM

Just installed on 4.1.5, no errors and looks like its running ok.

thanks

oh for some reason my Human Verification image isn't showing now?

k6rikko 10-10-2011 01:02 AM

hello sorry about my question but is the following possible, ithink this is the right place with people they can help me in this

I need at the registration 2 times the input for the date of birth for couple registrations, also shown than at the profile too .
Exists a mod or is it possible to modificate this ?
I would be very happy if someone can help me in this

Sooo many thanks Rikko :)

fxwoody 10-25-2011 02:22 PM

1 Attachment(s)
Well, your hack works perfectly on my forum Valter!
Tho, i was missing something because it's a bilingual forum so, i did the French translation for it!

Hope it will help some of you ;)

Just one little bug, when using the invitation system, the page layout get totally out of the original built! Any idea how to fix this one?

I put the image in attachment ;)

Tks guys

evilthoutz 11-28-2011 04:14 AM

Hello the server that I have hosted in Russia seems to have a BlackListed SMTP. Which sucks because the new owner of the server "me" is affected by this. Now I love this plugin so I can't use the email function so I wanted to edit it to just spit out the Code that was generated to the user instead. So that user who wants to invite someone can send them the code there self + also get the code.


I am using this code but it will only spit out the first code that the user sends out. I am having issues creating this array to show all the codes for that user :( If anyone can help guide me that would be awesome!

Code:

$theuserid = $vbulletin->userinfo['userid'];
$result = $vbulletin->db ->query_read("SELECT * FROM vsa_advreg_invite WHERE inviter='$theuserid'");
while($row = $vbulletin->db->fetch_array)
 {
$getcode =  "You invited: " . $row['invited']. "<br> Your Code to Give: ". $row['code'] . "<br>";
 }

And to register the variable

Code:

$templater->register('getcode', $getcode);

evilthoutz 11-28-2011 02:03 PM

Found the answer out from another user on the forums :)

Working Code if anyone else is interested in using in case they don't want to use email function:

FYI: Some may have to change MySQL Query because its not selecting the Prefix from vBulletin if anyone has a Prefix set for table_names!

Code:

$getcode = '';
$theuserid = $vbulletin->userinfo['userid'];
$result = $vbulletin->db ->query_read("SELECT * FROM vsa_advreg_invite WHERE inviter='$theuserid'");
while($row = $vbulletin->db->fetch_array($result))
 {
 $getcode .=  "You invited: " . $row['invited']. "<br> Your Code to Give: ". $row['code'] . "<br>";
 }


Alan_SP 12-08-2011 06:30 AM

Is it possible that users can see where they sent invitations? Something similar like admins (usergroup 6, as it is hard coded now) now can see it, but only for everyone else, just for their invitations?

I know that now it isn't possible, but if Valter would consider this in next version?

Alan_SP 12-08-2011 09:45 AM

As a bug, when invited user registers, he's email address is still listed as unaccepted invitation. At least that's how it is for me.

LuDawgs 12-13-2011 01:50 AM

Does this integrate with member referrals? ie, I send an invitation, they visit through the link that is sent to them and register...do I get credit?

Valter 12-13-2011 01:30 PM

Yes, you will be marked as referrer.

MegaManSec 12-22-2011 08:07 AM

How do I turn off the limt associated with inviting more than 2 people? IE

If I try and invite
test1@test.com, test2@test.com, test3@test.com

it gives this error:
Error: e-mail address(es) incorrect: test3@test.com

but if i just have test1 and test 2, it sends fine.

i'v changed Maximum Invitations user can send at once to 3, but it still gives this error.
Kind regards, loaep.


edit: fixed! dont put space's inbetween your commas

ellinofatsa 12-26-2011 08:57 AM

i am running 4,1,9 this working good bud i have skin problems valter can you help see the image if i tab on invites the skin broken bud the hack working
https://vborg.vbsupport.ru/external/2012/01/8.gif
https://vborg.vbsupport.ru/external/2012/01/9.gif
https://vborg.vbsupport.ru/external/2012/01/10.gif

ellinofatsa 12-27-2011 06:54 PM

nobady can help?

JAFRI 01-07-2012 05:26 AM

Quote:

Originally Posted by ellinofatsa (Post 2281061)
i am running 4,1,9 this working good bud i have skin problems valter can you help see the image if i tab on invites the skin broken bud the hack working
https://vborg.vbsupport.ru/external/2012/01/8.gif
https://vborg.vbsupport.ru/external/2012/01/9.gif
https://vborg.vbsupport.ru/external/2012/01/10.gif

same from me, skin missing on 4,1,9.,

anyone help me... :confused:

Alan_SP 01-07-2012 01:38 PM

Did you updated templates with instructions from this post?

Quote:

Originally Posted by basilrath (Post 2250182)
Same here its a style thing

Not sure of the fix yet

edit

add.......
{vb:raw headinclude_bottom}

above
</head>

Onto templates:

vsa_areg_editquestion
vsa_areg_invite
vsa_areg_manage


ellinofatsa 01-17-2012 01:48 PM

Quote:

Originally Posted by Alan_SP (Post 2284784)
Did you updated templates with instructions from this post?

working fine

getwhatuask4 02-02-2012 04:34 PM

@Valter: Two questions -

First off: Where do I find the 'donate to Valter' link? Your code has helped me heaps.

Secondly, what would it cost me to get a script coded that allowed for exceptions when advanced registration is set to 'on'? Ie - at present when it is set to 'only those invited' it locks out ALL registration except via this mod: meaning only one invitation can be sent to any given email, and that this email must be used during registration.

This makes it impossible to give access to anyone except via email - making any kind of 'backstage pass' impossible. I would like to be able to use vB's standard Q&A human verification option as a kind of backdoor. (if I just set the Q&A to on, it means those using your mod also have to also know that answer..etc. I would like both to work independently of each other)

In my head it seems like this might be a tiny code change.

Might this be possible?

Toorak Times 02-04-2012 12:02 AM

Thanks valter, installed and looks and works great.I have your other mods also.

Winter Sonata 02-04-2012 01:42 AM

PLease, anyone can assure that it works with 4.1.10 ? I don't want to upgrade now since valter's mod is essential on my site and don't want to miss it ?

Valter 02-04-2012 12:44 PM

Works with 4.1.10 with no problems.

basilrath 02-04-2012 12:47 PM

works fine with 4.1.10

Winter Sonata 02-04-2012 04:33 PM

That's great!!! Thanks alot!!!!

griffinpower 02-04-2012 08:53 PM

Installed and working great

No Time 02-07-2012 04:20 PM

I have 4.1.10 installed I can send out email with the forums! I installed this mod which looks great and is a great idea! all the functions work! it just will not send out an invite. it says that it has been sent!

checked the hotmail account 12 hours later nothing! I am sure it's something simple! But what am I missing!

Winter Sonata 02-07-2012 05:07 PM

I hope, you looked in your spam folder or you shall look if the email.php file is enabled, are you able to send emails to other users through your vbulletin board ?

No Time 02-07-2012 07:23 PM

UPDATE: Thanks Winter Sonata! I have been checking the spam folder and nothing! I tried two hotmail accounts same thing! I just installed 4.1.10 so this is what I did I disable the mod "Inactive User Reminder Emails" now I can send emails through the forum to hotmail accounts! I tried to sent A invite with this mod still nothing yet!

I uninstalled the "Inactive User Reminder Emails" mod and can send a invite to my host emails but not a hotmail account so it's alittle closer to working! any idea's

No Time 02-07-2012 11:51 PM

I don't know how But thank you! works on 4.1.10
Thanks again! great mod!

TombstoneWarrior 02-09-2012 09:10 AM

how is the set up " results for page" what does this do and is it needed? will i have to accpect every regestation???

Nirjonadda 02-25-2012 04:19 PM

Installed and tested works on 4.1.10


All times are GMT. The time now is 01:09 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.01561 seconds
  • Memory Usage 1,825KB
  • 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
  • (3)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)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