View Full Version : Add-On Releases - Online Gaming Recruitment Application System
Gooner
06-10-2008, 10:00 PM
This is a modification originally developed for 3.6.x for websites wishing to use an application, although originally designed for world of warcraft it can be used for any game.
This Mod only officially works with 3.6... but since this is open code. anyone can take the code and make it work for 3.7 and re-publish it... with credits ofcourse.
I have had this modification for a long time and only today decided to release it to the public hoping somebody might want to carry on its developement because i just dont have time, so feel free to modify the code and re-release it under a different name but please give credit.
Install
Unzip "product-vgat" from the "OTD Application System" folder.
Navigate to "Plugins & Products" in your vbulletin control pannel and then "Manage Plugins"
Upload the "product-vgat" plugin
Your product is now installed and ready for configuration.
Main Configuration (refresh website after plugin installation first)
from your vbulletin admin panel go into your Vbulletin options and scroll down to "Guild Application Form Options"
configure "form url" and "forum location" to your own preference
Field checking has not really been fully tested or developed so you may encounter bugs while using "Non Empty Fields", "Numeric Fields", "Boolean Fields", The rest is fully tested and operational!!!!
How To Configuring Your Application Questions
The thing that makes my application system good is that its VERY easy to add and delete questions by yourself with minimal programming knowlege, mostly just copy and paste and change the question ;)
go into "Style & Templates" and then into "Style Manager" and "Edit" the template you will be using.
scroll down to "vgat_form" and double click
This is were you add, edit and delete all your questions which will be required when a visitor fills out their application, I will try my best to explain how to add the following questions: Radio Button, CheckBox, Single Line Text Box, Multiline Text Box, Drop-Down Menu
Radio Button Question Example
<table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="alt1 wowsl" valign="center" width=50%>
I Am a Human
</td>
<td class="alt1 wowsc" valign="center" width=50%>
<center>
<input type="radio" name="q_Human" value="No" /> No
<input type="radio" name="q_Human" value="Yes" /> Yes
</center>
</td>
</tr>
</table>
Question = "I Am a Human"
Question Name = q_Human You need to write down the "Question Name" for EVERY question you make because you will need it later when we design your output tmplate which gets posted on your forum
Input Type = radio Indicates that this question is a Radio Button
Check-Box Question Example
<table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="alt1 wowsl" valign="center" width=50%>
What is your favurite colours:
</td>
<td class="alt1 wowsc" valign="center" width=50%>
<center>
<input type="checkbox" name="q_colour_red" value="red" /> red
<input type="checkbox" name="q_colour_green" value="green" /> green
<input type="checkbox" name="q_colour_blue" value="blue" /> blue
<input type="checkbox" name="q_volour_pink" value="pink" /> pink
</center>
</td>
</tr>
</table>
Drop-Down Menu Question Example
"q_ConnectionType" is your name in this instance, which you will need later
<table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="alt1 wowsl" valign="center" width=50%>
What type of Internet Connection do you use:
</td>
<td class="alt1 wowsc" valign="center" width=50%>
<center>
<select name="q_ConnectionType">
<option value="--" ></option>
<option value="Dialup" >Dialup</option>
<option value="ISDN" >ISDN</option>
<option value="DSL" >DSL</option>
<option value="Cable" >Cable</option>
<option value="Faster than Cable" >Faster than Cable</option>
</select>
</center>
</td>
</tr>
</table>
Single Line Text Box Question Example
<table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center">
<td class="alt1 wowsl" valign="center" width=50%>
What is your Character name?
</td>
<td class="alt1 wowsc" valign="center" width=50%>
<center>
<input type="text" size="25" value="" name="q_CharacterName" />
</center>
</td>
</tr>
</table>
Multi-Line Text Box Question Example
<table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="alt2 wowpl" valign="center">
Please describe what you like about the game and your character.
</td>
</tr>
<tr>
<td class="alt1 wowsc" valign="center">
<center>
<textarea rows="5" cols="70" name="q_LikeAboutTheGame"></textarea>
</center>
</td>
</tr>
</table>
Now i will explain how to configure your output file which will be posted on the forums.
Go back in to your "Guild Application Form Options" panel
Scroll down to the "Thread Body" panel
Example Code
[ size=5][ color=#87F717][ b]Character Information[/b][/color][/size]
[ color=#B1FB17]Armory Link[/color] - {{q_ArmoryLink}}
[ color=#B1FB17]Recent WWS Report[/color] - {{q_WWS}}
[ color=#CCFB5D]Character name:[/color] {{q_CharacterName}}
[ color=#CCFB5D]Character Class:[/color] {{q_CharacterClass}}
[ color=#CCFB5D]Character Level:[/color] {{q_CharacterLevel}}
As you can see the Names of the questions i told you to write down are done like "{{q_CharacterName}}" between {{}}.
You can also have thread titles look like the following:
Application from {{q_CharacterName}} Class: {{q_CharacterClass}}
::Making the application system work with 3.7.x::
Access Admin Panel and navigate to your Style Manager and edit the style you use.
Scroll down to "vgat_form" and Access
Find Line:
<input type="hidden" value="1" name="agree" />
Below it Add:
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
SAVE....
Scroll down the list again and find "vgat_rules" and Access.
Find Line
<input type="hidden" name="s" value="$session[sessionhash]" />
Below it Add:
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
SAVE....
Done
This Mod only officially works with 3.6... but since this is open code. anyone can take the code and make it work for 3.7 and re-publish it... with credits ofcourse.
Thats about it and im sure you can figure the rest out for yourselves.. i will try and help with any questions you may have.
Enjoy!!
dannykilla
06-11-2008, 01:00 PM
Awesome what about changing it a bit for Warhammer Online: AOR
Gooner
06-11-2008, 02:06 PM
Awesome what about changing it a bit for Warhammer Online: AOR
sure... it can be changed easy.. just changing the words... the great thing about my plugin is that nothing is hard to change like other mods... let me know what you want changed/added and ill do it or i can tell you how.
dannykilla
06-11-2008, 04:22 PM
cool thanks i'll take a look tonight
M-Tuning
06-11-2008, 04:48 PM
Looks cool!
Gooner
06-11-2008, 05:43 PM
I decided to change the name to a more appropriate one.. since it can be used for ANYTHING and not just world of warcraft. hope you all like it.
iogames
06-11-2008, 06:49 PM
Where do you get it?
Do the original coder keeps upgrading?
Gooner
06-11-2008, 06:57 PM
its mine but i dont have time to keep working on it, i have used it on my guild website for the past 2 months so thats why im giving permission for other coders to carry on the coding.. my study takes up all my time.
iogames
06-11-2008, 09:08 PM
Thank you then! since my site will be have drafts
ssslippy
06-12-2008, 12:26 AM
This is great improvement on top of what was originally there.
Gooner
06-12-2008, 08:17 AM
I originally got the idea from Elricstorms application form, but i found his very hard to add my own questions so i fully re-did everything in my own way, which gives a much easyer and flexable way to add your own customized questions.
If somebody could test this on 3.7 and post here if it works it would be much appreciated, my license has ran out so i can no longer get any updates untill i pay to renew my license... which i plan to do soon.
KURTZ
06-12-2008, 08:37 AM
thx mate, i'll check in the noon ...
*tagged
KURTZ
06-12-2008, 09:56 AM
OK just tried onto 3.7.1 PL1, i haven't configured anything (i mean questions etc), i've only checked if this hack runs, unfortunately not :(, when i go over my linked forum (app_form) it links me to the 'Guild Requirements & Expectations' but when i tried to go ahead it gives me the classic 'Security token' error (it been fixed with the latest vB releases) ...
so the error was:
Your submission could not be processed because a security token was missing or mismatched.
If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.
Gooner
06-12-2008, 10:39 AM
Thanks for trying,, I have added the line of code to the mod that fixes the Token Error, Could you download the updated mod i have added and try it out and let me know if the problem is resolved... i cannot test this since i dont have 3.7.1 installed, sorry.
OK just tried onto 3.7.1 PL1, i haven't configured anything (i mean questions etc), i've only checked if this hack runs, unfortunately not :(, when i go over my linked forum (app_form) it links me to the 'Guild Requirements & Expectations' but when i tried to go ahead it gives me the classic 'Security token' error (it been fixed with the latest vB releases) ...
so the error was:
Your submission could not be processed because a security token was missing or mismatched.
If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.
Freddie
06-12-2008, 10:55 AM
Hi, I'm also trying the OTD version on Vbulletin 3.6.8.
It shows me correctly the rules and the questions also but when I click on the submit button it resets all the fields and it doesn't create any thread and it doesn't show any message:(
I didn't do any changes to the default questions just to try it.
Can you help me?
KURTZ
06-12-2008, 10:55 AM
Thanks for trying,, I have added the line of code to the mod that fixes the Token Error, Could you download the updated mod i have added and try it out and let me know if the problem is resolved... i cannot test this since i dont have 3.7.1 installed, sorry.
yeah mate, now it runs ... ;) release it into 3.7.x hacks if you want ... ;)
Gooner
06-12-2008, 11:01 AM
Make sure you have set up the configuring in your Vbulletin Admin panel, you need to create the BBCode output file and choose the forum were you want the application to be posted... and make sure you have the permissions set on that forum to allow registered members to create new threads.
The BBcode is explained in my original post above.
Hi, I'm also trying the OTD version on Vbulletin 3.6.8.
It shows me correctly the rules and the questions also but when I click on the submit button it resets all the fields and it doesn't create any thread and it doesn't show any message:(
I didn't do any changes to the default questions just to try it.
Can you help me?
Gooner
06-12-2008, 11:02 AM
yeah mate, now it runs ... ;) release it into 3.7.x hacks if you want ... ;)
Great news :) and thanks for letting me know
KURTZ
06-12-2008, 11:04 AM
Great news :) and thanks for letting me know
nothing :)
however Gooner, i need to put many 'raid' options and delete the others (heroic and key) is possible? how? can you makes some options for this? TIA
KURTZ
06-12-2008, 11:10 AM
Gooner, unfortunately the 'secury issue' is still here ... now it comes out when i try to submit my form ...
Gooner
06-12-2008, 11:26 AM
To add the option via control pannel to dynamically change and add any question would be alot of coding, but i have uploaded an easy to edit template with questions...
Every question is between <Table ---> and ----> </table> so anything between the <Table> code you can delete or just edit to your own question... also i have just added another extra code to try and fix the token error.... download and try>>
"Application System (Different Layout) + 3.6.x-3.7.x.zip "
Example::::
<table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center">
<td class="alt1 wowsl" valign="center" width=50%>
What is your Character name?
</td>
<td class="alt1 wowsc" valign="center" width=50%>
<center>
<input type="text" size="25" value="" name="q_CharacterName" />
</center>
</td>
</tr>
</table>
That is 1 question which you can delete or change because it is in between the "Table" coding.
KURTZ
06-12-2008, 11:36 AM
i got this now: XML Error: Empty document at Line 1 when i try to install or overwrite ...
Freddie
06-12-2008, 11:38 AM
Make sure you have set up the configuring in your Vbulletin Admin panel, you need to create the BBCode output file and choose the forum were you want the application to be posted... and make sure you have the permissions set on that forum to allow registered members to create new threads.
The BBcode is explained in my original post above.
I followed your tutorial indication but it is still doing the way I explained im my previous post :(
I configured the options, choosing to not send the PMs, the I wrote both Thread body and Thread title with correct field names but nothing happens except resetting fields.
I specified as output forum a registered-only forum.
What am I doing wrong?
Thanks for you help Gooner
Gooner
06-12-2008, 11:51 AM
i got this now: XML Error: Empty document at Line 1 when i try to install or overwrite ...
ok... try download the new XML file i uploaded and follow the "Making it work with 3.7" in the original post which i have just added... i tried it on my forum and i got no errors.. hopefully it will be the same for you.
Gooner
06-12-2008, 11:52 AM
I followed your tutorial indication but it is still doing the way I explained im my previous post :(
I configured the options, choosing to not send the PMs, the I wrote both Thread body and Thread title with correct field names but nothing happens except resetting fields.
I specified as output forum a registered-only forum.
What am I doing wrong?
Thanks for you help Gooner
Are you sure your clicking the "Submit" buttona dn not the "Reset" button?? because i dont see any reason why your form should be resseting unless your triggering it to do so... make sure you click "Submit" and not use your enter key or missclick the Reset button.
KURTZ
06-12-2008, 11:55 AM
ok... try download the new XML file i uploaded and follow the "Making it work with 3.7" in the original post which i have just added... i tried it on my forum and i got no errors.. hopefully it will be the same for you.
no way Gooner, it doesn't work ... still Xml line 1 error ...
Gooner
06-12-2008, 11:58 AM
no way Gooner, it doesn't work ... still Xml line 1 error ...
it must be something else specifically to do with 3.7.x then because i have those lines added on my 3.6 board and it works error free... and im unable to troubleshoot it because my lisence has expired and i cannot installed 3.7 untill i pay again... im sure another coder wth 3.7 will be able to solve the issue rather easy though.
KURTZ
06-12-2008, 11:59 AM
it must be something else specifically to do with 3.7.x then because i have those lines added on my 3.6 board and it works error free... and im unable to troubleshoot it because my lisence has expired and i cannot installed 3.7 untill i pay again... im sure another coder wth 3.7 will be able to solve the issue rather easy though.
but the first version that you released ran, with the security issue, but ran ...
Freddie
06-12-2008, 12:05 PM
Are you sure your clicking the "Submit" buttona dn not the "Reset" button?? because i dont see any reason why your form should be resseting unless your triggering it to do so... make sure you click "Submit" and not use your enter key or missclick the Reset button.
I'm not as good as you in writing Vbulletin hacks but also not so stupid to click a wrong button instead of the correct one :D :D
Joking aside, yes, I'm clicking the "Submit" button but nothing happens but a reload with all fields resetted.
I was taking a look into your XML file and I see there is only a management for the !OnError, so maybe I'm getting some error but is not shown.
I'll try to do some attempts with changes I have in mind, but if you have some suggestion to solve this case I would appreciate it a lot :)
Thanks again.
Gooner
06-12-2008, 12:11 PM
but the first version that you released ran, with the security issue, but ran ...
I changed the template arrangement which might of had some error in it.. but i just uploaded the old original one that definatly works on 3.6 so in theory all you should need to do is add the token error code to both vgat_form & vgat_rules and it should work...
Gooner
06-12-2008, 12:12 PM
I'm not as good as you in writing Vbulletin hacks but also not so stupid to click a wrong button instead of the correct one :D :D
Joking aside, yes, I'm clicking the "Submit" button but nothing happens but a reload with all fields resetted.
I was taking a look into your XML file and I see there is only a management for the !OnError, so maybe I'm getting some error but is not shown.
I'll try to do some attempts with changes I have in mind, but if you have some suggestion to solve this case I would appreciate it a lot :)
Thanks again.
i think it must be some configuration not correct on your forum or admin panel because the mod itself should submit without a problem on 3.6.x
Freddie
06-12-2008, 03:18 PM
Is there any way to get errors shown?
sparkster666
06-12-2008, 09:28 PM
I really need this for my Version 3.7.1 site. perhaps some donations would help. I also get this error
Your submission could not be processed because a security token was missing or mismatched.
If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.
Gooner
06-13-2008, 08:03 AM
This application system works with 3.6.x at the moment but...... i will get a new license and get 3.7.1 soon and troubleshoot this problem and hopefully have a 3.7.1 version ready... unless another coder gets there before me.... because this is re-usable code.
sweede
06-13-2008, 05:42 PM
Very nice.
you really should change
foreach($HTTP_POST_VARS as $name => $value)
{
// Replace {{field_name}} with appropriate value.
$code = str_replace("{{" . $name . "}}", $value, $code);
$subject = str_replace("{{" . $name . "}}", $value, $subject);
// Make sure, on error, keep fields filled out.
eval("\$v_$name = \"$value\";");
}
though so that it doesnt use the $HTTP_POST_VARS superglobal. (and everywhere else you use the super globals.. and you should use $_REQUEST too btw)
https://vborg.vbsupport.ru/showthread.php?t=98047
Gooner
06-13-2008, 05:56 PM
Thanks... but like i said in my OP, i have no time anymore for coding unfortunatly due to MCSE studies.... but please feel free to modify the code and put your own stamp on it and re-publish it... your very welcome to do so.
Very nice.
you really should change
foreach($HTTP_POST_VARS as $name => $value)
{
// Replace {{field_name}} with appropriate value.
$code = str_replace("{{" . $name . "}}", $value, $code);
$subject = str_replace("{{" . $name . "}}", $value, $subject);
// Make sure, on error, keep fields filled out.
eval("\$v_$name = \"$value\";");
}
though so that it doesnt use the $HTTP_POST_VARS superglobal. (and everywhere else you use the super globals.. and you should use $_REQUEST too btw)
https://vborg.vbsupport.ru/showthread.php?t=98047
sweede
06-13-2008, 09:47 PM
Thanks... but like i said in my OP, i have no time anymore for coding unfortunatly due to MCSE studies.... but please feel free to modify the code and put your own stamp on it and re-publish it... your very welcome to do so.
I may do that, i like how you made the app form semi- customizable.
I had throught of creating template blocks that you can export and build a form with the vbulletin options but i for whatever reason couldnt figure out how to make it that dynamic. Using some of how you did it though, i should be able to make it complete and have a truely dynamic form.
Also, seein as how you're an avid MMO'er, you should know by now that no one reads the first post :)
tuaguild
06-13-2008, 09:50 PM
i am getting that security token error even with the fix to the templates.
salty
06-18-2008, 08:20 AM
I get the following error when I attempt to submit the form....
Fatal error: Call to undefined function build_forum_counters() in /home/salty/public_html/misc.php(96) : eval()'d code on line 129
how do I fix this?
sweede
06-18-2008, 10:44 AM
Salty RS salty?
It would appear that you're using vbb 3.6, which does not contain the function build_forum_counters(). Perhaps the original author mis-marked the forum version requirement for the addon?
salty
06-18-2008, 03:06 PM
OK, I'll upgrade and post my success afterwards. Thanks! :D
salty
06-18-2008, 03:31 PM
Upgraded and now I'm getting the security token error. Is there a fix for it yet? :(
And now I get this error:
Fatal error: Call to undefined function build_forum_counters() in /home/chiaki/public_html/misc.php(97) : eval()'d code on line 129
Gooner
06-18-2008, 05:25 PM
sorry... i have re-uploaded a definate working version for 3.6.... modify the questions through XML as it suites you... its easy enough to understand once u know the REAL basics of deleteing and copyiong lines.... no programming knowledge required....
i have been working alot and have not much time atm
Gooner
06-18-2008, 05:31 PM
I may do that, i like how you made the app form semi- customizable.
I had throught of creating template blocks that you can export and build a form with the vbulletin options but i for whatever reason couldnt figure out how to make it that dynamic. Using some of how you did it though, i should be able to make it complete and have a truely dynamic form.
Also, seein as how you're an avid MMO'er, you should know by now that no one reads the first post :)
thanks... and yea i gathered being able to add your own customizable was through XML... being able to add unlimited amount of customized questions through the vbuttetin CP would be... imense amount of work... and i used to be an avid mmoer.... my job takes up all my work now a days... which is the reason why i felt the need to release my code to other developers just incase it could come in use to anyone since i have no time anymore.
:)
salty
06-19-2008, 04:45 AM
I'm still getting the following error. I've updated the template and used the updated XML file. But I'm still getting:
Fatal error: Call to undefined function build_forum_counters() in /home/salty/public_html/misc.php(97) : eval()'d code on line 129
tuaguild
06-23-2008, 07:30 PM
i am getting the same problem as freddie and i run 3.7.1 pl2 i dont know y it isnt posting maybe you forgot a plugin in the product file
krucified
06-26-2008, 05:14 PM
What happens to me is that i fill out the form hit submit and it takes me back to the form but its blank now,
i looked at the bbcode example and cant figure out
Character name: {{q_CharacterName}}
where q is the question name i think i cant find in the code where q_questionname is
please help thanks a lot
and i am using 3.7.0
weedheaven
06-26-2008, 05:23 PM
Nice mod, to bad i quited with clans a while ago :( I hope to see more game related mods seeing come out
Gooner
06-26-2008, 06:38 PM
What happens to me is that i fill out the form hit submit and it takes me back to the form but its blank now,
i looked at the bbcode example and cant figure out
Character name: {{q_CharacterName}}
where q is the question name i think i cant find in the code where q_questionname is
please help thanks a lot
and i am using 3.7.0
{{ANYTHINGYOUWANT}}
THE {{q_CharacterName}} is just what i had on my mod//...you can call the questions whatever you want :)
Gooner
06-26-2008, 06:39 PM
i am getting the same problem as freddie and i run 3.7.1 pl2 i dont know y it isnt posting maybe you forgot a plugin in the product file
the mod isnt officially made for 3.7... thats why it isnt posted in the 3.7 section... but please feel free to make it work for 3.7 and re-release it :)
How can I install this multiple times? I've more than one guild on my forum and I want to create different form for each guild
tnks
salty
08-05-2008, 07:54 PM
How can I have it submit the app without needing moderation? :p
CEO TaYloR?
08-09-2008, 03:31 AM
I get when the application is submitted
Fatal error: Call to undefined function build_forum_counters() in /misc/42/000/160/673/8/user/web/mlegfx.com/forum/misc.php(97) : eval()'d code on line 612
any Ideas why?
Dugchugger
09-18-2008, 12:39 AM
I'm hoping someone jumps on this and updates it to 3.7.x. Thanks to Gooner for laying the groundwork. I'll be keeping my eye on this mod. ^^
Radek125
10-12-2008, 10:28 PM
I got this mod working and installed on 3.7.3, did some small modifications to it and am wondering why it keeps adding \'s before every apostrophe(') in the output thread. I love this mods customization just need to get this one last bug ironed out.
ex: He\'s
http://www.afraidyet.net/forums/showthread.php?t=73541
Any help would be appreciated, I'm at a loss.:mad::confused:
Sweede I'm guessing it has something to do with your earlier post?
Thanks
TheLastSuperman
10-12-2008, 11:09 PM
I've Downloaded but have not had time to get it how I want it!
Once I do if working correctly I'll slap a "Installed" on it :).
S-MAN
sweede
10-13-2008, 01:45 AM
Gosh radek, i'd help you but you abandoned us on vek'nilash !!!!!!
anyways, it's a problem with escape_string or escape_sql_string or something like that.
however, if you're wanting, i can give you the code i use to generate
http://www.vindicator-guild.com/forum/newthread.php?do=apply
which turns to
http://www.vindicator-guild.com/forum/showthread.php?t=311
it's -very- simple to use and requires no php coding to add new fields to the app form.
The Questions in the Q/A section are even vbulletin option (one question per line, no limit).
Radek125
10-13-2008, 05:07 AM
Yes I'm interested in that code sweede.
We couldn't help but leave boring Vek behind for Wrath=)
Thanks for the help.
I'm having the same problem as others with when you hit submit you end up at the same page, with all values cleared. I'm running 3.7.3 PL1.
I'm not a vB coder, but know enough to be dangerous so I'll poke around. But if anyone already has a fix for this, please post!
foxtrialer
11-11-2008, 04:27 PM
Someone plz make this mod for Vbulletin 3.7.4. Now is gaming period, so alot of game sites will be glad to have this mod.
I still can`t understand how to configure it, first row in option (Application Form URL) what need to be there, & where to upload form (& in what format).
Thanx.
UKCE_Hitman
11-15-2008, 10:14 AM
Nice hack and installed ..Many thanks helps a great deal...
siveriano
11-23-2008, 04:02 AM
Gosh radek, i'd help you but you abandoned us on vek'nilash !!!!!!
anyways, it's a problem with escape_string or escape_sql_string or something like that.
however, if you're wanting, i can give you the code i use to generate
http://www.vindicator-guild.com/forum/newthread.php?do=apply
which turns to
http://www.vindicator-guild.com/forum/showthread.php?t=311
it's -very- simple to use and requires no php coding to add new fields to the app form.
The Questions in the Q/A section are even vbulletin option (one question per line, no limit).
nice work, can you please tell us how you got it working on 3.7.x, please or if you want to sell it, we will really appreciate it.
sweede
11-23-2008, 10:54 AM
working? it works fine on 3.7 after you follow the inscructions about the security token. I don't use 3.6 at all so everything would work with 3.7
siveriano
11-23-2008, 10:52 PM
working? it works fine on 3.7 after you follow the inscructions about the security token. I don't use 3.6 at all so everything would work with 3.7
i try but after i hit submit it just reload the form with empy fileds, nothing else happen. can you do me a favor and post yours vgat_form and rules template, ill appreciate it.
sweede
11-24-2008, 09:05 PM
I will post my version this weekend, probably friday, when im finish with work for the week.
siveriano
11-24-2008, 11:29 PM
Thx alot.
camomouse
11-26-2008, 10:41 PM
Super Thanks Sweede, I having the same problems as everyone else.
siveriano
11-30-2008, 08:27 PM
sweede dude dont forget to help those noobs(me) lol, im just came back from a trip and realize my dedicate is down and cant log into my plesk some MySQL error, so im moving with bluehost.
werkkrew
12-01-2008, 05:03 AM
You can fix the problem by replacing all instances of $HTTP_POST_VARS in the hook with $_POST since $HTTP_POST_VARS is depreciated by PHP and most likely not enabled in your configuration.
foxtrialer
12-02-2008, 04:59 PM
sweede will you posT? i waiting so long for this)) thnx
Radek125
12-02-2008, 05:31 PM
Sweede's addon is very nice. I just been busy raiding in wolk to get it setup on live(Thanks for the files sweede!). Still using this threads addon + my own fixes to get it to work right. But plan to change over soon when i get some time.
http://www.afraidyet.net
Radek125
12-02-2008, 05:35 PM
You can fix the problem by replacing all instances of $HTTP_POST_VARS in the hook with $_POST since $HTTP_POST_VARS is depreciated by PHP and most likely not enabled in your configuration.
Thank you.
siveriano
12-02-2008, 06:40 PM
mmmmmmmmmm im getting some weird results, i mean it does submit the form and make the post/threat, but right after you hit submit a white screen shows up with this error msg.
Fatal error:
* Please complete both the subject and message fields.
Unable to proceed with save while $errors array is not empty in class vB_DataManager_PM in [path]/includes/class_dm.php on line 810
#0 vb_error_handler(256,
* Please complete both the subject and message fields.
Unable to proceed with save while $errors array is not empty in class vB_DataManager_PM, /var/www/vhosts/deathelitesquad.com/httpdocs/forums/includes/class_dm.php, 810, Array ([this] => vB_DataManager_PM Object ([validfields] => Array ([pmtextid] => Array ([0] => 3,[1] => 3,[2] => _-_mEtHoD_-_,[3] => verify_nonzero),[fromuserid] => Array ([0] => 3,[1] => 1),[fromusername] => Array ([0] => 7,[1] => 1),[title] => Array ([0] => 7,[1] => 1,[2] => _-_mEtHoD_-_),[message] => Array ([0] => 7,[1] => 1,[2] => _-_mEtHoD_-_),[touserarray] => Array ([0] => 0,[1] => 1,[2] => _-_mEtHoD_-_),[iconid] => Array ([0] => 3,[1] => 0),[dateline] => Array ([0] => 3,[1] => 0),[showsignature] => Array ([0] => 1,[1] => 0),[allowsmilie] => Array ([0] => 1,[1] => 0)),[bitfields] => Array (),[table] => pmtext,[pmtext] => Array ([fromuserid] => 1,[fromusername] => Biscuit,[title] => Your application form has been submitted,[dateline] => 1228249263),[overridequota] => ,[condition_construct] => Array ([0] => pmtextid = %1$d,[1] => pmtextid),[setfields] => Array ([fromuserid] => 1,[fromusername] => 1,[title] => 1,[dateline] => 1),[rawfields] => Array (),[registry] => vB_Registry Object ([datastore] => vB_Datastore Object ([defaultitems] => Array ([0] => options,[1] => bitfields,[2] => attachmentcache,[3] => forumcache,[4] => usergroupcache,[5] => stylecache,[6] => languagecache,[7] => products,[8] => pluginlist,[9] => cron,[10] => profilefield,[11] => loadcache,[12] => noticecache),[itemarray] => Array (),[registry] => vB_Registry Object ( *RECURSION*,[dbobject] => vB_Database Object ([functions] => Array ([connect] => mysql_connect,[pconnect] => mysql_pconnect,[select_db] => mysql_select_db,[query] => mysql_query,[query_unbuffered] => mysql_unbuffered_query,[fetch_row] => mysql_fetch_row,[fetch_array] => mysql_fetch_array,[fetch_field] => mysql_fetch_field,[free_result] => mysql_free_result,[data_seek] => mysql_data_seek,[error] => mysql_error,[errno] => mysql_errno,[affected_rows] => mysql_affected_rows,[num_rows] => mysql_num_rows,[num_fields] => mysql_num_fields,[field_name] => mysql_field_name,[insert_id] => mysql_insert_id,[escape_string] => mysql_escape_string,[real_escape_string] => mysql_real_escape_string,[close] => mysql_close,[client_encoding] => mysql_client_encoding),[registry] => vB_Registry Object ( *RECURSION*,[fetchtypes] => Array ([2] => 2,[1] => 1,[0] => 3),[appname] => vBulletin,[appshortname] => vBulletin,[database] => board,[connection_master] => Resource id #7,[connection_slave] => Resource id #7,[connection_recent] => Resource id #7,[multiserver] => ,[shutdownqueries] => Array ([lastvisit] => UPDATE user SET lastactivity = 1228249263 WHERE userid = 1 ),[sql] => ,[reporterror] => 1,[error] => ,[errno] => ,[maxpacket] => 0,[locked] => ,[querycount] => 38,[rows] => 2),[prefix] => ),[input] => vB_Input_Cleaner Object ([shortvars] => Array ([f] => forumid,[t] => threadid,[p] => postid, => userid,[a] => announcementid,[c] => calendarid,[e] => eventid,[q] => query,[pp] => perpage,[page] => pagenumber,[sort] => sortfield,[order] => sortorder),[superglobal_lookup] => Array ([g] => _GET,[p] => _POST,[r] => _REQUEST,[c] => _COOKIE,[s] => _SERVER,[e] => _ENV,[f] => _FILES),[scriptpath] => ,[reloadurl] => ,[wolpath] => ,[url] => ,[ipaddress] => ,[alt_ip] => ,[registry] => vB_Registry Object ( *RECURSION*),[db] => vB_Database Object ([functions] => Array ([connect] => mysql_connect,[pconnect] => mysql_pconnect,[select_db] => mysql_select_db,[query] => mysql_query,[query_unbuffered] => mysql_unbuffered_query,[fetch_row] => mysql_fetch_row,[fetch_array] => mysql_fetch_array,[fetch_field] => mysql_fetch_field,[free_result] => mysql_free_result,[data_seek] => mysql_data_seek,[error] => mysql_error,[errno] => mysql_errno,[affected_rows] => mysql_affected_rows,[num_rows] => mysql_num_rows,[num_fields] => mysql_num_fields,[field_name] => mysql_field_name,[insert_id] => mysql_insert_id,[escape_string] => mysql_escape_string,[real_escape_string] => mysql_real_escape_string,[close] => mysql_close,[client_encoding] => mysql_client_encoding),[registry] => vB_Registry Object ( *RECURSION*,[fetchtypes] => Array ([2] => 2,[1] => 1,[0] => 3),[appname] => vBulletin,[appshortname] => vBulletin,[database] => board,[connection_master] => Resource id #7,[connection_slave] => Resource id #7,[connection_recent] => Resource id #7,[multiserver] => ,[shutdownqueries] => Array ([lastvisit] => UPDATE user SET lastactivity = 1228249263 WHERE userid = 1 ),[sql] => ,[reporterror] => 1,[error] => ,[errno] => ,[maxpacket] => 0,[locked] => ,[querycount] => 38,[rows] => 2),[userinfo] => Array ([userid] => 1,[temp] => ,[field1] => 21 years old who have done alot for this world.,[field2] => SWFL,[field3] => doing new stuff, learning, play video games.,[field4] => Not Your bussines.,[field5] => o,[field6] => ,[subfolders] => ,[pmfolders] => ,[buddylist] => 2 6 12 17 19 26 51,[ignorelist] => ,[signature] => Want a Sig like this? Click here (http://deathelitesquad.com/ranks/) [U]https://vborg.vbsupport.ru/ (http://deathelitesquad.com/ranks/player.php?id=203) ,[searchprefs] => ,[rank] => , => 6,[membergroupids] => ,[displaygroupid] => 6,[username] => Biscuit,[password] => 0afe4172343c57c4f37d6f93b51cc2fc,[passworddate] => 1226898000,[email] => siveriano@hotmail.com,[styleid] => 9,[parentemail] => ,[homepage] => ,[icq] => ,[aim] => ,[yahoo] => ,[msn] => ,[skype] => ,[showvbcode] => 2,[showbirthday] => 2,[usertitle] => Nothing but memories.,[customtitle] => 1,[joindate] => 1223005200,[daysprune] => 0,[lastvisit] => 1228208129,[lastactivity] => 1228249258,[lastpost] => 1228248622,[lastpostid] => 0,[posts] => 174,[reputation] => 10,[reputationlevelid] => 1,[timezoneoffset] => -5,[pmpopup] => 0,[avatarid] => 0,[avatarrevision] => 0,[profilepicrevision] => 0,[sigpicrevision] => 0,[options] => 11536983,[birthday] => 11-25-1986,[birthday_search] => 1986-11-25,[maxposts] => -1,[startofweek] => 2,[ipaddress] => ,[referrerid] => 0,[languageid] => 0,[emailstamp] => 0,[threadedmode] => 0,[autosubscribe] => -1,[pmtotal] => 38,[pmunread] => 0,[salt] => ;&f,[ipoints] => 0,[infractions] => 0,[warnings] => 0,[infractiongroupids] => ,[infractiongroupid] => 0,[adminoptions] => 0,[profilevisits] => 129,[friendcount] => 6,[friendreqcount] => 0,[vmunreadcount] => 0,[vmmoderatedcount] => 0,[socgroupinvitecount] => 0,[socgroupreqcount] => 0,[pcunreadcount] => 0,[pcmoderatedcount] => 0,[gmmoderatedcount] => 0,[post_thanks_user_amount] => 6,[post_thanks_thanked_posts] => 9,[post_thanks_thanked_times] => 11,[ncode_imageresizer_mode] => ,[ncode_imageresizer_maxwidth] => ,[ncode_imageresizer_maxheight] => ,[arcade_ban] => 0,[times_played] => 0,[is_arcade_mod] => 1,[fav_games] => ,[user_sort] => 0,[user_order] => 0,[user_g_pp] => 0,[user_s_pp] => 0,[def_g_cat] => 0,[game_skin] => 0,[arcade_mod_privs] => a:4:{s:6:"scores";s:1:"1";s:8:"comments";s:1:"1";s:7:"tourney";s:1:"1";s:6:"champs";s:1:"1";},[arcade_pmactive] => 1,[games_played] => 41,[time_played] => 3446,[arcade_points] => 500,[arcade_spent] => 0,[arcade_won] => 0,[arcade_high] => 0,[create_tourney] => 1,[arcade_sess_gid] => 67,[arcade_sess_start] => 1227841286,[arcade_gtype] => 0,[arcade_session] => 423,[tmnt_joins] => 0,[tmnt_wins] => 0,[awc_ns_method] => pm+email,[ds_ns_dr_time] => 1227460582,[lang_options] => 1,[lang_code] => en,[lang_charset] => ISO-8859-1,[lang_locale] => ,[lang_imagesoverride] => ,[lang_dateoverride] => ,[lang_timeoverride] => ,[lang_registereddateoverride] => ,[lang_calformat1override] => ,[lang_calformat2override] => ,[lang_logdateoverride] => ,[lang_decimalsep] => .,[lang_thousandsep] => ,,[showsignatures] => 1,[showavatars] => 1,[showimages] => 1,[coppauser] => 0,[adminemail] => 1,[showvcard] => 0,[dstauto] => 1,[dstonoff] => 0,[showemail] => 0,[invisible] => 1,[showreputation] => 0,[receivepm] => 1,[emailonpm] => 0,[hasaccessmask] => 0,[postorder] => 0,[receivepmbuddies] => 0,[noactivationmails] => 0,[pmboxwarning] => 0,[showusercss] => 1,[receivefriendemailrequest] => 1,[vm_enable] => 1,[vm_contactonly] => 0,[adminavatar] => 0,[adminprofilepic] => 0,[urlusername] => Biscuit,[musername] => Biscuit,[displaygrouptitle] => Administrators,[displayusertitle] => President,[realstyleid] => 0,[securitytoken_raw] => 702337d6588529fd961bc6b7bde00180d5fd31a9,[securitytoken] => 1228249263-f419389c73db73ffd56721717dc7bb98e6d0c4d5,[logouthash] => 1228249263-f419389c73db73ffd56721717dc7bb98e6d0c4d5,[tzoffset] => -5,[lastvisitdate] => 12-02-2008 03:55 AM,[permissions] => Array ([usergroupid] => 6,[title] => Administrators,[description] => ,[usertitle] => President,[passwordexpires] => 180,[passwordhistory] => 360,[pmquota] => 1000,[pmsendmax] => 99,[opentag] => ,[closetag] => ,[canoverride] => 0,[ispublicgroup] => 0,[forumpermissions] => 8388607,[pmpermissions] => 7,[calendarpermissions] => 63,[wolpermissions] => 31,[adminpermissions] => 3,[genericpermissions] => 2147483647,[genericpermissions2] => 1,[genericoptions] => 55,[signaturepermissions] => 237567,[visitormessagepermissions] => 63,[attachlimit] => 0,[avatarmaxwidth] => 200,[avatarmaxheight] => 200,[avatarmaxsize] => 4294967295,[profilepicmaxwidth] => 100,[profilepicmaxheight] => 100,[profilepicmaxsize] => 900000000,[sigpicmaxwidth] => 300,[sigpicmaxheight] => 200,[sigpicmaxsize] => 1000000,[sigmaximages] => 0,[sigmaxsizebbcode] => 7,[sigmaxchars] => 0,[sigmaxrawchars] => 0,[sigmaxlines] => 0,[usercsspermissions] => 31,[albumpermissions] => 255,[albumpicmaxwidth] => 600,[albumpicmaxheight] => 600,[albumpicmaxsize] => 100000,[albummaxpics] => 100,[albummaxsize] => 0,[socialgrouppermissions] => 511,[videodirectorypermissions] => 255,[arcade_access] => 2,[p_require] => 0,[max_play] => 0,[ppd_require] => 0,[ibpa_cats] => 0,[tourney] => 1,[tournamentpermissions] => 1023,[ladderpermissions] => 31,[maxteams] => 99),[forumpermissions] => Array ([30] => 8388607,[31] => 8388607,[32] => 8388607,[36] => 8388607,[33] => 8388607,[37] => 8388607,[34] => 8388607,[35] => 8388607,[1] => 8388607,[2] => 8388607,[3] => 8388607,[4] => 8388607,[5] => 8388607,[6] => 8388607,[7] => 8388607,[27] => 8388607,[49] => 8388607,[50] => 8388607,[51] => 8388607,[38] => 8388607,[40] => 8388607,[41] => 8388607,[42] => 8388607,[43] => 8388607,[44] => 8388607,[39] => 8388607,[45] => 8388607,[46] => 8388607,[47] => 8388607,[48] => 8388607,[24] => 8388607,[8] => 8388607,[10] => 8388607,[28] => 8388607,[21] => 8388607,[12] => 8388607,[52] => 8388607,[13] => 8388607,[14] => 8388607,[15] => 8388607,[23] => 8388607,[29] => 8388607,[26] => 8388607,[16] => 8388607,[17] => 8388607,[18] => 8388607,[19] => 8388607,[20] => 8388607,[22] => 8388607),[attachmentextensions] => avi bmp bz2 dem doc gif jpe jpeg jpg pdf png psd rar txt zip,[attachmentpermissions] => Array ([avi] => Array ([permissions] => 1,[size] => 4294967295,[height] => 0,[width] => 0),[bmp] => Array ([permissions] => 1,[size] => 20000,[height] => 280,[width] => 620),[bz2] => Array ([permissions] => 1,[size] => 50000000,[height] => 0,[width] => 0),[dem] => Array ([permissions] => 1,[size] => 100000000,[height] => 0,[width] => 0),[doc] => Array ([permissions] => 1,[size] => 20000,[height] => 0,[width] => 0),[gif] => Array ([permissions] => 1,[size] => 20000,[height] => 280,[width] => 620),[jpe] => Array ([permissions] => 1,[size] => 20000,[height] => 280,[width] => 620),[jpeg] => Array ([permissions] => 1,[size] => 20000,[height] => 280,[width] => 620),[jpg] => Array ([permissions] => 1,[size] => 100000,[height] => 0,[width] => 0),[pdf] => Array ([permissions] => 1,[size] => 4294967295,[height] => 0,[width] => 0),[png] => Array ([permissions] => 1,[size] => 20000,[height] => 280,[width] => 620),[psd] => Array ([permissions] => 1,[size] => 20000,[height] => 0,[width] => 0),[rar] => Array ([permissions] => 1,[size] => 50000000,[height] => 0,[width] => 0),[txt] => Array ([permissions] => 1,[size] => 20000,[height] => 0,[width] => 0),[zip] => Array ([permissions] => 1,[size] => 50000000,[height] => 0,[width] => 0)),[reallanguageid] => 0),[session] => vB_Session Object ([vars] => Array ([sessionhash] => ,[userid] => 1,[host] => 67.233.61.78,[idhash] => e21f7a85cfa62d81b32b39f2a53f1641,[lastactivity] => 1228249263,[location] => /forums/misc.php?do=app_form&do=app_form,[useragent] => Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4,[styleid] => 0,[languageid] => 0,[loggedin] => 2,[inforum] => 0,[inthread] => 0,[incalendar] => 0,[badlocation] => 0,[bypass] => 0,[profileupdate] => 0,[invideocategory] => 0,[invideo] => 0,[in_game] => 0,[newposts] => ,[dbsessionhash] => 051b5dc5d40e317412c3dc62e5363919,[sessionurl] => ,[sessionurl_q] => ,[sessionurl_js] => ),[db_fields] => Array ([sessionhash] => 7,[userid] => 2,[host] => 7,[idhash] => 7,[lastactivity] => 2,[location] => 7,[styleid] => 2,[languageid] => 2,[loggedin] => 2,[inforum] => 2,[inthread] => 2,[incalendar] => 2,[badlocation] => 2,[useragent] => 7,[bypass] => 2,[profileupdate] => 2,[invideocategory] => 2,[invideo] => 2),[changes] => Array ([lastactivity] => 1,[location] => 1),[created] => ,[registry] => vB_Registry Object ( *RECURSION*,[userinfo] => Array ([userid] => 1,[temp] => ,[field1] => 21 years old who have done alot for this world.,[field2] => SWFL,[field3] => doing new stuff, learning, play video games.,[field4] => Not Your bussines.,[field5] => o,[field6] => ,[subfolders] => ,[pmfolders] => ,[buddylist] => 2 6 12 17 19 26 51,[ignorelist] => ,[signature] => Want a Sig like this? Click here (http://deathelitesquad.com/ranks/) [U]https://vborg.vbsupport.ru/ (http://deathelitesquad.com/ranks/player.php?id=203) ,[searchprefs] => ,[rank] => ,[usergroupid] => 6,[membergroupids] => ,[displaygroupid] => 6,[username] => Biscuit,[password] => 0afe4172343c57c4f37d6f93b51cc2fc,[passworddate] => 1226898000,[email] => siveriano@hotmail.com,[styleid] => 9,[parentemail] => ,[homepage] => ,[icq] => ,[aim] => ,[yahoo] => ,[msn] => ,[skype] => ,[showvbcode] => 2,[showbirthday] => 2,[usertitle] => Nothing but memories.,[customtitle] => 1,[joindate] => 1223005200,[daysprune] => 0,[lastvisit] => 1228208129,[lastactivity] => 1228249258,[lastpost] => 1228248622,[lastpostid] => 0,[posts] => 174,[reputation] => 10,[reputationlevelid] => 1,[timezoneoffset] => -5,[pmpopup] => 0,[avatarid] => 0,[avatarrevision] => 0,[profilepicrevision] => 0,[sigpicrevision] => 0,[options] => 11536983,[birthday] => 11-25-1986,[birthday_search] => 1986-11-25,[maxposts] => -1,[startofweek] => 2,[ipaddress] => ,[referrerid] => 0,[languageid] => 0,[emailstamp] => 0,[threadedmode] => 0,[autosubscribe] => -1,[pmtotal] => 38,[pmunread] => 0,[salt] => ;&f,[ipoints] => 0,[infractions] => 0,[warnings] => 0,[infractiongroupids] => ,[infractiongroupid] => 0,[adminoptions] => 0,[profilevisits] => 129,[friendcount] => 6,[friendreqcount] => 0,[vmunreadcount] => 0,[vmmoderatedcount] => 0,[socgroupinvitecount] => 0,[socgroupreqcount] => 0,[pcunreadcount] => 0,[pcmoderatedcount] => 0,[gmmoderatedcount] => 0,[post_thanks_user_amount] => 6,[post_thanks_thanked_posts] => 9,[post_thanks_thanked_times] => 11,[ncode_imageresizer_mode] => ,[ncode_imageresizer_maxwidth] => ,[ncode_imageresizer_maxheight] => ,[arcade_ban] => 0,[times_played] => 0,[is_arcade_mod] => 1,[fav_games] => ,[user_sort] => 0,[user_order] => 0,[user_g_pp] => 0,[user_s_pp] => 0,[def_g_cat] => 0,[game_skin] => 0,[arcade_mod_privs] => a:4:{s:6:"scores";s:1:"1";s:8:"comments";s:1:"1";s:7:"tourney";s:1:"1";s:6:"champs";s:1:"1";},[arcade_pmactive] => 1,[games_played] => 41,[time_played] => 3446,[arcade_points] => 500,[arcade_spent] => 0,[arcade_won] => 0,[arcade_high] => 0,[create_tourney] => 1,[arcade_sess_gid] => 67,[arcade_sess_start] => 1227841286,[arcade_gtype] => 0,[arcade_session] => 423,[tmnt_joins] => 0,[tmnt_wins] => 0,[awc_ns_method] => pm+email,[ds_ns_dr_time] => 1227460582,[lang_options] => 1,[lang_code] => en,[lang_charset] => ISO-8859-1,[lang_locale] => ,[lang_imagesoverride] => ,[lang_dateoverride] => ,[lang_timeoverride] => ,[lang_registereddateoverride] => ,[lang_calformat1override] => ,[lang_calformat2override] => ,[lang_logdateoverride] => ,[lang_decimalsep] => .,[lang_thousandsep] => ,,[showsignatures] => 1,[showavatars] => 1,[showimages] => 1,[coppauser] => 0,[adminemail] => 1,[showvcard] => 0,[dstauto] => 1,[dstonoff] => 0,[showemail] => 0,[invisible] => 1,[showreputation] => 0,[receivepm] => 1,[emailonpm] => 0,[hasaccessmask] => 0,[postorder] => 0,[receivepmbuddies] => 0,[noactivationmails] => 0,[pmboxwarning] => 0,[showusercss] => 1,[receivefriendemailrequest] => 1,[vm_enable] => 1,[vm_contactonly] => 0,[adminavatar] => 0,[adminprofilepic] => 0,[urlusername] => Biscuit,[musername] => Biscuit,[displaygrouptitle] => Administrators,[displayusertitle] => President,[realstyleid] => 0,[securitytoken_raw] => 702337d6588529fd961bc6b7bde00180d5fd31a9,[securitytoken] => 1228249263-f419389c73db73ffd56721717dc7bb98e6d0c4d5,[logouthash] => 1228249263-f419389c73db73ffd56721717dc7bb98e6d0c4d5,[tzoffset] => -5,[lastvisitdate] => 12-02-2008 03:55 AM,[permissions] => Array ([usergroupid] => 6,[title] => Administrators,[description] => ,[usertitle] => President,[passwordexpires] => 180,[passwordhistory] => 360,[pmquota] => 1000,[pmsendmax] => 99,[opentag] => ,[closetag] => ,[canoverride] => 0,[ispublicgroup] => 0,[forumpermissions] => 8388607,[pmpermissions] => 7,[calendarpermissions] => 63,[wolpermissions] => 31,[adminpermissions] => 3,[genericpermissions] => 2147483647,[genericpermissions2] => 1,[genericoptions] => 55,[signaturepermissions] => 237567,[visitormessagepermissions] => 63,[attachlimit] => 0,[avatarmaxwidth] => 200,[avatarmaxheight] => 200,[avatarmaxsize] => 4294967295,[profilepicmaxwidth] => 100,[profilepicmaxheight] => 100,[profilepicmaxsize] => 900000000,[sigpicmaxwidth] => 300,[sigpicmaxheight] => 200,[sigpicmaxsize] => 1000000,[sigmaximages] => 0,[sigmaxsizebbcode] => 7,[sigmaxchars] => 0,[sigmaxrawchars] => 0,[sigmaxlines] => 0,[usercsspermissions] => 31,[albumpermissions] => 255,[albumpicmaxwidth] => 600,[albumpicmaxheight] => 600,[albumpicmaxsize] => 100000,[albummaxpics] => 100,[albummaxsize] => 0,[socialgrouppermissions] => 511,[videodirectorypermissions] => 255,[arcade_access] => 2,[p_require] => 0,[max_play] => 0,[ppd_require] => 0,[ibpa_cats] => 0,[tourney] => 1,[tournamentpermissions] => 1023,[ladderpermissions] => 31,[maxteams] => 99),[forumpermissions] => Array ([30] => 8388607,[31] => 8388607,[32] => 8388607,[36] => 8388607,[33] => 8388607,[37] => 8388607,[34] => 8388607,[35] => 8388607,[1] => 8388607,[2] => 8388607,[3] => 8388607,[4] => 8388607,[5] => 8388607,[6] => 8388607,[7] => 8388607,[27] => 8388607,[49] => 8388607,[50] => 8388607,[51] => 8388607,[38] => 8388607,[40] => 8388607,[41] => 8388607,[42] => 8388607,[43] => 8388607,[44] => 8388607,[39] => 8388607,[45] => 8388607,[46] => 8388607,[47] => 8388607,[48] => 8388607,[24] => 8388607,[8] => 8388607,[10] => 8388607,[28] => 8388607,[21] => 8388607,[12] => 8388607,[52] => 8388607,[13] => 8388607,[14] => 8388607,[15] => 8388607,[23] => 8388607,[29] => 8388607,[26] => 8388607,[16] => 8388607,[17] => 8388607,[18] => 8388607,[19] => 8388607,[20] => 8388607,[22] => 8388607),[attachmentextensions] => avi bmp bz2 dem doc gif jpe jpeg jpg pdf png psd rar txt zip,[attachmentpermissions] => Array ([avi] => Array ([permissions]
siveriano
12-02-2008, 06:43 PM
mmmmmmmmmm im getting some weird results, i mean it does submit the form and make the post/threat, but right after you hit submit a white screen shows up with this error msg.
Fatal error:
* Please complete both the subject and message fields.
Unable to proceed with save while $errors array is not empty in class vB_DataManager_PM in [path]/includes/class_dm.php on line 810
#0 vb_error_handler(256,
* Please complete both the subject and message fields.
Unable to proceed with save while $errors array is not empty in class vB_DataManager_PM, /var/www/vhosts/deathelitesquad.com/httpdocs/forums/includes/class_dm.php, 810, Array ([this] => vB_DataManager_PM Object ([validfields] => Array ([pmtextid] => Array ([0] => 3,[1] => 3,[2] => _-_mEtHoD_-_,[3] => verify_nonzero),[fromuserid] => Array ([0] => 3,[1] => 1),[fromusername] => Array ([0] => 7,[1] => 1),[title] => Array ([0] => 7,[1] => 1,[2] => _-_mEtHoD_-_),[message] => Array ([0] => 7,[1] => 1,[2] => _-_mEtHoD_-_),[touserarray] => Array ([0] => 0,[1] => 1,[2] => _-_mEtHoD_-_),[iconid] => Array ([0] => 3,[1] => 0),[dateline] => Array ([0] => 3,[1] => 0),[showsignature] => Array ([0] => 1,[1] => 0),[allowsmilie] => Array ([0] => 1,[1] => 0)),[bitfields] => Array (),[table] => pmtext,[pmtext] => Array ([fromuserid] => 1,[fromusername] => Biscuit,[title] => Your application form has been submitted,[dateline] => 1228249263),[overridequota] => ,[condition_construct] => Array ([0] => pmtextid = %1$d,[1] => pmtextid),[setfields] => Array ([fromuserid] => 1,[fromusername] => 1,[title] => 1,[dateline] => 1),[rawfields] => Array (),[registry] => vB_Registry Object ([datastore] => vB_Datastore Object ([defaultitems] => Array ([0] => options,[1] => bitfields,[2] => attachmentcache,[3] => forumcache,[4] => usergroupcache,[5] => stylecache,[6] => languagecache,[7] => products,[8] => pluginlist,[9] => cron,[10] => profilefield,[11] => loadcache,[12] => noticecache),[itemarray] => Array (),[registry] => vB_Registry Object ( *RECURSION*,[dbobject] => vB_Database Object ([functions] => Array ([connect] => mysql_connect,[pconnect] => mysql_pconnect,[select_db] => mysql_select_db,[query] => mysql_query,[query_unbuffered] => mysql_unbuffered_query,[fetch_row] => mysql_fetch_row,[fetch_array] => mysql_fetch_array,[fetch_field] => mysql_fetch_field,[free_result] => mysql_free_result,[data_seek] => mysql_data_seek,[error] => mysql_error,[errno] => mysql_errno,[affected_rows] => mysql_affected_rows,[num_rows] => mysql_num_rows,[num_fields] => mysql_num_fields,[field_name] => mysql_field_name,[insert_id] => mysql_insert_id,[escape_string] => mysql_escape_string,[real_escape_string] => mysql_real_escape_string,[close] => mysql_close,[client_encoding] => mysql_client_encoding),[registry] => vB_Registry Object ( *RECURSION*,[fetchtypes] => Array ([2] => 2,[1] => 1,[0] => 3),[appname] => vBulletin,[appshortname] => vBulletin,[database] => board,[connection_master] => Resource id #7,[connection_slave] => Resource id #7,[connection_recent] => Resource id #7,[multiserver] => ,[shutdownqueries] => Array ([lastvisit] => UPDATE user SET lastactivity = 1228249263 WHERE userid = 1 ),[sql] => ,[reporterror] => 1,[error] => ,[errno] => ,[maxpacket] => 0,[locked] => ,[querycount] => 38,[rows] => 2),[prefix] => ),[input] => vB_Input_Cleaner Object ([shortvars] => Array ([f] => forumid,[t] => threadid,[p] => postid, => userid,[a] => announcementid,[c] => calendarid,[e] => eventid,[q] => query,[pp] => perpage,[page] => pagenumber,[sort] => sortfield,[order] => sortorder),[superglobal_lookup] => Array ([g] => _GET,[p] => _POST,[r] => _REQUEST,[c] => _COOKIE,[s] => _SERVER,[e] => _ENV,[f] => _FILES),[scriptpath] => ,[reloadurl] => ,[wolpath] => ,[url] => ,[ipaddress] => ,[alt_ip] => ,[registry] => vB_Registry Object ( *RECURSION*),[db] => vB_Database Object ([functions] => Array ([connect] => mysql_connect,[pconnect] => mysql_pconnect,[select_db] => mysql_select_db,[query] => mysql_query,[query_unbuffered] => mysql_unbuffered_query,[fetch_row] => mysql_fetch_row,[fetch_array] => mysql_fetch_array,[fetch_field] => mysql_fetch_field,[free_result] => mysql_free_result,[data_seek] => mysql_data_seek,[error] => mysql_error,[errno] => mysql_errno,[affected_rows] => mysql_affected_rows,[num_rows] => mysql_num_rows,[num_fields] => mysql_num_fields,[field_name] => mysql_field_name,[insert_id] => mysql_insert_id,[escape_string] => mysql_escape_string,[real_escape_string] => mysql_real_escape_string,[close] => mysql_close,[client_encoding] => mysql_client_encoding),[registry] => vB_Registry Object ( *RECURSION*,[fetchtypes] => Array ([2] => 2,[1] => 1,[0] => 3),[appname] => vBulletin,[appshortname] => vBulletin,[database] => board,[connection_master] => Resource id #7,[connection_slave] => Resource id #7,[connection_recent] => Resource id #7,[multiserver] => ,[shutdownqueries] => Array ([lastvisit] => UPDATE user SET lastactivity = 1228249263 WHERE userid = 1 ),[sql] => ,[reporterror] => 1,[error] => ,[errno] => ,[maxpacket] => 0,[locked] => ,[querycount] => 38,[rows] => 2),[userinfo] => Array ([userid] => 1,[temp] => ,[field1] => 21 years old who have done alot for this world.,[field2] => SWFL,[field3] => doing new stuff, learning, play video games.,[field4] => Not Your bussines.,[field5] => o,[field6] => ,[subfolders] => ,[pmfolders] => ,[buddylist] => 2 6 12 17 19 26 51,[ignorelist] => ,[signature] => Want a Sig like this? Click here (http://deathelitesquad.com/ranks/) [U]https://vborg.vbsupport.ru/ (http://deathelitesquad.com/ranks/player.php?id=203) ,[searchprefs] => ,[rank] => , => 6,[membergroupids] => ,[displaygroupid] => 6,[username] => Biscuit,[password] => 0afe4172343c57c4f37d6f93b51cc2fc,[passworddate] => 1226898000,[email] => siveriano@hotmail.com,[styleid] => 9,[parentemail] => ,[homepage] => ,[icq] => ,[aim] => ,[yahoo] => ,[msn] => ,[skype] => ,[showvbcode] => 2,[showbirthday] => 2,[usertitle] => Nothing but memories.,[customtitle] => 1,[joindate] => 1223005200,[daysprune] => 0,[lastvisit] => 1228208129,[lastactivity] => 1228249258,[lastpost] => 1228248622,[lastpostid] => 0,[posts] => 174,[reputation] => 10,[reputationlevelid] => 1,[timezoneoffset] => -5,[pmpopup] => 0,[avatarid] => 0,[avatarrevision] => 0,[profilepicrevision] => 0,[sigpicrevision] => 0,[options] => 11536983,[birthday] => 11-25-1986,[birthday_search] => 1986-11-25,[maxposts] => -1,[startofweek] => 2,[ipaddress] => ,[referrerid] => 0,[languageid] => 0,[emailstamp] => 0,[threadedmode] => 0,[autosubscribe] => -1,[pmtotal] => 38,[pmunread] => 0,[salt] => ;&f,[ipoints] => 0,[infractions] => 0,[warnings] => 0,[infractiongroupids] => ,[infractiongroupid] => 0,[adminoptions] => 0,[profilevisits] => 129,[friendcount] => 6,[friendreqcount] => 0,[vmunreadcount] => 0,[vmmoderatedcount] => 0,[socgroupinvitecount] => 0,[socgroupreqcount] => 0,[pcunreadcount] => 0,[pcmoderatedcount] => 0,[gmmoderatedcount] => 0,[post_thanks_user_amount] => 6,[post_thanks_thanked_posts] => 9,[post_thanks_thanked_times] => 11,[ncode_imageresizer_mode] => ,[ncode_imageresizer_maxwidth] => ,[ncode_imageresizer_maxheight] => ,[arcade_ban] => 0,[times_played] => 0,[is_arcade_mod] => 1,[fav_games] => ,[user_sort] => 0,[user_order] => 0,[user_g_pp] => 0,[user_s_pp] => 0,[def_g_cat] => 0,[game_skin] => 0,[arcade_mod_privs] => a:4:{s:6:"scores";s:1:"1";s:8:"comments";s:1:"1";s:7:"tourney";s:1:"1";s:6:"champs";s:1:"1";},[arcade_pmactive] => 1,[games_played] => 41,[time_played] => 3446,[arcade_points] => 500,[arcade_spent] => 0,[arcade_won] => 0,[arcade_high] => 0,[create_tourney] => 1,[arcade_sess_gid] => 67,[arcade_sess_start] => 1227841286,[arcade_gtype] => 0,[arcade_session] => 423,[tmnt_joins] => 0,[tmnt_wins] => 0,[awc_ns_method] => pm+email,[ds_ns_dr_time] => 1227460582,[lang_options] => 1,[lang_code] => en,[lang_charset] => ISO-8859-1,[lang_locale] => ,[lang_imagesoverride] => ,[lang_dateoverride] => ,[lang_timeoverride] => ,[lang_registereddateoverride] => ,[lang_calformat1override] => ,[lang_calformat2override] => ,[lang_logdateoverride] => ,[lang_decimalsep] => .,[lang_thousandsep] => ,,[showsignatures] => 1,[showavatars] => 1,[showimages] => 1,[coppauser] => 0,[adminemail] => 1,[showvcard] => 0,[dstauto] => 1,[dstonoff] => 0,[showemail] => 0,[invisible] => 1,[showreputation] => 0,[receivepm] => 1,[emailonpm] => 0,[hasaccessmask] => 0,[postorder] => 0,[receivepmbuddies] => 0,[noactivationmails] => 0,[pmboxwarning] => 0,[showusercss] => 1,[receivefriendemailrequest] => 1,[vm_enable] => 1,[vm_contactonly] => 0,[adminavatar] => 0,[adminprofilepic] => 0,[urlusername] => Biscuit,[musername] => Biscuit,[displaygrouptitle] => Administrators,[displayusertitle] => President,[realstyleid] => 0,[securitytoken_raw] => 702337d6588529fd961bc6b7bde00180d5fd31a9,[securitytoken] => 1228249263-f419389c73db73ffd56721717dc7bb98e6d0c4d5,[logouthash] => 1228249263-f419389c73db73ffd56721717dc7bb98e6d0c4d5,[tzoffset] => -5,[lastvisitdate] => 12-02-2008 03:55 AM,[permissions] => Array ([usergroupid] => 6,[title] => Administrators,[description] => ,[usertitle] => President,[passwordexpires] => 180,[passwordhistory] => 360,[pmquota] => 1000,[pmsendmax] => 99,[opentag] => ,[closetag] => ,[canoverride] => 0,[ispublicgroup] => 0,[forumpermissions] => 8388607,[pmpermissions] => 7,[calendarpermissions] => 63,[wolpermissions] => 31,[adminpermissions] => 3,[genericpermissions] => 2147483647,[genericpermissions2] => 1,[genericoptions] => 55,[signaturepermissions] => 237567,[visitormessagepermissions] => 63,[attachlimit] => 0,[avatarmaxwidth] => 200,[avatarmaxheight] => 200,[avatarmaxsize] => 4294967295,[profilepicmaxwidth] => 100,[profilepicmaxheight] => 100,[profilepicmaxsize] => 900000000,[sigpicmaxwidth] => 300,[sigpicmaxheight] => 200,[sigpicmaxsize] => 1000000,[sigmaximages] => 0,[sigmaxsizebbcode] => 7,[sigmaxchars] => 0,[sigmaxrawchars] => 0,[sigmaxlines] => 0,[usercsspermissions] => 31,[albumpermissions] => 255,[albumpicmaxwidth] => 600,[albumpicmaxheight] => 600,[albumpicmaxsize] => 100000,[albummaxpics] => 100,[albummaxsize] => 0,[socialgrouppermissions] => 511,[videodirectorypermissions] => 255,[arcade_access] => 2,[p_require] => 0,[max_play] => 0,[ppd_require] => 0,[ibpa_cats] => 0,[tourney] => 1,[tournamentpermissions] => 1023,[ladderpermissions] => 31,[maxteams] => 99),[forumpermissions] => Array ([30] => 8388607,[31] => 8388607,[32] => 8388607,[36] => 8388607,[33] => 8388607,[37] => 8388607,[34] => 8388607,[35] => 8388607,[1] => 8388607,[2] => 8388607,[3] => 8388607,[4] => 8388607,[5] => 8388607,[6] => 8388607,[7] => 8388607,[27] => 8388607,[49] => 8388607,[50] => 8388607,[51] => 8388607,[38] => 8388607,[40] => 8388607,[41] => 8388607,[42] => 8388607,[43] => 8388607,[44] => 8388607,[39] => 8388607,[45] => 8388607,[46] => 8388607,[47] => 8388607,[48] => 8388607,[24] => 8388607,[8] => 8388607,[10] => 8388607,[28] => 8388607,[21] => 8388607,[12] => 8388607,[52] => 8388607,[13] => 8388607,[14] => 8388607,[15] => 8388607,[23] => 8388607,[29] => 8388607,[26] => 8388607,[16] => 8388607,[17] => 8388607,[18] => 8388607,[19] => 8388607,[20] => 8388607,[22] => 8388607),[attachmentextensions] => avi bmp bz2 dem doc gif jpe jpeg jpg pdf png psd rar txt zip,[attachmentpermissions] => Array ([avi] => Array ([permissions] => 1,[size] => 4294967295,[height] => 0,[width] => 0),[bmp] => Array ([permissions] => 1,[size] => 20000,[height] => 280,[width] => 620),[bz2] => Array ([permissions] => 1,[size] => 50000000,[height] => 0,[width] => 0),[dem] => Array ([permissions] => 1,[size] => 100000000,[height] => 0,[width] => 0),[doc] => Array ([permissions] => 1,[size] => 20000,[height] => 0,[width] => 0),[gif] => Array ([permissions] => 1,[size] => 20000,[height] => 280,[width] => 620),[jpe] => Array ([permissions] => 1,[size] => 20000,[height] => 280,[width] => 620),[jpeg] => Array ([permissions] => 1,[size] => 20000,[height] => 280,[width] => 620),[jpg] => Array ([permissions] => 1,[size] => 100000,[height] => 0,[width] => 0),[pdf] => Array ([permissions] => 1,[size] => 4294967295,[height] => 0,[width] => 0),[png] => Array ([permissions] => 1,[size] => 20000,[height] => 280,[width] => 620),[psd] => Array ([permissions] => 1,[size] => 20000,[height] => 0,[width] => 0),[rar] => Array ([permissions] => 1,[size] => 50000000,[height] => 0,[width] => 0),[txt] => Array ([permissions] => 1,[size] => 20000,[height] => 0,[width] => 0),[zip] => Array ([permissions] => 1,[size] => 50000000,[height] => 0,[width] => 0)),[reallanguageid] => 0),[session] => vB_Session Object ([vars] => Array ([sessionhash] => ,[userid] => 1,[host] => 67.233.61.78,[idhash] => e21f7a85cfa62d81b32b39f2a53f1641,[lastactivity] => 1228249263,[location] => /forums/misc.php?do=app_form&do=app_form,[useragent] => Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4,[styleid] => 0,[languageid] => 0,[loggedin] => 2,[inforum] => 0,[inthread] => 0,[incalendar] => 0,[badlocation] => 0,[bypass] => 0,[profileupdate] => 0,[invideocategory] => 0,[invideo] => 0,[in_game] => 0,[newposts] => ,[dbsessionhash] => 051b5dc5d40e317412c3dc62e5363919,[sessionurl] => ,[sessionurl_q] => ,[sessionurl_js] => ),[db_fields] => Array ([sessionhash] => 7,[userid] => 2,[host] => 7,[idhash] => 7,[lastactivity] => 2,[location] => 7,[styleid] => 2,[languageid] => 2,[loggedin] => 2,[inforum] => 2,[inthread] => 2,[incalendar] => 2,[badlocation] => 2,[useragent] => 7,[bypass] => 2,[profileupdate] => 2,[invideocategory] => 2,[invideo] => 2),[changes] => Array ([lastactivity] => 1,[location] => 1),[created] => ,[registry] => vB_Registry Object ( *RECURSION*,[userinfo] => Array ([userid] => 1,[temp] => ,[field1] => 21 years old who have done alot for this world.,[field2] => SWFL,[field3] => doing new stuff, learning, play video games.,[field4] => Not Your bussines.,[field5] => o,[field6] => ,[subfolders] => ,[pmfolders] => ,[buddylist] => 2 6 12 17 19 26 51,[ignorelist] => ,[signature] => Want a Sig like this? Click here (http://deathelitesquad.com/ranks/) [U]https://vborg.vbsupport.ru/ (http://deathelitesquad.com/ranks/player.php?id=203) ,[searchprefs] => ,[rank] => ,[usergroupid] => 6,[membergroupids] => ,[displaygroupid] => 6,[username] => Biscuit,[password] => 0afe4172343c57c4f37d6f93b51cc2fc,[passworddate] => 1226898000,[email] => siveriano@hotmail.com,[styleid] => 9,[parentemail] => ,[homepage] => ,[icq] => ,[aim] => ,[yahoo] => ,[msn] => ,[skype] => ,[showvbcode] => 2,[showbirthday] => 2,[usertitle] => Nothing but memories.,[customtitle] => 1,[joindate] => 1223005200,[daysprune] => 0,[lastvisit] => 1228208129,[lastactivity] => 1228249258,[lastpost] => 1228248622,[lastpostid] => 0,[posts] => 174,[reputation] => 10,[reputationlevelid] => 1,[timezoneoffset] => -5,[pmpopup] => 0,[avatarid] => 0,[avatarrevision] => 0,[profilepicrevision] => 0,[sigpicrevision] => 0,[options] => 11536983,[birthday] => 11-25-1986,[birthday_search] => 1986-11-25,[maxposts] => -1,[startofweek] => 2,[ipaddress] => ,[referrerid] => 0,[languageid] => 0,[emailstamp] => 0,[threadedmode] => 0,[autosubscribe] => -1,[pmtotal] => 38,[pmunread] => 0,[salt] => ;&f,[ipoints] => 0,[infractions] => 0,[warnings] => 0,[infractiongroupids] => ,[infractiongroupid] => 0,[adminoptions] => 0,[profilevisits] => 129,[friendcount] => 6,[friendreqcount] => 0,[vmunreadcount] => 0,[vmmoderatedcount] => 0,[socgroupinvitecount] => 0,[socgroupreqcount] => 0,[pcunreadcount] => 0,[pcmoderatedcount] => 0,[gmmoderatedcount] => 0,[post_thanks_user_amount] => 6,[post_thanks_thanked_posts] => 9,[post_thanks_thanked_times] => 11,[ncode_imageresizer_mode] => ,[ncode_imageresizer_maxwidth] => ,[ncode_imageresizer_maxheight] => ,[arcade_ban] => 0,[times_played] => 0,[is_arcade_mod] => 1,[fav_games] => ,[user_sort] => 0,[user_order] => 0,[user_g_pp] => 0,[user_s_pp] => 0,[def_g_cat] => 0,[game_skin] => 0,[arcade_mod_privs] => a:4:{s:6:"scores";s:1:"1";s:8:"comments";s:1:"1";s:7:"tourney";s:1:"1";s:6:"champs";s:1:"1";},[arcade_pmactive] => 1,[games_played] => 41,[time_played] => 3446,[arcade_points] => 500,[arcade_spent] => 0,[arcade_won] => 0,[arcade_high] => 0,[create_tourney] => 1,[arcade_sess_gid] => 67,[arcade_sess_start] => 1227841286,[arcade_gtype] => 0,[arcade_session] => 423,[tmnt_joins] => 0,[tmnt_wins] => 0,[awc_ns_method] => pm+email,[ds_ns_dr_time] => 1227460582,[lang_options] => 1,[lang_code] => en,[lang_charset] => ISO-8859-1,[lang_locale] => ,[lang_imagesoverride] => ,[lang_dateoverride] => ,[lang_timeoverride] => ,[lang_registereddateoverride] => ,[lang_calformat1override] => ,[lang_calformat2override] => ,[lang_logdateoverride] => ,[lang_decimalsep] => .,[lang_thousandsep] => ,,[showsignatures] => 1,[showavatars] => 1,[showimages] => 1,[coppauser] => 0,[adminemail] => 1,[showvcard] => 0,[dstauto] => 1,[dstonoff] => 0,[showemail] => 0,[invisible] => 1,[showreputation] => 0,[receivepm] => 1,[emailonpm] => 0,[hasaccessmask] => 0,[postorder] => 0,[receivepmbuddies] => 0,[noactivationmails] => 0,[pmboxwarning] => 0,[showusercss] => 1,[receivefriendemailrequest] => 1,[vm_enable] => 1,[vm_contactonly] => 0,[adminavatar] => 0,[adminprofilepic] => 0,[urlusername] => Biscuit,[musername] => Biscuit,[displaygrouptitle] => Administrators,[displayusertitle] => President,[realstyleid] => 0,[securitytoken_raw] => 702337d6588529fd961bc6b7bde00180d5fd31a9,[securitytoken] => 1228249263-f419389c73db73ffd56721717dc7bb98e6d0c4d5,[logouthash] => 1228249263-f419389c73db73ffd56721717dc7bb98e6d0c4d5,[tzoffset] => -5,[lastvisitdate] => 12-02-2008 03:55 AM,[permissions] => Array ([usergroupid] => 6,[title] => Administrators,[description] => ,[usertitle] => President,[passwordexpires] => 180,[passwordhistory] => 360,[pmquota] => 1000,[pmsendmax] => 99,[opentag] => ,[closetag] => ,[canoverride] => 0,[ispublicgroup] => 0,[forumpermissions] => 8388607,[pmpermissions] => 7,[calendarpermissions] => 63,[wolpermissions] => 31,[adminpermissions] => 3,[genericpermissions] => 2147483647,[genericpermissions2] => 1,[genericoptions] => 55,[signaturepermissions] => 237567,[visitormessagepermissions] => 63,[attachlimit] => 0,[avatarmaxwidth] => 200,[avatarmaxheight] => 200,[avatarmaxsize] => 4294967295,[profilepicmaxwidth] => 100,[profilepicmaxheight] => 100,[profilepicmaxsize] => 900000000,[sigpicmaxwidth] => 300,[sigpicmaxheight] => 200,[sigpicmaxsize] => 1000000,[sigmaximages] => 0,[sigmaxsizebbcode] => 7,[sigmaxchars] => 0,[sigmaxrawchars] => 0,[sigmaxlines] => 0,[usercsspermissions] => 31,[albumpermissions] => 255,[albumpicmaxwidth] => 600,[albumpicmaxheight] => 600,[albumpicmaxsize] => 100000,[albummaxpics] => 100,[albummaxsize] => 0,[socialgrouppermissions] => 511,[videodirectorypermissions] => 255,[arcade_access] => 2,[p_require] => 0,[max_play] => 0,[ppd_require] => 0,[ibpa_cats] => 0,[tourney] => 1,[tournamentpermissions] => 1023,[ladderpermissions] => 31,[maxteams] => 99),[forumpermissions] => Array ([30] => 8388607,[31] => 8388607,[32] => 8388607,[36] => 8388607,[33] => 8388607,[37] => 8388607,[34] => 8388607,[35] => 8388607,[1] => 8388607,[2] => 8388607,[3] => 8388607,[4] => 8388607,[5] => 8388607,[6] => 8388607,[7] => 8388607,[27] => 8388607,[49] => 8388607,[50] => 8388607,[51] => 8388607,[38] => 8388607,[40] => 8388607,[41] => 8388607,[42] => 8388607,[43] => 8388607,[44] => 8388607,[39] => 8388607,[45] => 8388607,[46] => 8388607,[47] => 8388607,[48] => 8388607,[24] => 8388607,[8] => 8388607,[10] => 8388607,[28] => 8388607,[21] => 8388607,[12] => 8388607,[52] => 8388607,[13] => 8388607,[14] => 8388607,[15] => 8388607,[23] => 8388607,[29] => 8388607,[26] => 8388607,[16] => 8388607,[17] => 8388607,[18] => 8388607,[19] => 8388607,[20] => 8388607,[22] => 8388607),[attachmentextensions] => avi bmp bz2 dem doc gif jpe jpeg jpg pdf png psd rar txt zip,[attachmentpermissions] => Array ([avi] => Array
sweede
12-10-2008, 11:06 AM
sweede will you posT? i waiting so long for this)) thnx
Sorry it took so long, i hate WotLK always taking up my time trying to find titanium ore.
https://vborg.vbsupport.ru/showthread.php?t=198516
etzero
12-11-2008, 07:03 PM
A quick warning to people that will use this to submit apps to a private forum.
After installing and testing I noticed that the first response to an app was being emailed to the user who submitted as if he was subscribed to the thread. This happened regardless if the user was set to "do not subscribe" in the user CP. This was a problem becuase our members use the apps to discuess good/bad things that we don't want the app seeing.
My solution:
I'm not 100% sure this is a fix but it worked for me.
In the Plugin System (Application Form Handler) I noticed the line:
$newpost['emailupdate'] = 1;
Which from what I understand will always send the first reply to the users email address. This is really not a good way to code this as there is never an option to turn it off anywhere since it isn't checking anything.
Proper coding that would look at the user CP should look somethin like this:
if ($vbulletin->userinfo['autosubscribe'] != -1)
{
$newpost['emailupdate'] = $vbulletin->userinfo['autosubscribe'];
}
else
{
$newpost['emailupdate'] = 9999;
}
What I did to prevent anyone from subscribing at all to these threads created though the app form was use:
$newpost['emailupdate'] = 9999;
Now I am very new to VB so please correct me if anything I stated was wrong. Thanks
sharego
02-04-2009, 04:32 PM
Am I doing something wrong?
it takes my info, submits, sends the pm and makes the post but the results of the post are
Character name: {{q_CharacterName}}
Character Class: {{q_CharacterClass}}
Character Level: {{q_CharacterLevel}}
I did use these variable names... do I have to enable something to get it to show the value of the variable?
TriAxis
02-25-2009, 04:33 AM
mmmmmmmmmm im getting some weird results, i mean it does submit the form and make the post/threat, but right after you hit submit a white screen shows up with this error msg.
Fatal error:
* Please complete both the subject and message fields.
Unable to proceed with save while $errors array is not empty in class vB_DataManager_PM in [path]/includes/class_dm.php on line 810
#0 vb_error_handler(256,
* Please complete both the subject and message fields.
Any resolution to this issue? I am getting the same message.
The form does post in the proper place, but I get this exact same error just as described above.
I have had much of the problems that have been posted in this thread. I got the token error and resolved it with the instructions provided at the top of the post, then got the problem with the submit button doing nothing and followed the $post code replacement suggested by werkkrew.
Now the form does post but this Fatal error occurs now.
Looks to be a great form for our guild to use for applicants, if I could just get these few bugs squashed.
sharego
02-27-2009, 03:39 PM
Anyone got a resolution?
It must work for some!
maddawg138
03-14-2009, 09:33 PM
I'm tryin to make a radio button open a text box if clicked and it keeps coming up with a blank screen.
any help on this perchance?
know it's not the javascript that does it and pretty sure the div functions do.
is there anyway to make those functions work within the script?
my template for the form is attached
FFTFTCEd
05-04-2009, 11:04 PM
I got mine working, or I should say one of my Admins got it working, the Thread Body text has to be edited to match your questions or it will return gibberish. Below is what he put in ours, which returns all the fields correctly;
Character Information - {{user_name}} ( {{user_id}} )
Character name: {{character_name}}
Age: {{your_age}}
Time zone: {{your_timezone}}
Considered HCOs:
{{considered_HCOs}}
Likes PR: {{like_pr}}
Have Time: {{have_time}}
Team Management Experience PR: {{team_mgmt_exp}}
Personel Changes: {{personel_changes}}
Bridge Communications: {{communication_bridge}}
Previous Member of: {{previous_communities}}
Leadership Roles: {{leadership_roles}}
PR Likes:
{{pr_likes}}
Purpose For Being General:
{{purpose_general}}
Other Comments:
{{other_comments}}
Agrees to rules: {{agrees_rules}}
You will have to change the questions to what ever you put in the xml file, which also has to be edited for your needs. Open it with Dreamweaver or some other xml editor and change the questions to fit your needs, then edit the Thread Body to match, it should work.
I've also attached our xml file, you can compare it to the original sent to you by the mod maker, you can simple edit this one to fit your needs, add more questions, ect...
Hope this helps.
FFTFTCEd
05-08-2009, 01:54 PM
I do have one question, I have mine set up to post applications for General, which it does fine. It post them in the Admin section of my forums, which is again what I want.
But.... it sends out an email to the person who submitted the form every time we comment on it with the details of that post, kinda like subscribing to this thread and getting an email every time some one makes a new post. I want my Admins to be able to post their comments without this information being sent back to the applicant.
How do I disable this feature??
Just wanted to say thanks for this very nice mod :)
Wtb 4.03 update to this. Just sayin.
Yes wtb for 4.04 please! :o
JasonReynolds
06-25-2010, 03:43 PM
I wonder, can you get this to change so that a user can have a application. Say like they register and sign up their guilds information on their guilds group they can have this application forum?
sweede
06-25-2010, 06:22 PM
I wonder, can you get this to change so that a user can have a application. Say like they register and sign up their guilds information on their guilds group they can have this application forum?
with a little bit of php knowledge it wouldn't be hard to do that. I won't make it a feature though, because it depends entirely on your custom setup for your site.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.