Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > Premium Archives > vbBux / vbPlaza

Reply
 
Thread Tools
Input fields not appearing Details »»
Input fields not appearing
Version: , by MGM MGM is offline
Developer Last Online: Mar 2012 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 07-03-2006 Last Update: Never Installs: 0
 
No support by the author.

For some reason the input box to type in usernames and custom titles (to, for example, change your username or custom title) isnt appearing. I have no templates changed.

Currently running vB 3.6 Beta 3 with the latest version of vbBux/Plaza. I also installed the ibProArcade addon that came with the zip. Any way to fix this error?

I also posted this in the vbBux thread available here.

If you would like to see my forum, the url to the buy username action is here: http://www.forevergaming.com/forums/...ction&itemid=1

MGM out

Show Your Support

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

Comments
  #2  
Old 07-11-2006, 05:29 AM
FreshFroot's Avatar
FreshFroot FreshFroot is offline
 
Join Date: Jul 2005
Posts: 770
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have the same problem... when a user tried to change their username.. there is no box to type it into... HOWEVER, I am using vB 3.5.4
Reply With Quote
  #3  
Old 07-11-2006, 05:46 PM
baradaarab baradaarab is offline
 
Join Date: May 2005
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The username one somehow fixed itself over time... I'm not sure how. But the user title one still doesnt work.

MGM out
Reply With Quote
  #4  
Old 07-11-2006, 11:06 PM
FreshFroot's Avatar
FreshFroot FreshFroot is offline
 
Join Date: Jul 2005
Posts: 770
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well I hope it works soon... or someone finds a fix......otherwise I'm gonna have to change usernames/titles manually.....
Reply With Quote
  #5  
Old 07-12-2006, 02:38 AM
.Tim's Avatar
.Tim .Tim is offline
 
Join Date: Jan 2005
Location: Oklahoma City
Posts: 353
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm having the same problem.
https://vborg.vbsupport.ru/showthread.php?t=120751
Hope someone figures out a fix soon.
Reply With Quote
  #6  
Old 07-12-2006, 06:59 PM
MGM MGM is offline
 
Join Date: Jan 2003
Location: Michigan
Posts: 245
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I fixed it. You have to run the following two queries to get the username and user title input fields working. If you're missing any other input fields, let me know:

[sql]UPDATE `vbplaza_item` SET `inputfields` = 'a:1:{i:0;a:3:{s:10:"phrasename";s:17:"vbplaza_use rtitle";s:9:"inputname";s:9:"usertitle";s:10:"inpu tvalue";s:0:"";}}' WHERE `itemid` =14 LIMIT 1 ;[/sql]

[sql]UPDATE `vbplaza_item` SET `inputfields` = 'a:1:{i:0;a:3:{s:10:"phrasename";s:16:"vbplaza_use rname";s:9:"inputname";s:8:"username";s:10:"inputv alue";s:0:"";}}' WHERE `itemid` =1 LIMIT 1 ;[/sql]

Once you've done that, go to your admincp, then to vbPlaza Maintenance, then click on Rebuild Datastore.

MGM out
Reply With Quote
  #7  
Old 07-13-2006, 12:26 AM
FreshFroot's Avatar
FreshFroot FreshFroot is offline
 
Join Date: Jul 2005
Posts: 770
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks MGM works great
Reply With Quote
  #8  
Old 07-13-2006, 02:22 PM
MGM MGM is offline
 
Join Date: Jan 2003
Location: Michigan
Posts: 245
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here's the full list... if anybody has any of the below that doesnt work, run the query for the ones that dont work:

Change Username
[sql]UPDATE `vbplaza_item` SET `inputfields` = 'a:1:{i:0;a:3:{s:10:"phrasename";s:16:"vbplaza_use rname";s:9:"inputname";s:8:"username";s:10:"inputv alue";s:0:"";}}' WHERE `itemid` =1 LIMIT 1 ;[/sql]

Change User Title
[sql]UPDATE `vbplaza_item` SET `inputfields` = 'a:1:{i:0;a:3:{s:10:"phrasename";s:17:"vbplaza_use rtitle";s:9:"inputname";s:9:"usertitle";s:10:"inpu tvalue";s:0:"";}}' WHERE `itemid` =14 LIMIT 1 ;[/sql]

Change Others User Title
[sql]UPDATE `vbplaza_item` SET `inputfields` = 'a:2:{i:0;a:3:{s:10:"phrasename";s:16:"vbplaza_use rname";s:9:"inputname";s:8:"username";s:10:"inputv alue";s:0:"";}i:1;a:3:{s:10:"phrasename";s:17:"vbp laza_usertitle";s:9:"inputname";s:9:"usertitle";s: 10:"inputvalue";s:0:"";}}' WHERE `itemid` =15 LIMIT 1 ;[/sql]

Sticky Thread
[sql]UPDATE `vbplaza_item` SET `inputfields` = 'a:1:{i:0;a:3:{s:10:"phrasename";s:23:"vbplaza_thr eadid_or_url";s:9:"inputname";s:8:"threadid";s:10: "inputvalue";s:0:"";}}' WHERE `itemid` =19 LIMIT 1 ;[/sql]

Unsticky Thread
[sql]UPDATE `vbplaza_item` SET `inputfields` = 'a:1:{i:0;a:3:{s:10:"phrasename";s:23:"vbplaza_thr eadid_or_url";s:9:"inputname";s:8:"threadid";s:10: "inputvalue";s:0:"";}}' WHERE `itemid` =20 LIMIT 1 ;[/sql]

Close Thread
[sql]UPDATE `vbplaza_item` SET `inputfields` = 'a:1:{i:0;a:3:{s:10:"phrasename";s:23:"vbplaza_thr eadid_or_url";s:9:"inputname";s:8:"threadid";s:10: "inputvalue";s:0:"";}}' WHERE `itemid` =22 LIMIT 1 ;[/sql]

Open Thread
[sql]UPDATE `vbplaza_item` SET `inputfields` = 'a:1:{i:0;a:3:{s:10:"phrasename";s:23:"vbplaza_thr eadid_or_url";s:9:"inputname";s:8:"threadid";s:10: "inputvalue";s:0:"";}}' WHERE `itemid` =23 LIMIT 1 ;[/sql]

Bump Thread
[sql]UPDATE `vbplaza_item` SET `inputfields` = 'a:1:{i:0;a:3:{s:10:"phrasename";s:23:"vbplaza_thr eadid_or_url";s:9:"inputname";s:8:"threadid";s:10: "inputvalue";s:0:"";}}' WHERE `itemid` =28 LIMIT 1 ;[/sql]

Debump Thread
[sql]UPDATE `vbplaza_item` SET `inputfields` = 'a:1:{i:0;a:3:{s:10:"phrasename";s:23:"vbplaza_thr eadid_or_url";s:9:"inputname";s:8:"threadid";s:10: "inputvalue";s:0:"";}}' WHERE `itemid` =29 LIMIT 1 ;[/sql]

Don't forget to run Rebuild Datastore in the vbPlaza Maintenance!

That's all of em! Hope I helped

MGM out
Reply With Quote
  #9  
Old 07-13-2006, 08:00 PM
CMX_CMGSCCC CMX_CMGSCCC is offline
 
Join Date: Sep 2003
Posts: 1,218
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Again I ask, is this a problem with v1.5.7?

-CMX
Reply With Quote
  #10  
Old 07-13-2006, 09:08 PM
MGM MGM is offline
 
Join Date: Jan 2003
Location: Michigan
Posts: 245
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by CMX_CMGSCCC
Again I ask, is this a problem with v1.5.7?

-CMX
It seems to be, yes. The problem did not appear during any other upgrade except 1.5.7. However, for me, personally, I upgraded from 1.5.5 to 1.5.7 I believe, so it may be a problem with 1.5.6 as well.

MGM out
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 03:50 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04453 seconds
  • Memory Usage 2,289KB
  • Queries Executed 23 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete