vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vbBux / vbPlaza (https://vborg.vbsupport.ru/forumdisplay.php?f=171)
-   -   Problem With vbBux/vbPlaza 1.5.7 and vBulletin 3.6 (https://vborg.vbsupport.ru/showthread.php?t=120751)

.Tim 07-09-2006 03:41 PM

Problem With vbBux/vbPlaza 1.5.7 and vBulletin 3.6
 
Whenever you go into an option like change usertitle or something that requires you to fill in a field, the field is missing. The other options like immunity and whatever work just fine. Only problems are with the options that have fields to fill out. Any idea what the problem is? I didn't have this problem previous to upgrading to 1.5.7 and 3.6 it only occured after. Thanks.

Wordplay 07-10-2006 07:19 AM

nope, works on mine.

MGM 07-12-2006 07:00 PM

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

.Tim 07-12-2006 10:19 PM

Thanks that fixed those, I'm still missing the fields for:

Change Others Usertitle
Sticky, Unstick, Close, Open, Bump and Debump thread options

Thanks for your help.

MGM 07-13-2006 02:20 PM

Ok, here's the full list:

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

.Tim 07-13-2006 04:04 PM

That appears to have done the trick. You sir are a great man! Thanks for your help.

CMX_CMGSCCC 07-13-2006 07:59 PM

Is this a problem in vbPlaza or did someone just edit them improperly?

-CMX

MGM 07-13-2006 09:10 PM

Quote:

Originally Posted by CMX_CMGSCCC
Is this a problem in vbPlaza or did someone just edit them improperly?

-CMX

It's a problem with vbPlaza, somewhere during the upgrade process it didnt add the inputfields. I can provide a screenshot of my database vs. a test database, both using the hack and the same exact version (1.5.7) and you'll see that the input fields are missing for all of them in my database, but not for the test database (which had a clear install, not an upgrade).

MGM out

CMX_CMGSCCC 07-13-2006 09:32 PM

That's so weird, I just did a clean install on my wife's site and it has all of the inputfields? Hmm

So the problem only occurs during an upgrade?

-CMX

MGM 07-14-2006 04:03 AM

Quote:

Originally Posted by CMX_CMGSCCC
That's so weird, I just did a clean install on my wife's site and it has all of the inputfields? Hmm

So the problem only occurs during an upgrade?

-CMX

Yes, only during an upgrade. I did a clean install as well and the input fields are there (that's where I got the above sql queries from). But on my vB 3.6 Beta 3 install with vbBux/vbPlaza 1.5.7 upgrade (from 1.5.5, I believe), the problem is there unless I run those sql queries manually. I can run a few tests for you if you'd like and see if I can reproduce the error under different conditions.

MGM out


All times are GMT. The time now is 06:39 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.00972 seconds
  • Memory Usage 1,737KB
  • 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
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete