PDA

View Full Version : Major Additions - vbBux / vbPlaza v1.5.8 (Points + Store System)


Pages : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 17

Olli460
06-30-2006, 03:21 PM
I got the same error. What happened?

ChrisTech
06-30-2006, 05:44 PM
Just got another one :S i think ive messed this up big time!! lol

Fatal error: Call to undefined function: vbplaza_printf() in /usr/home/s4a/domains/fuzionpoker.com/public_html/Forum/admincp/plugin.php(1232) : eval()'d code on line 66


backup the plugin.php (rename it to plugin.php.OLD) then upload a fresh copy and see if that does the trick.

SMO
07-01-2006, 05:08 PM
I get his edit when i add the xml for the ipb arcade addon...anyone else?

Database error in vBulletin 3.5.4:

Invalid SQL:

### INSERT QUERY GENERATED BY fetch_query_sql() ###
INSERT INTO plugin
(`active`, `executionorder`, `title`, `hookname`, `phpcode`, `product`)
VALUES
('1', '5', 'vbBux / vbPlaza - ibProArcade Authorize Start', 'ibproarcade_authorize_start', '// include the vbplaza_ibproarcade_authorize_start.php\r\ninclude (DIR . \'/plugins/vbplaza_ibproarcade_authorize_start.php\');', 'ibproarcade_vbplaza');

MySQL Error : Unknown column 'executionorder' in 'field list'
Error Number : 1054

webgroup
07-01-2006, 07:32 PM
I get this importing the v3arcade add-on:

Database error in vBulletin 3.5.4:

Invalid SQL:

### INSERT QUERY GENERATED BY fetch_query_sql() ###
INSERT INTO vbnewplugin
(`active`, `executionorder`, `title`, `hookname`, `phpcode`, `product`)
VALUES
('1', '5', 'vbBux / vbPlaza - v3 Arcade Game Bit', 'arcade_game_bit', '// include the vbplaza_arcade_gamebit.php\r\ninclude(DIR . \'/plugins/vbplaza_arcade_gamebit.php\');', 'v3arcade_vbplaza');

MySQL Error : Unknown column 'executionorder' in 'field list'
Error Number : 1054
Date : Saturday, July 1st 2006 @ 04:30:27 PM
Script : http://mysite.com/forum/admincp/plugin.php
Referrer : http://mysite.comforum/admincp/plugin.php?do=productadd

DjJoschimo
07-01-2006, 08:45 PM
I get this importing the v3arcade add-on:

Database error in vBulletin 3.5.4:

Invalid SQL:

### INSERT QUERY GENERATED BY fetch_query_sql() ###
INSERT INTO vbnewplugin
(`active`, `executionorder`, `title`, `hookname`, `phpcode`, `product`)
VALUES
('1', '5', 'vbBux / vbPlaza - v3 Arcade Game Bit', 'arcade_game_bit', '// include the vbplaza_arcade_gamebit.php\r\ninclude(DIR . \'/plugins/vbplaza_arcade_gamebit.php\');', 'v3arcade_vbplaza');

MySQL Error : Unknown column 'executionorder' in 'field list'
Error Number : 1054
Date : Saturday, July 1st 2006 @ 04:30:27 PM
Script : http://208.101.40.13/~sheriff/el_original/admincp/plugin.php
Referrer : http://mysite.comforum/admincp/plugin.php?do=productadd

yes i get this too :tired:

Shazz
07-01-2006, 09:12 PM
If smods could edit the options in the Store, Couldn't they make it so they get admin powers...

SCORPION1
07-01-2006, 10:24 PM
i cant download the real bux add on its coming up with you dont have permission to access this page and by the way cool hack m8:confused:

webgroup
07-01-2006, 10:33 PM
Also, when I try to add a new ribbon, I get this:

You did not enter anything for the Ribbon Description.

Bu there's no field to enter any "Ribbon Description", just the filename, ribbon name, diaplay order and the cause.

Greek Wizard
07-02-2006, 12:57 AM
Hi guys,

I am trying to install the vBookie Add-on found in the vBux download, however I get the error message:

XML Error: not well-formed (invalid token) at Line 41

The product-bookiehack_vbplaza.xml file is this:

<?xml version="1.0" encoding="ISO-8859-1"?>

<product productid="bookiehack_vbplaza" active="1">
<title>vbBux / vbPlaza - vBookie Addon</title>
<description>vBookie Addon is a system that will integrate your vBookie with vbBux / vbPlaza.</description>
<version>1.0.0</version>
<url>http://www.vbplaza.com/forums/</url>
<versioncheckurl />
<dependencies>
<dependency dependencytype="product" parentproductid="bookiehack" minversion="1.0.5" maxversion="" />
<dependency dependencytype="product" parentproductid="vbbuxplaza" minversion="1.5.0" maxversion="" />
</dependencies>
<codes>
</codes>
<templates>
</templates>
<plugins>
<plugin active="1" executionorder="5">
<title>vbBux / vbPlaza - vBookie Get User Cash</title>
<hookname>vbookie_get_user_cash</hookname>
<phpcode><![CDATA[// get the user's cash
$cash = (int)$vbulletin->userinfo[$vbulletin->options['vbbux_pointsfield']];]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>vbBux / vbPlaza - vBookie Take User Cash</title>
<hookname>vbookie_take_user_cash</hookname>
<phpcode><![CDATA[// check if the user's cash would be negative
$cash = (int)$vbulletin->userinfo[$vbulletin->options['vbbux_pointsfield']];
if (($cash - $amount) < 0)
{
// display error, not enough points
eval(standard_error(fetch_error('vbplaza_not_enoug h_points')));
}

// take the user's cash
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET " . $vbulletin->options['vbbux_pointsfield'] . "=" . $vbulletin->options['vbbux_pointsfield'] . "-" . $amount . " WHERE userid=" . $vbulletin->userinfo['userid']);]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>vbBux / vbPlaza - vBookie Give User Cash</title>
<hookname>vbookie_give_user_cash</hookname>
<phpcode><![CDATA// check if the user's cash would be negative
$cash = (int)$vbulletin->userinfo[$vbulletin->options['vbbux_pointsfield']];
if (($cash + $amount) < 0)
{
// display error, not enough points
eval(standard_error(fetch_error('vbplaza_not_enoug h_points')));
}

// give the user cash
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET " . $vbulletin->options['vbbux_pointsfield'] . "=" . $vbulletin->options['vbbux_pointsfield'] . "+" . $amount . " WHERE userid=$userid");]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>vbBux / vbPlaza - vBookie Get Richest Users</title>
<hookname>vbookie_get_richest</hookname>
<phpcode><![CDATA[// build the proper SELECT query
$q = "SELECT username, " . $vbulletin->options['vbbux_pointsfield'] . " AS cash FROM " . TABLE_PREFIX . "user ORDER BY cash DESC LIMIT 5";]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>vbBux / vbPlaza - vBookie Do Charity</title>
<hookname>vbookie_do_charity</hookname>
<phpcode><![CDATA[// give out the points
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET " . $vbulletin->options['vbbux_pointsfield'] . "=" . $vbulletin->options['vbookiegivetopoor'] . " WHERE " . $vbulletin->options['vbbux_pointsfield'] . " < " . $vbulletin->options['vbookiegivetopoor']);]]></phpcode>
</plugin>
</plugins>
<phrases>
</phrases>
<options>
</options>
<helptopics>
</helptopics>
<cronentries>
</cronentries>
<faqentries>
</faqentries>
</product>

I tried to install it without the executionorder="5" since I believe this is only for 3.6, but I still get the error.

Anyone have an idea why it wont work?

Thanks.

phOny
07-02-2006, 06:47 AM
I had this installed with Aria + from vbstyles and it screwed the layout up, was it me? has anyone else got this working with that skin? if did you have to tweak it? thanks.

Zelda-King
07-02-2006, 10:16 AM
I have found a bug with Quick Edit. If you add line breaks/spaces to a post with Quick Edit with this hack enabled, it attempts to post the HTML of the code. If I disable the product, it works fine again.

Tested on 1.5.7, vB 3.6.0 Beta 3.

Gizmo5h1t3
07-02-2006, 10:41 AM
Database error in vBulletin 3.5.4:

Invalid SQL:

### INSERT QUERY GENERATED BY fetch_query_sql() ###
INSERT INTO vbnewplugin
(`active`, `executionorder`, `title`, `hookname`, `phpcode`, `product`)
VALUES
('1', '5', 'vbBux / vbPlaza - v3 Arcade Game Bit', 'arcade_game_bit', '// include the vbplaza_arcade_gamebit.php\r\ninclude(DIR . \'/plugins/vbplaza_arcade_gamebit.php\');', 'v3arcade_vbplaza');


me also with this error.......

webgroup
07-02-2006, 12:15 PM
Hey CMX, any updates on this bogus release?

fuzionpoker
07-02-2006, 02:59 PM
backup the plugin.php (rename it to plugin.php.OLD) then upload a fresh copy and see if that does the trick.

Nope didnt work for me :disappointed:

Tanya123
07-02-2006, 08:50 PM
VBPlaza is not showing up on my navbar...can you tell me what I didn't do? I followed instructions exactly. help!

Pete C
07-02-2006, 11:10 PM
This is one mighty hack . . as I said before, thank you. Just one minor point I'd like to resolve if possible.

In the drop down menu on the navbar it says "Give Ribbons" and "Give Gifts". So far I haven't found an option to "give" a ribbon to another member, although I can give the gifts. Either I'm missing the option to give them to others, or if it isn't there, can I change the text to say simply "Ribbons"? Can't help feel they'll be overlooked if people think they can only buy then to give away.

Anyone know how to edit this? Or should there be an option to actually give, rather than buy them only for oneself?

MGM
07-03-2006, 05:51 AM
Hmm... 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?

MGM out

Wordplay
07-03-2006, 08:29 AM
runnin 3.6 beta 3.

error importing the vbookie product:
XML Error: not well-formed (invalid token) at Line 41


thank you so much for upgrading this, and making it compatible for 3.6 this swiftly.

[email protected] vbmenu_register("postmenu_1021312", true);
07-03-2006, 01:48 PM
I have set the price to play and jack pots for the games and they show up, however it doesnt take points from the user to play the game... any help from anyone?

Chinoz
07-03-2006, 04:54 PM
(above) I have set the price to play and jack pots for the games and they show up, however it doesnt take points from the user to play the game... any help from anyone?...


sorry used old username to post. (Saint@t-og.net is me)

so can anyone help?

DJ XtAzY
07-03-2006, 06:21 PM
im having problems with editing posts and delete/merge threads

when editing posts, strange html markups pops out

Nathan2006
07-03-2006, 08:09 PM
im having problems with editing posts and delete/merge threads

when editing posts, strange html markups pops out

Same here I have had to disable it because I have to keep deleting posts that I have already made and as soon as I edit them they become such a mess :(

I might just use the older version before the update cos I don't wanna mess my board up totally :(

NetworkTown.Net
07-03-2006, 08:22 PM
Whos got a working demo?

Nathan2006
07-03-2006, 08:47 PM
(above) I have set the price to play and jack pots for the games and they show up, however it doesnt take points from the user to play the game... any help from anyone?...


sorry used old username to post. (Saint@t-og.net is me)

so can anyone help?

Make sure the usergroups are setup for:

Can play in arcade for free YES/NO ;)

Nathan2006
07-03-2006, 08:50 PM
im having problems with editing posts and delete/merge threads

when editing posts, strange html markups pops out

I have checked a few things out and found that its the WYSIWYG editor

If you are using the WYSIWYG editor you will have to change it to a different one and then it will work until there is a fix for it :(

But all html code will show once you click on "Go Advanced"

Hope its sorted soon :(

Connector
07-04-2006, 05:04 PM
why after installing this .. the new thread/post is no longer bold and just normal ?

webgroup
07-04-2006, 05:19 PM
Another error, when trying to peform a vbux mass giveway:

Database error in vBulletin 3.5.4:

Invalid SQL:

UPDATE vbnewuser
SET;

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 2
Error Number : 1064
Date : Tuesday, July 4th 2006 @ 02:17:02 PM
Script : http://site.com/forum/admincp/vbplaza.php
Referrer : http://site.com/forum/admincp/vbplaza.php?do=massgiveaway

webgroup
07-04-2006, 05:20 PM
Also, when I try to add a new ribbon, I get this:

You did not enter anything for the Ribbon Description.

Bu there's no field to enter any "Ribbon Description", just the filename, ribbon name, diaplay order and the cause.

Any help yet?? :tired:

webgroup
07-04-2006, 05:21 PM
I get this importing the v3arcade add-on:

Database error in vBulletin 3.5.4:

Invalid SQL:

### INSERT QUERY GENERATED BY fetch_query_sql() ###
INSERT INTO vbnewplugin
(`active`, `executionorder`, `title`, `hookname`, `phpcode`, `product`)
VALUES
('1', '5', 'vbBux / vbPlaza - v3 Arcade Game Bit', 'arcade_game_bit', '// include the vbplaza_arcade_gamebit.php\r\ninclude(DIR . \'/plugins/vbplaza_arcade_gamebit.php\');', 'v3arcade_vbplaza');

MySQL Error : Unknown column 'executionorder' in 'field list'
Error Number : 1054
Date : Saturday, July 1st 2006 @ 04:30:27 PM
Script : http://mysite.com/forum/admincp/plugin.php
Referrer : http://mysite.comforum/admincp/plugin.php?do=productadd


:tired: any help yet?

Connector
07-04-2006, 05:26 PM
why after installing this .. the new thread/post is no longer bold and just normal ?..........

Pete C
07-04-2006, 05:41 PM
I've installed this, and although I got no reply on my last query, I'm hoping some support is still available here?

Problem now is that I've added Andreas' vBookie hack: https://vborg.vbsupport.ru/showthread.php?t=94128&highlight=vbookie and I've imported the plugin-vbookievbplaza.xml plugin from vbPlaza to integrate it with vbPlaza/vBux, and I've set the points system to Custom

Eveything appears to be ok, but when I go to the AdminCP to set permissions for usergroups OR if I try to set the permissions for the forums, the permissions revert to NO after I've set them to Yes and saved!

Any clues here would be much appreciated - thanx :)

The Radio Cafe - It Sounds Tasty! (http://radio-cafe.com/index.php)

*Updated* You can disregard this one folks (whaddaya mean, you already did! lmao) Rebuilt the bitfields and all's well.

Chinoz
07-04-2006, 06:29 PM
Make sure the usergroups are setup for:

Can play in arcade for free YES/NO ;)


It was already set as no (default) for all my usergroups, it still doesnt take any points away to play.. any ideas?

puregraf
07-05-2006, 02:33 AM
hi, i went to import the product-ibproarcade_vbplaza.xml Addon and got this error:

Database error in vBulletin 3.5.4:

Invalid SQL:

### INSERT QUERY GENERATED BY fetch_query_sql() ###
INSERT INTO plugin
(`active`, `executionorder`, `title`, `hookname`, `phpcode`, `product`)
VALUES
('1', '5', 'vbBux / vbPlaza - ibProArcade Authorize Start', 'ibproarcade_authorize_start', '// include the vbplaza_ibproarcade_authorize_start.php\r\ninclude (DIR . \'/plugins/vbplaza_ibproarcade_authorize_start.php\');', 'ibproarcade_vbplaza');

MySQL Error : Unknown column 'executionorder' in 'field list'
Error Number : 1054
Date : Tuesday, July 4th 2006 @ 08:30:31 PM
Script : http://www.puregraffiti.com/graffiti-space/admincp/plugin.php
Referrer : http://www.puregraffiti.com/graffiti-space/admincp/plugin.php?do=productadd
IP Address : *****
Username : peegee
Classname : vb_database

Michael_Tree
07-05-2006, 02:20 PM
Uhm, how do i take away users ebux

fly
07-05-2006, 04:12 PM
Uhm, how do i take away users ebux
edit the user. the points field is in there.

dashaka2
07-05-2006, 07:12 PM
Originally Posted by XtAzY
im having problems with editing posts and delete/merge threads

when editing posts, strange html markups pops out

Any fix for this.. It is driving the members nuts, not to mention it is making the forums look like crap

Gizmo5h1t3
07-05-2006, 08:17 PM
hi, i went to import the product-ibproarcade_vbplaza.xml Addon and got this error:

Database error in vBulletin 3.5.4:

Invalid SQL:

### INSERT QUERY GENERATED BY fetch_query_sql() ###
INSERT INTO plugin
(`active`, `executionorder`, `title`, `hookname`, `phpcode`, `product`)
VALUES
('1', '5', 'vbBux / vbPlaza - ibProArcade Authorize Start', 'ibproarcade_authorize_start', '// include the vbplaza_ibproarcade_authorize_start.php\r\ninclude (DIR . \'/plugins/vbplaza_ibproarcade_authorize_start.php\');', 'ibproarcade_vbplaza');

MySQL Error : Unknown column 'executionorder' in 'field list'
Error Number : 1054
Date : Tuesday, July 4th 2006 @ 08:30:31 PM
Script : http://www.puregraffiti.com/graffiti-space/admincp/plugin.php
Referrer : http://www.puregraffiti.com/graffiti-space/admincp/plugin.php?do=productadd
IP Address : *****
Username : peegee
Classname : vb_database

thats because the xml file is configured for 3.6...

ive upped this one, for people on 3.5.4 downwards......and it works fine now.

give it a try.

webgroup
07-05-2006, 08:27 PM
thats because the xml file is configured for 3.6...

ive upped this one, for people on 3.5.4 downwards......and it works fine now.

give it a try.


Yep, working here!!

Thanks a lot my friend!!!

webgroup
07-05-2006, 08:31 PM
Also, when I try to add a new ribbon, I get this:

You did not enter anything for the Ribbon Description.

Bu there's no field to enter any "Ribbon Description", just the filename, ribbon name, diaplay order and the cause.


Any fix for this?

Seems like the field to input the "Ribbon Descrition" is missing.

Greek Wizard
07-05-2006, 09:06 PM
Hi guys,

I am trying to install the vBookie Add-on found in the vBux download, however I get the error message:

XML Error: not well-formed (invalid token) at Line 41

The product-bookiehack_vbplaza.xml file is this:

<?xml version="1.0" encoding="ISO-8859-1"?>

<product productid="bookiehack_vbplaza" active="1">
<title>vbBux / vbPlaza - vBookie Addon</title>
<description>vBookie Addon is a system that will integrate your vBookie with vbBux / vbPlaza.</description>
<version>1.0.0</version>
<url>http://www.vbplaza.com/forums/</url>
<versioncheckurl />
<dependencies>
<dependency dependencytype="product" parentproductid="bookiehack" minversion="1.0.5" maxversion="" />
<dependency dependencytype="product" parentproductid="vbbuxplaza" minversion="1.5.0" maxversion="" />
</dependencies>
<codes>
</codes>
<templates>
</templates>
<plugins>
<plugin active="1" executionorder="5">
<title>vbBux / vbPlaza - vBookie Get User Cash</title>
<hookname>vbookie_get_user_cash</hookname>
<phpcode><![CDATA[// get the user's cash
$cash = (int)$vbulletin->userinfo[$vbulletin->options['vbbux_pointsfield']];]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>vbBux / vbPlaza - vBookie Take User Cash</title>
<hookname>vbookie_take_user_cash</hookname>
<phpcode><![CDATA[// check if the user's cash would be negative
$cash = (int)$vbulletin->userinfo[$vbulletin->options['vbbux_pointsfield']];
if (($cash - $amount) < 0)
{
// display error, not enough points
eval(standard_error(fetch_error('vbplaza_not_enoug h_points')));
}

// take the user's cash
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET " . $vbulletin->options['vbbux_pointsfield'] . "=" . $vbulletin->options['vbbux_pointsfield'] . "-" . $amount . " WHERE userid=" . $vbulletin->userinfo['userid']);]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>vbBux / vbPlaza - vBookie Give User Cash</title>
<hookname>vbookie_give_user_cash</hookname>
<phpcode><![CDATA// check if the user's cash would be negative
$cash = (int)$vbulletin->userinfo[$vbulletin->options['vbbux_pointsfield']];
if (($cash + $amount) < 0)
{
// display error, not enough points
eval(standard_error(fetch_error('vbplaza_not_enoug h_points')));
}

// give the user cash
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET " . $vbulletin->options['vbbux_pointsfield'] . "=" . $vbulletin->options['vbbux_pointsfield'] . "+" . $amount . " WHERE userid=$userid");]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>vbBux / vbPlaza - vBookie Get Richest Users</title>
<hookname>vbookie_get_richest</hookname>
<phpcode><![CDATA[// build the proper SELECT query
$q = "SELECT username, " . $vbulletin->options['vbbux_pointsfield'] . " AS cash FROM " . TABLE_PREFIX . "user ORDER BY cash DESC LIMIT 5";]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>vbBux / vbPlaza - vBookie Do Charity</title>
<hookname>vbookie_do_charity</hookname>
<phpcode><![CDATA[// give out the points
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET " . $vbulletin->options['vbbux_pointsfield'] . "=" . $vbulletin->options['vbookiegivetopoor'] . " WHERE " . $vbulletin->options['vbbux_pointsfield'] . " < " . $vbulletin->options['vbookiegivetopoor']);]]></phpcode>
</plugin>
</plugins>
<phrases>
</phrases>
<options>
</options>
<helptopics>
</helptopics>
<cronentries>
</cronentries>
<faqentries>
</faqentries>
</product>

I tried to install it without the executionorder="5" since I believe this is only for 3.6, but I still get the error.

Anyone have an idea why it wont work?

Thanks.

Bump, can anyone please have a look at the xml file and let me know what I shouldedit to get this working on 3.5.4

I can even do it manually if I have to, just the xml is kind of cunfusing trying to make sure I get all the steps right.

Thanks.

Chinoz
07-05-2006, 09:37 PM
i have the setting 'User can play for free' set as no but still it doesnt cost to play games, and I HAVE put a cost for each game of 10... any help fixing this? cheers.

Nathan2006
07-05-2006, 10:26 PM
i have the setting 'User can play for free' set as no but still it doesnt cost to play games, and I HAVE put a cost for each game of 10... any help fixing this? cheers.


It was already set as no (default) for all my usergroups, it still doesnt take any points away to play.. any ideas?

Yeah me too,

The price to play is not there and all the settings are correct :(

Chinoz
07-05-2006, 10:33 PM
on mine it says the price to play... but it just doesnt deduct the points... look here... http://www.gamesjail.com/forums/arcade.php?

Yeah me too,

The price to play is not there and all the settings are correct :(

Nathan have you set the points for each individual game? AdminCP>Arcade>Games List....

Nathan2006
07-05-2006, 10:39 PM
on mine it says the price to play... but it just doesnt deduct the points... look here... http://www.gamesjail.com/forums/arcade.php?



Nathan have you set the points for each individual game? AdminCP>Arcade>Games List....

Yeah they have all been setup as I have only been getting all these problems after upgrading. I have had this installed for about 3 months now and never had a problem until now :(

Carlos2
07-06-2006, 10:46 AM
Also, when I try to add a new ribbon, I get this:

You did not enter anything for the Ribbon Description.

Bu there's no field to enter any "Ribbon Description", just the filename, ribbon name, diaplay order and the cause.

I?ve found a solution for this...

1. Open admincp/vbplaza_ribbons.php

2. Search for:

else if (empty($_POST['ribbon']['description']))
{
// display message that you did not enter an ribbon name
print_form_header('vbplaza_ribbons', 'addribbon');
print_table_header("<font size=3>" . $vbphrase['vbplaza_name'] . " - " . construct_phrase($vbphrase['vbplaza_add_new_x'], $vbphrase['vbplaza_ribbon']) . "</font>", 2);
print_description_row(construct_phrase($vbphrase['vbplaza_add_no_x_description'], $vbphrase['vbplaza_ribbon']));
print_table_footer(2, "");
}

3. Delete it. ;)

wolfyman
07-06-2006, 02:39 PM
Wow, it's easy to get lost in this thread!!!

I'm trying to allow users to upgrade usergroups with vbplaza, but I get this when I try to upgrade: The vbPlaza option you are trying to purchase has an invalid Set Name.

Also, is there a way to show how many points have been earned by the threadstarter in the thread? I think that would really encourage people to post successful threads.

webgroup
07-06-2006, 04:30 PM
I?ve found a solution for this...

1. Open admincp/vbplaza_ribbons.php

2. Search for:

else if (empty($_POST['ribbon']['description']))
{
// display message that you did not enter an ribbon name
print_form_header('vbplaza_ribbons', 'addribbon');
print_table_header("<font size=3>" . $vbphrase['vbplaza_name'] . " - " . construct_phrase($vbphrase['vbplaza_add_new_x'], $vbphrase['vbplaza_ribbon']) . "</font>", 2);
print_description_row(construct_phrase($vbphrase['vbplaza_add_no_x_description'], $vbphrase['vbplaza_ribbon']));
print_table_footer(2, "");
}

3. Delete it. ;)

Working like a charm!!! :banana:

Thanks!!!!

Draygonia
07-06-2006, 05:15 PM
I dont know if this is a bug with the install isntructions, but for some reason this does not work with the template "Dark Scheme". It does not have a USERREFERRAL in the MEMBERINFO template.

Is there a reason for this or is it the template thats messed up?

fly
07-06-2006, 05:24 PM
I dont know if this is a bug with the install isntructions, but for some reason this does not work with the template "Dark Scheme". It does not have a USERREFERRAL in the MEMBERINFO template.

Is there a reason for this or is it the template thats messed up?
That isn't a standard vB theme, is it?

NetworkTown.Net
07-06-2006, 08:10 PM
How do i change the text from vbPlaza menu on the navbar to something else?

Holidazed
07-06-2006, 08:24 PM
I tried to search this thread, but with 3,549 replies, it is nearly impossible.

Question: How do I change the name of my vBux money?

Nathan2006
07-06-2006, 08:39 PM
How do i change the text from vbPlaza menu on the navbar to something else?

Search for vbPlaza
admincp> Languages & Phrases > Search in Phrases ;)

NetworkTown.Net
07-06-2006, 08:55 PM
Search for vbPlaza
admincp> Languages & Phrases > Search in Phrases ;)

It cant find it.

Nathan2006
07-06-2006, 09:36 PM
It cant find it.

If you follow the instructions that I gave you above you would
have to look for:

vbplaza_title in phrases

you can change the title there ;)

Other titles can be changed in there too:)

Here is a screeshot of the one you need to change for your navbar

SnitchSeeker
07-07-2006, 07:33 AM
What the hell?

Why remove the features list from the first post while keeping the templates mod codes? Wouldn't most people want to know WHAT the mod is before installing or downloading it? The first post assumes people automatically know what it is.

Stupid.

GrCh_Jeff
07-07-2006, 11:16 AM
What the hell?

Why remove the features list from the first post while keeping the templates mod codes? Wouldn't most people want to know WHAT the mod is before installing or downloading it? The first post assumes people automatically know what it is.

Stupid.
Lol.Due to the hundreds of features..LMAO!!!! Makes since not to list as it IS a self describing hack.Also since it has it's OWN premium support forum I'm sure people can figure it out.;)

cyberphr
07-07-2006, 02:18 PM
Nice work buddy :)

dcg
07-07-2006, 03:15 PM
This is a great hack, I just have a question.

Can people buy points with paypal yet and have it added to their account via return path automattically.

-=DCG=-

Draygonia
07-07-2006, 10:51 PM
That isn't a standard vB theme, is it?

nope... is there a way to install it still?

Gizmo5h1t3
07-08-2006, 07:53 AM
Bump, can anyone please have a look at the xml file and let me know what I shouldedit to get this working on 3.5.4

I can even do it manually if I have to, just the xml is kind of cunfusing trying to make sure I get all the steps right.

Thanks.

check post #3537

Greek Wizard
07-08-2006, 09:46 AM
check post #3537

Thanks for the reply, however your edited/modified xml file at post #3537 is for ibProArcade addition (I have v3Arcade working great with vbPlaza already)

I need the changes made for the vBookie addition.

Gizmo (or anyone) would you mind having a look and see if you spot something out of the ordinary in the following xml please? Even if it entails me doing the steps manually, however I just can't seem to find what the problem is importing the product-bookiehack_vbplaza.xml

I have now narrowed it down to this area (rest installs fine)

<plugin active="1">
<title>vbBux / vbPlaza - vBookie Give User Cash</title>
<hookname>vbookie_give_user_cash</hookname>
<phpcode><![CDATA// check if the user's cash would be negative
$cash = (int)$vbulletin->userinfo[$vbulletin->options['vbbux_pointsfield']];
if (($cash + $amount) < 0)
{
// display error, not enough points
eval(standard_error(fetch_error('vbplaza_not_enoug h_points')));
}

// give the user cash
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET " . $vbulletin->options['vbbux_pointsfield'] . "=" . $vbulletin->options['vbbux_pointsfield'] . "+" . $amount . " WHERE userid=$userid");]]></phpcode>
</plugin>

Just a note that I had to delete the executionorder="5" references in the original to make it work this far.

Greek Wizard
07-08-2006, 10:24 AM
Forget the above post...

I figured it out. There was a missing [ in the code.

Should anyone else need to install vBookie 1.0.7 and vbPlaza a.5.7 on vBulletin 3.5.4 and get the following error:

XML Error: not well-formed (invalid token) at Line 41

while trying to import the product-bookiehack_vbplaza.xml file try the following xml file instead.

It worked for me.

wolfyman
07-08-2006, 11:36 AM
I'm trying to allow users to upgrade usergroups with vbplaza, but I get this when I try to upgrade: The vbPlaza option you are trying to purchase has an invalid Set Name.

Also, is there a way to show how many points have been earned by the threadstarter in the thread? I think that would really encourage people to post successful threads.

OndaReal
07-09-2006, 11:30 AM
can the points be changed to cash?

snoopgst
07-10-2006, 04:29 AM
I am getting the following error wen I install the ibproarcade product/plugin.

Database error in vBulletin 3.5.3:

Invalid SQL:

### INSERT QUERY GENERATED BY fetch_query_sql() ###
INSERT INTO plugin
(`active`, `executionorder`, `title`, `hookname`, `phpcode`, `product`)
VALUES
('1', '5', 'vbBux / vbPlaza - ibProArcade Authorize Start', 'ibproarcade_authorize_start', '// include the vbplaza_ibproarcade_authorize_start.php\r\ninclude (DIR . \'/plugins/vbplaza_ibproarcade_authorize_start.php\');', 'ibproarcade_vbplaza');

MySQL Error : Unknown column 'executionorder' in 'field list'
Error Number : 1054
Date : Monday, July 10th 2006 @ 01:26:59 AM
Script : MY SITE - (I changed this, not part of the error)
Referrer : MY SITE - (I changed this, not part of the error)
IP Address : 68.67.139.43
Username : USERNAME
Classname : DATABASE

vdinh
07-10-2006, 06:13 AM
How can I let my supermod to use the "Admin Donate"?

Thank You

Wordplay
07-10-2006, 07:22 AM
thanks alot for getting the plug?in to work, now all i need is to get vbookie to work on 3.6 :D

Polo
07-10-2006, 02:48 PM
Here is how I did it.

<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong>&nbsp;You have $bbuserinfo[points] chips!<br />

Thank you. This is just what I needed :)

Chinoz
07-10-2006, 07:20 PM
My arcade doesn't deduct points for playing, even though i believe I have it set up right, it has "member group can play for free" set as no, and I h ave put a price of '10' for each game... can someone please give me a little help :) cheers

Polo
07-10-2006, 11:23 PM
My arcade doesn't deduct points for playing, even though i believe I have it set up right, it has "member group can play for free" set as no, and I h ave put a price of '10' for each game... can someone please give me a little help :) cheers
yeah... I'm having the same problem,.... looking for an answer as I type this....

Chinoz
07-10-2006, 11:44 PM
glad i am not the only one :)

FreshFroot
07-11-2006, 05:20 AM
is it just me or this new version not have a writing box to change ur username? I updated and found that there is no place to write the new username you want changed... just has the button to change it and the fee...

paul41598
07-11-2006, 11:29 AM
I had ucash for 3.0.7 and I just upgraded to 3.5.4. I want to installl this hack. How do I transfer points over, before the hack install?

edeline
07-12-2006, 03:17 PM
link in navbar not working , can't click or something , can somebody help me ??

Thanx

dashaka2
07-12-2006, 07:08 PM
link in navbar not working , can't click or something , can somebody help me ??

Thanx

Which link?

Polo
07-12-2006, 07:12 PM
link in navbar not working , can't click or something , can somebody help me ??

Thanx
I went to your website and it seems to be working....

edeline
07-12-2006, 07:34 PM
I went to your website and it seems to be working....


how can you do that , when unregistred user CAN'T see the link ;)

dashaka2 , the vbPlaza menu in navbar.
i had to put the code below and above <!-- / NAVBAR POPUP MENUS --> , then the menu is working LOL

Polo
07-12-2006, 07:38 PM
how can you do that , when unregistred user CAN'T see the link ;)

dashaka2 , the vbPlaza menu in navbar.
i had to put the code below and above <!-- / NAVBAR POPUP MENUS --> , then the menu is working LOL

Well, the link in the navbar was working, which was sending me to vbplaza.

I was going to tell you about the code above <!-- / NAVBAR POPUP MENUS -->

but your question was not that clear as the link in the navbar was working and sending me to the vbplaza....

but well... try to be more clear next time I guess ;)

have a great day.

edeline
07-12-2006, 08:27 PM
:) thanx anyway

but the vbPlaza Menu link not working for my users using IE and Opera LOL

its working for me & other users using firefox

vdinh
07-13-2006, 05:28 AM
My user bought the Arcade access, but still could not get into arcade. Anyone know what is the problem, bugs? Any help would be great. Thank you.

dcg
07-13-2006, 10:52 PM
Does anyone know if we can set the number of points by usergroup.

Example:

usergroup 1 gets 2 points per post
usergroup 2 gets 3 points per post
usergroup 3 gets 4 points per post.

I know I can set it by forum but can we set it by usergroup.

Any help is appreaciated.

Peter_Rosado
07-13-2006, 11:06 PM
do I have to upgrade first to 1.5.7 and then to 1.5.8? or can I upgrade from 1.5.6 to 1.5.8?

Datacenter1.com
07-13-2006, 11:47 PM
do I have to upgrade first to 1.5.7 and then to 1.5.8? or can I upgrade from 1.5.6 to 1.5.8?

Greetings

You can go directly to 1.5.8

MorrisMcD
07-13-2006, 11:51 PM
.8 fixed my editing problem.. Thank you very much CMX.. I may have to send a 3rd donation to you again... :D

007
07-15-2006, 06:28 AM
Does anyone know if we can set the number of points by usergroup.

Example:

usergroup 1 gets 2 points per post
usergroup 2 gets 3 points per post
usergroup 3 gets 4 points per post.

I know I can set it by forum but can we set it by usergroup.

Any help is appreaciated.

I second this. It's not that hard to do, but would require going through the entire installation and adding code to almost every part of it. It's a simple enough concept but not fun to have to re-install for every upgrade. Would be awesome to see this as a built in feature.

:)

osvi
07-15-2006, 10:59 AM
i installed it and it's good but when i enter an area it says me

"Your usergroup does not have permission to purchase vbPlaza Options."

how can i change the permission?

Peter_Rosado
07-15-2006, 11:53 AM
Greetings

You can go directly to 1.5.8

Gracias Guillermo, jeje, que bueno verte por aqui ;)

osvi
07-16-2006, 09:07 PM
there is the italian translation?

Follie Folli
07-18-2006, 09:15 PM
How it is possible to add other games?

edeline
07-19-2006, 02:26 PM
heelppppp .....

i have a user ( super moderator ), her point keep raising up but she's not login ??

last login was yesterday and her point already 10000 something and Post 84 and today the point is almost 13000 and she hasn't login yet.

please help , thank you.

Shazz
07-19-2006, 04:10 PM
This has alot of errors...

Gizmo5h1t3
07-19-2006, 05:06 PM
This has alot of errors...

the errors are in the bad utilization of the installation.....mine has installed fine since the first day of release.....

try some input as to what errors youre experiencing, before adding a one sentence reply.....

rb290
07-20-2006, 02:45 AM
Ok can you please help me
For the Addons, I uploaded the product XML for vBookie addon and it said

vBulletin Message

XML Error: Internal error at Line 41

EDIT: nevermind I found the thread for that, but can you tell me how to make it work with vbookie now

Peace_Hope
07-20-2006, 04:18 PM
Is there a way that I can make it so that only specific usergroups will get points, and the other usergroups do not get points for doing things?

vbreal
07-20-2006, 08:15 PM
how can i set it to increase a person's rep when they donate to another member.

vbreal
07-21-2006, 01:05 PM
can someone let me know if it is even able to do that?

Andromeda2875
07-22-2006, 05:48 AM
I am receiving Unknown 'phrasegroup_vbplaza' in 'field list' everytime I attempt to import the product. Please what is going on here.

Shazz
07-22-2006, 05:52 AM
^Im getting a Error on like 66 or 63
Somethin like that..

Stylish
07-22-2006, 02:53 PM
is it just me or this new version not have a writing box to change ur username? I updated and found that there is no place to write the new username you want changed... just has the button to change it and the fee...

Oh yes, I have the same problem, The field is missed with this version. Somebody else has this issue? Please help

Regards from Venezuela

Shazz
07-22-2006, 03:06 PM
^Im getting a Error on like 66 or 63
Somethin like that..
Nvm i see what i did wrong.

orphan
07-23-2006, 03:47 AM
ibProArcade integration refuses to work

Everything looks fine when i look inside the adminCP, both under VbBUX\VbPlaca and under Arcade
All games are sett to cost 100p and have a raising jackpot

But when i look inside the arcade it sell all games are free and no jackpot

Im running ibProArcade v2.5.6+, vbbuxplaza 1.5.8, vBulletin 3.5.4
And the ibProArcade Addon 1.0.0

Anyone having any ideas?

wolfyman
07-24-2006, 01:45 AM
"The item you are trying to purchase has an invalid set name."

PLEASE help me out here! I need to be able to allow users to upgrade their vb usergroups with vbplaza, and this is the error they get when trying to purchase an additional usergroup!

Neal-UK
07-25-2006, 04:03 AM
I keep getting errors like this, sometimes referring to cron and also every time I try to delete a thread. Even if I try to prune them.

It works on another site, but the site i'm having problems with also has p3tz enabled so is that conflicting somewhere?

I know this is the 3.5 area, but my message has not been answered in the 3.6 section for this mod.

Database error in vBulletin 3.6.0 Release Candidate 2:

Invalid SQL:

UPDATE user AS user, post AS post
SET
`user.vbbux` = `user.vbbux` + `post.vbbux`
WHERE
post.threadid = '2983'
AND user.userid = post.userid;

MySQL Error : Unknown column 'user.vbbux' in 'field list'
Error Number : 1054
Date : Tuesday, July 25th 2006 @ 12:55:00 AM
Script : http://www.***.eu/talk/inlinemod.php?do=dodeletethreads&threadids=2983
Referrer : http://www.***.eu/talk/inlinemod.php?forumid=127
IP Address : *************
Username : Neal
Classname : vb_database

zeroality
07-25-2006, 08:26 AM
How can I make the purchased username modifications show up everywhere?

Who's online, last post by on forum index, etc.

DS MrSinister
07-25-2006, 12:34 PM
I keep getting errors like this, sometimes referring to cron and also every time I try to delete a thread. Even if I try to prune them.

It works on another site, but the site i'm having problems with also has p3tz enabled so is that conflicting somewhere?

I know this is the 3.5 area, but my message has not been answered in the 3.6 section for this mod.

I am having the same problem. I think the conflick is gars hack that i have installed. When i disable it seem to delete fine.

zeroality
07-25-2006, 08:36 PM
Wow, this is just a horrible hack. Bugs everywhere, almost nothing works.

The past 10-15 posts in this topic should be a huge indication to the vBulletin.org staff that they really need to shut this down or at least put a big notice on top that this hack really needs a lot of work and shouldn't be installed unless you can fix the bugs.

LBSources
07-25-2006, 08:54 PM
zero .. you should write this hack up then. We'd love you to fix the bugs (not that i have a single one of them), so that way we can prevent the vb.org WARNING stamp on this thread. I can pick a few other that have been needing stamps for at least a year.. i'll pm you the links since you seem so concerned.

I think most who know whats really going on just see that all the demands in this hack are obviously the cost and result. Im sure CMX will make his best efforts to correct them .. The man has done an outstanding job with this script thus far..

keep it going CMX.

MissKalunji
07-25-2006, 09:20 PM
zero .. you should write this hack up then. We'd love you to fix the bugs (not that i have a single one of them), so that way we can prevent the vb.org WARNING stamp on this thread. I can pick a few other that have been needing stamps for at least a year.. i'll pm you the links since you seem so concerned.

I think most who know whats really going on just see that all the demands in this hack are obviously the cost and result. Im sure CMX will make his best efforts to correct them .. The man has done an outstanding job with this script thus far..

keep it going CMX.

I second that!

aaamaretto
07-26-2006, 02:49 AM
is the namepros.com bank a vbbux?

wolfyman
07-26-2006, 11:39 AM
the donate link under the username points to ushop.php....


I havd a problem.

"The item you are trying to purchase has an invalid set name."


PLEASE help me out here! I need to be able to allow users to upgrade their vb usergroups with vbplaza, and this is the error they get when trying to purchase an additional usergroup!

The Geek
07-26-2006, 11:39 AM
There isnt a conflict with GARS, there are bugs in the vbux deletion scripts where the sql statements are qualiifed incorrectly:

i.e. `user.vbux` makes SQL think its a column name called `user.vbux` insetead of a column aliased to table `user`. I already posted about this a month ago (along with the typos with TABLE_PREFIX).

Brandon Sheley
07-26-2006, 01:15 PM
i tried removeing this froma site, and i get emails everyday with db errors,
so i tried to add the plugin again, and then i was going to remove.. and i get this error :(

Fatal error: Call to undefined function: vbplaza_printf() in /home/loco/public_html/admincp/plugin.php(1924) : eval()'d code on line 66

LBSources
07-26-2006, 05:21 PM
is the namepros.com bank a vbbux?nope.. thats UShop its there on the main bank page at NP

Kyderoy
07-26-2006, 07:20 PM
My lottery cron jobs are not running...

Any ideas how I can fix this?

Shazz
07-26-2006, 07:53 PM
My lottery cron jobs are not running...

Any ideas how I can fix this?
Did you install the code right?

spandexman
07-26-2006, 08:14 PM
I cant find the templates 'postbit' AND 'postbit_legacy' to edit. They arent in the upload folder.

Does anyone have an updated template that I can just dl and install because I cant find any of the files that need to be updated.

Jay...
07-26-2006, 08:17 PM
I cant find the templates 'postbit' AND 'postbit_legacy' to edit. They arent in the upload folder.

Does anyone have an updated template that I can just dl and install because I cant find any of the files that need to be updated.

woosh! the templates you are looking for are in admincp -> styles & templates -> Style manager -> (your style name) -> postbit templates

CP,
07-27-2006, 11:36 AM
Ok ive had the vbplaza for sometime now been a few months, ive noticed the items people purchase do not expire? even though ive put on a expiry time on them??

ambrosious
07-30-2006, 10:42 PM
How about this one...

Did the install and the gifts are not showing under, or above or to the side of the IM Icons.

I am having trouble with REP and wonder if the two are related.

Any ideas?

Draygonia
07-31-2006, 02:16 AM
Big Issue: When doing the autorepair, postbit codes are doubled, causing each post to display points and such twice and replacing post count and a few other postbit modifications.

It would be nice if the system would reverse itself, but it wont!

Kyderoy
07-31-2006, 04:23 PM
Did you install the code right?


I will reinstall and see what happens

Kyderoy
07-31-2006, 04:50 PM
I reinstalled and still no cron jobs are showing.

Shazz
07-31-2006, 04:52 PM
Did that happen the first time?

daticus
08-01-2006, 02:38 AM
where do I find 'postbit' and 'postbit_legacy'???

Shazz
08-01-2006, 02:40 AM
where do I find 'postbit' and 'postbit_legacy'???
Admin CP> Styles and templates> Edit Templates> Postbit and Postbit_legacy

If you have any questions let me know (via PM) ;)

daticus
08-01-2006, 02:41 AM
Admin CP> Styles and templates> Edit Templates> Postbit and Postbit_legacy

If you have any questions let me know (via PM) ;)


TY kind sir (or ma'am if ure a girl, but youre probably a dood)

Shazz
08-01-2006, 02:43 AM
^Wtf?...

daticus
08-01-2006, 02:51 AM
^Wtf?...

hehe, never mind :rolleyes:

daticus
08-01-2006, 08:14 AM
I need the manual for this super duper program, anyone know? i tried vbplaza.com but either i'm dumb or blind but i can't find it.

Ziki
08-01-2006, 05:02 PM
Why need a manual?It can't be more simple.

ambrosious
08-01-2006, 10:47 PM
How about this one...

Did the install and the gifts are not showing under, or above or to the side of the IM Icons.

I am having trouble with REP and wonder if the two are related.

Any ideas?

Any ideas? Will pay for help (reasonable...)

CP,
08-02-2006, 02:24 AM
Ok i think this is important nobody has answered it yet!

Ok ive had the vbplaza for sometime now been a few months, ive noticed the items people purchase do not expire? even though ive put on a expiry time on them?? Anybody??? Please

Thanks!

aaamaretto
08-02-2006, 01:35 PM
on my "bank" page, i would like to make it where members can purchase vbBux via paypal and also "sell" them back to the bank... anyone currently doing this?

similar to what namepros.com does

Gizmo5h1t3
08-02-2006, 05:00 PM
Wow, this is just a horrible hack. Bugs everywhere, almost nothing works.

The past 10-15 posts in this topic should be a huge indication to the vBulletin.org staff that they really need to shut this down or at least put a big notice on top that this hack really needs a lot of work and shouldn't be installed unless you can fix the bugs.

Installs: 789

so if thats correct, theres 789 ppl struggling to get it working, coz as u say its ful of bugs.....pppftttt.

dont be a clown m8...theres nothing wrong with the hack......worked fine on mine from day one....theres a tricku see...FOLLOW THE INSTRUCTIONS...LMAO

Stylish
08-03-2006, 12:28 AM
is it just me or this new version not have a writing box to change ur username? I updated and found that there is no place to write the new username you want changed... just has the button to change it and the fee...

Oh yes, I have the same problem, The field is missed with this version. Somebody else has this issue? Please help

Regards from Venezuela

If somebody else has this problem I found the way to fix it. (I don't know why this missed with the upgrade):

Go to: vbPlaza // vbPlaza // click on Change Username

then on Input Field Settings (Advanced Users Only!)

add

Phrase Name: vbplaza_username

Field Name: username

Peace_Hope
08-04-2006, 11:30 AM
How can I make it so that only specific users / usergroups are eligible to gain the points in the system, and others can't get points?

theArchitect
08-05-2006, 03:24 AM
Has anyone got this working on 3.6.0 Gold?

P.S. I know I should read through the thread and find out for myself, but I really don't have the time right now. Sorry.

MissKalunji
08-05-2006, 12:07 PM
Has anyone got this working on 3.6.0 Gold?

P.S. I know I should read through the thread and find out for myself, but I really don't have the time right now. Sorry.


"quotes "

v1.5.7 AND HIGHER are now compatible with vBulletin v3.5.x and v3.6.x

Welcome to the largest points/store system for vBulletin! READ THE ENTIRE POST AGAIN AS THERE HAVE BEEN CHANGES SINCE THE CONVERSION TO vbBux / vbPlaza!!

andrewrhs
08-06-2006, 03:10 PM
hey guys,

please help me with this, i dunno if the question has been asked but there are a lot of pages here. i'm trying to add pics of cars, clothes, etc to shopping but when i click on the picture trying to buy it, i get this message:

The Shopping option you are trying to purchase has an invalid Set Name.

I'm not sure exactly how to fix this. Any help is greatly appreciated.

wolfyman
08-06-2006, 07:18 PM
Any idea what's up here?

(Nowhere to add the name you want!)

http://www.holdmyfile.com/../n_images/usr/gal4389/s_img/f0002.gif (http://www.holdmyfile.com/imagehost/n_viewz.php?n=23884)

ReadOrDie
08-06-2006, 07:20 PM
One of my member groups cannot see the bank or purchase anything...have checked the usergroup settings..

they are a custom group...

I am having the same problem. Does anyone have a solution to this because it seems as though this is an unsolved problem.

wolfyman
08-06-2006, 07:21 PM
hey guys,

please help me with this, i dunno if the question has been asked but there are a lot of pages here. i'm trying to add pics of cars, clothes, etc to shopping but when i click on the picture trying to buy it, i get this message:

The Shopping option you are trying to purchase has an invalid Set Name.

I'm not sure exactly how to fix this. Any help is greatly appreciated.

I get the same error when trying to purchase a usergroup upgrade!

Baudman
08-06-2006, 11:54 PM
Fatal error: Call to undefined function: vbplaza_printf() in /home/loco/public_html/admincp/plugin.php(1924) : eval()'d code on line 13
I am getting this error. Was there a fix for it or a way I can fix it?

MarsNIIT
08-07-2006, 04:17 PM
why admin can't uses anything ?? Donate ?? it say ?? " Your usergroup does not have permission to purchase vbPlaza Options."

how to fix ??

Shazz
08-07-2006, 04:18 PM
Set permissions...

Baudman
08-07-2006, 04:29 PM
^Im getting a Error on like 66 or 63
Somethin like that..
this is similar to an error I get. Can you tell me what you did to fix it?

Shazz
08-07-2006, 04:30 PM
Theres a couple of Typo's i actually just re-codded the whole thing step by step ;)

Baudman
08-07-2006, 04:36 PM
Theres a couple of Typo's i actually just re-codded the whole thing step by step ;)
sweet i pooched. lol

MarsNIIT
08-07-2006, 05:43 PM
Set permissions...


where to do it ??
any members can do anything??
plz help me !!

Shazz
08-07-2006, 05:54 PM
where to do it ??
any members can do anything??
plz help me !!
Just click on the topic.
Like MISC OPTIONS
click on it and set it ;)

MarsNIIT
08-07-2006, 06:21 PM
Just click on the topic.
Like MISC OPTIONS
click on it and set it ;)


evething i do iz Zero :D

it's not active :D !! i don't know why ??

may u tell me how to active it ??

i compete the installion..now wat'll i do next ???

Shazz
08-07-2006, 06:24 PM
evething i do iz Zero :D

it's not active :D !! i don't know why ??

may u tell me how to active it ??

i compete the installion..now wat'll i do next ???
Have read all the instructions?

MarsNIIT
08-07-2006, 06:32 PM
yeah!!

but when i donate someone or any members do it

it always said : Your usergroup does not have permission to purchase Plaza Options.

i don't know how to fix it !!

Shazz
08-07-2006, 06:34 PM
Just click on the topic.
Like MISC OPTIONS
click on it and set it ;)
Do that........
Admin CP..

MarsNIIT
08-07-2006, 06:46 PM
i seted it .. admin .. mod...supermod...members..

but it still said :Your usergroup does not have permission to purchase Plaza Options

Shazz
08-07-2006, 06:50 PM
i seted it .. admin .. mod...supermod...members..

but it still said :Your usergroup does not have permission to purchase Plaza Options
:tired:
.
.
.
No
Manage Categories Click on the Category Name then EDIT it.

MarsNIIT
08-07-2006, 06:55 PM
yeah !! i'm in ACP >> Vbplaza >>Manage Categories >>Points Options

i was ticked in admin mod s mod members

watz the hell??
can u explain for me !! thx u so "many" !!

Shazz
08-07-2006, 07:04 PM
Uh... Get at me on aim/msn/yahoo
In my profile.

lightwave
08-08-2006, 07:45 AM
Is the author gonna update this mod with the fix ?It seems like a lot of users are getting errors.

Shazz
08-08-2006, 07:51 AM
Is the author gonna update this mod with the fix ?It seems like a lot of users are getting errors.
Theres always many problems in the stores...
No matter what.

Wolf_Hook
08-08-2006, 10:16 AM
I refer people to these threads.

https://vborg.vbsupport.ru/showthread.php?t=123227

https://vborg.vbsupport.ru/showthread.php?t=120976

No one has offered a reason for this and at the moment my members are being picked off at random.

If anyone has any information on this I would love to hear it.

I am very close to trying to uninstall this hack.

Quarterbore
08-08-2006, 04:38 PM
Ooops... never mind...

(If you get an error for a missing phrase during install, your files might still be uploading)

I have installed this in a developemntal board with vB3.6 Gold and I am starting to test it...

lightwave
08-08-2006, 11:15 PM
Yep. This hack is sooooo nice. I like the gift feature, and im sure my members would love it too...i just hope all the bugs are ironed out.

Shazz
08-08-2006, 11:24 PM
^your running a 3.5.3?
And your using this?
Interesting..

Zelda-King
08-09-2006, 06:57 AM
I'm on 3.6.0 now. Didn't notice this for ages because I don't usually go in the mod CP but there are eBux/ePlaza links there, which obviously don't work.

CP,
08-09-2006, 11:32 AM
Ok can anyone help me please ive asked before and nobody knows....,

Ok ive had the vbplaza for sometime now been a few months, ive noticed the items people purchase do not expire? even though ive put on a expiry time on them?? Anybody??? Please

Thanks!

HMBeaty
08-10-2006, 03:37 AM
Found a bit of a bug.....don't know if anyone else is having the same problem....

https://vborg.vbsupport.ru/showthread.php?t=122968

Shazz
08-10-2006, 04:27 AM
Works for me =\

GreysAnatomy
08-10-2006, 05:42 PM
You're the best. Installation is easy even for dummies like myself. Thanks a lot!

daticus
08-10-2006, 11:54 PM
Ok, I installed everything, and the default features work fine. But how do I add my own items to the store? I sell stuff for forum money and would like to be notified of each purchase so I can process them.

Also, is it possible to edit the text "vB Plaza" to my own custom name for the store? (I don't mean taking out the branding, just the text in the navbar). Has anyone else used this script w/o problems? If so, I would love to see. thanks!

snake-boy
08-11-2006, 12:44 AM
Bug: If you give a gift to someone and make it PRIVATE, anyone can read the message you supplied with the gift by going to the vbplaza, select item history for gifts.

Totally defeats the point of making it private.

Is there a workaround or a fix for this? I've searched the options as well as this thread and found nothing.

ANY help would be appreciated as I really don't want to have to turn off the item history completely to get around this.

-snake

bogie
08-11-2006, 09:38 AM
I decided to upgrade to 1.5.8 from 1.5.6 to prepare for upgrading my forum to vb 3.6.0. I followed the upgrade instructions which said to start by uploading the contents of the upload folder. After it was done I went to login to my acp to upload the product xml but after logging in my acp index is screwed up. All it loads is <? on a white page, my acp is missing.

Help Please! Thanks in advance.

paul41598
08-11-2006, 12:58 PM
Another new bug possibly:

https://vborg.vbsupport.ru/showthread.php?t=123395


CMX has been gone for quite awhile,....sux :(

movielist
08-11-2006, 07:32 PM
In 3.6, the modification to threadbit that allows users to change the appearance of thread titles works, but when done, new threads are no longer shown as bold.

FeNeRisT
08-12-2006, 10:25 PM
I have setup vbbux & plaza, everything seems great and working but I got a database error (see below) when I'm trying to make a thread "announcement". Can you help me?

Database error in vBulletin 3.6.0:

Invalid SQL:

SELECT threadid, open, sticky, forumid
FROM thread
LEFT JOIN forum AS forum ON (forum.forumid = thread.forumid)
WHERE thread.threadid = '17774';

MySQL Error : Column 'forumid' in field list is ambiguous
Error Number : 1052
Date : Saturday, August 12th 2006 @ 06:52:10 PM
Script : http://www.ciksforum.com/vbplaza.php
Referrer : http://www.ciksforum.com/vbplaza.php?do=action&itemid=20
IP Address : xxxxxxxx
Username : xxxxxxxx
Classname : vb_database

FeNeRisT
08-13-2006, 01:08 PM
can anyone help me please

bogie
08-13-2006, 05:12 PM
If upgrading from a previous version of vbBux / vbPlaza follow these instructions:
1) Reupload all of the files in the upload folder to your forum's root folder. Make sure that all files are being overwritten. Do not move on to the next step until all files are transferred successfully!
2) After finished with step 2!! Reimport the product-vbbuxplaza.xml file via Admin CP -> Manage Products -> Add/Import Product. Make sure that Allow Overwrite is set to YES.
3) Refresh the Admin CP and get to checking your settings!
NOTE: You will be happy know that NO templates have been updated from v1.5.0 to v1.5.2!

There is something missing from these upgrade instructions. I've tried it twice and both times it went wrong. The first time I followed the directions exactly and lost my ACP (white screen with ?>). The second time I uninstalled the old xml file after uploading the files in the upload folder and lost everything in the database. The instructions say nothing about what to do with the old xml and when.

I would appreciate any help as I'm trying to get my board upgraded to 3.6.

Acers
08-14-2006, 11:32 AM
In 3.6, the modification to threadbit that allows users to change the appearance of thread titles works, but when done, new threads are no longer shown as bold.
do this

instead of changing to this in 3.6


<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$show['gotonewpost']"> style="font-weight:bold"</if>>$thread[threadtitle]</a>


Replace With:

<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$thread['titlestyle']">style="$thread[titlestyle]"</if>>$thread[threadtitle]</a>



change this


<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$show['gotonewpost']"> style="font-weight:bold"</if>>$thread[threadtitle]</a>


Replace With:

<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$thread['titlestyle']">style="$thread[titlestyle]"</if>><if condition="$show['gotonewpost']"><strong></if>$thread[threadtitle]<if condition="$show['gotonewpost']"></strong></if></a>


will work ;)

G_Man
08-16-2006, 12:17 AM
do this

instead of changing to this in 3.6


<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$show['gotonewpost']"> style="font-weight:bold"</if>>$thread[threadtitle]</a>


Replace With:

<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$thread['titlestyle']">style="$thread[titlestyle]"</if>>$thread[threadtitle]</a>



change this


<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$show['gotonewpost']"> style="font-weight:bold"</if>>$thread[threadtitle]</a>


Replace With:

<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$thread['titlestyle']">style="$thread[titlestyle]"</if>><if condition="$show['gotonewpost']"><strong></if>$thread[threadtitle]<if condition="$show['gotonewpost']"></strong></if></a>


will work ;)


Gonna try that right now. ;) Worked a TRICK!!! NICE!!!


and in case anyone can help... when trying to edit my forums now... :(

Database error in vBulletin 3.6.0:

Invalid SQL:
UPDATE forum SET
title_clean = 'Technical Talk',
title = 'Technical Talk',
description_clean = 'Questions, discussion about anything technical - site, internet, or other.',
description = 'Questions, discussion about anything technical - site, internet, or other.',
link = '',
displayorder = 3,
parentid = 14,
daysprune = -1,
defaultsortfield = 'title',
defaultsortorder = 'asc',
showprivate = 0,
newpostemail = '',
newthreademail = '',
### Bitfield: forum.options ###
options = IF(options & 8, options - 8, options),
options = IF(options & 16, options - 16, options),
options = IF(options & 32, options - 32, options),
options = IF(options & 32768, options - 32768, options),
options = IF(options & 8192, options, options + 8192),
options = IF(options & 4, options, options + 4),
options = IF(options & 1, options, options + 1),
options = IF(options & 2, options, options + 2),
options = IF(options & 16384, options, options + 16384),
options = IF(options & 256, options - 256, options),
options = IF(options & 64, options, options + 64),
options = IF(options & 128, options, options + 128),
options = IF(options & 512, options, options + 512),
options = IF(options & 1024, options, options + 1024),
options = IF(options & 2048, options, options + 2048),
options = IF(options & 4096, options, options + 4096),
options = IF(options & 65536, options, options + 65536),
styleid = 0,
password = '',
vbbux_perview = 0.25,
vbbux_perthread = 1,
vbbux_perreply = 0.5,
### Bitfield: forum.vbpforumoptions ###
vbpforumoptions = IF(vbpforumoptions & 16, vbpforumoptions - 16, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 32, vbpforumoptions - 32, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 64, vbpforumoptions - 64, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 128, vbpforumoptions - 128, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 256, vbpforumoptions - 256, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 512, vbpforumoptions - 512, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 1024, vbpforumoptions - 1024, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 2048, vbpforumoptions - 2048, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 4096, vbpforumoptions - 4096, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 8192, vbpforumoptions - 8192, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 16384, vbpforumoptions - 16384, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 32768, vbpforumoptions - 32768, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 65536, vbpforumoptions - 65536, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 1, vbpforumoptions - 1, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 2, vbpforumoptions - 2, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 4, vbpforumoptions - 4, vbpforumoptions),
vbpforumoptions = IF(vbpforumoptions & 8, vbpforumoptions - 8, vbpforumoptions),
vbp_cangetaccesscost = 0,
vbp_cangiveaccesscost = 0,
vbp_candenyaccesscost = 0,
vbp_cangetpasswordcost = 0
WHERE forumid = 12;

MySQL Error : Unknown column 'defaultsortfield' in 'field list'
Error Number : 1054
Date : Tuesday, August 15th 2006 @ 09:07:31 PM
Script : http://www.afterseppuku.com/theforum/admincp/forum.php?do=update
Referrer : http://www.afterseppuku.com/theforum/admincp/forum.php?do=edit&f=12
IP Address : 67.185.88.39
Username : G_Man
Classname : vb_database


help?

MorrisMcD
08-16-2006, 01:25 AM
I am having some issues recently where the lotto isnt being paid out.. Also, paychecks are not paid.. Frustrating... Anyone have an idea why this would do this?

Weegie2004
08-16-2006, 08:18 PM
I just installed it with VB 3.5.4, everything is working perfectl, except for one thing, all of my thread titles seem to be duplicated, see screenshot. Im a bit of a Vbulletin rookie, so could anyone point me in the right direction?

theorigin
08-16-2006, 08:26 PM
I have a question, but I'm sure it's been asked before..How do you set up a forum where you can buy access? I set it up when I created a new forum, but in the vbPlaza, it said that there were no forums available to buy access for. Can someone help?

fly
08-17-2006, 11:12 AM
<font size="2">PLEASE POST ALL SUPPORT QUESTIONS IN THE SUPPORT FORUM</font>

tazB.ca
08-19-2006, 04:21 AM
can u make add on for this system or tha intagrated one to vbookie replaces tha current reputation system...and watever ur rep power is is wat cash u give someone,i dont like this for my site it basiclly makes rep power useless

tazB.ca
08-19-2006, 04:24 AM
I just installed it with VB 3.5.4, everything is working perfectl, except for one thing, all of my thread titles seem to be duplicated, see screenshot. Im a bit of a Vbulletin rookie, so could anyone point me in the right direction?


That happen to me too....i had to re-do tha template edits...............:(

Bugtap
08-19-2006, 09:00 PM
When I try and install, I get:

Could not find phrase 'vbplaza_functions_vbplaza_not_uploaded'.

help?

kru89
08-21-2006, 04:08 AM
how do i completely remove vbvbux/vbplaza? when i delete the plugin folder.. the forum get lots of error.. plz give me manual to COMPLETE unistall.. thanks

fly
08-21-2006, 11:28 AM
how do i completely remove vbvbux/vbplaza? when i delete the plugin folder.. the forum get lots of error.. plz give me manual to COMPLETE unistall.. thanks
uninstall the product. delete all files you uploaded. done.

bada_bing
08-21-2006, 04:36 PM
Will this work on vb 3.5.3 ?

fly
08-21-2006, 04:50 PM
Will this work on vb 3.5.3 ?
Why would you be running that?

Shazz
08-21-2006, 05:01 PM
Will this work on vb 3.5.3 ?
At the top of every thread it says

vB Version:

This Thread says
vB Version: 3.5.4
:)

Shadow_NL
08-22-2006, 10:20 AM
Can someone please give me a link to the v3arcade addon for this hack. I know it's released, but can't find a thread anywhere.. Thanks.

Also, when I try to uninstall the vbBux / vbPlaza product in admincp, I receive this error:
Could not find phrase 'vbplaza_functions_vbplaza_not_uploaded'.

Zidane007nl
08-22-2006, 10:46 AM
Can someone please give me a link to the v3arcade addon for this hack. I know it's released, but can't find a thread anywhere..
It's located in the hack's zip file under the 'Addon' directory.

Shadow_NL
08-22-2006, 10:58 AM
It's located in the hack's zip file under the 'Addon' directory.Thanks Zidane :)

Also fixed the other error myself. I deleted the files before uninstalling..

Thug
08-22-2006, 12:25 PM
fixed this error thanx

Thug
08-22-2006, 02:46 PM
how come admins are protectd from theif action
how do i change that,

also how come it is impossible to be successfull on theif action wtf

also glow doesnt work for somereason glowing username
i typed in black and purchased but to no effect on fire fox only works with IE
how can we make it work in FireFox

Thug
08-22-2006, 03:36 PM
also a question is there anyway to change what gifts we can give like say we want to give sum1 a microphone but its not on list, how wud we add?

oh and question about ribbons i cant give it to users and i cant buy it as it says im protected how do i sort this

also i have arcade pass active but people dont need to buy it to enter arcade :S

Thug
08-23-2006, 03:09 PM
bump anyone hope ucan help asap

MissKalunji
08-23-2006, 04:30 PM
also a question is there anyway to change what gifts we can give like say we want to give sum1 a microphone but its not on list, how wud we add?


oh and question about ribbons i cant give it to users and i cant buy it as it says im protected how do i sort this

also i have arcade pass active but people dont need to buy it to enter arcade :S


upload it to the gift directory and it will appear

Thug
08-23-2006, 04:31 PM
upload it to the gift directory and it will appear
thanx u no anything abt other errors

oh n hello u no me from msn hehe

MissKalunji
08-23-2006, 05:38 PM
thanx u no anything abt other errors

oh n hello u no me from msn hehe

oh lol i didnt realise

for the ribbon check in the permissions to see you probably ticked where it says admin and mod protected check for something similar

Thug
08-23-2006, 05:54 PM
exactly where could i find it

MissKalunji
08-23-2006, 06:39 PM
try that : Protected From Options Usergroups?
Enter the Usergroup ID/IDs that you want to be protected against stuff like Change Others Custom User Title, Change Others Default Avatar, etc.. (Default is 6.)

in admincp / vb plaza / manage setting

im just guessing that could be the prob....

Thug
08-23-2006, 08:32 PM
try that : Protected From Options Usergroups?
Enter the Usergroup ID/IDs that you want to be protected against stuff like Change Others Custom User Title, Change Others Default Avatar, etc.. (Default is 6.)


in admincp / vb plaza / manage setting

im just guessing that could be the prob....
yup sorted thanx

brownafroduck
08-23-2006, 08:58 PM
I've uploaded all the files into the forum's root folder, I believe.

I'm trying to install the xml file and it's not working. This is the message I get:


Could not find phrase 'vbplaza_functions_vbplaza_not_uploaded'.

MissKalunji
08-23-2006, 09:31 PM
yup sorted thanx


no problem!

Thug
08-23-2006, 11:04 PM
u know why no1 can get success on theif action

Shazz
08-23-2006, 11:15 PM
u know why no1 can get success on theif action
It works about 1/3 or 1/5

MissKalunji
08-24-2006, 12:51 AM
u know why no1 can get success on theif action


go to vbplaza / manage item / thief / scroll down til : Thief Success Percentage
Enter the percentage that you want the Thief option to be successful. (Default is 15% of the time)

and change the %

Thug
08-24-2006, 11:40 AM
go to vbplaza / manage item / thief / scroll down til : Thief Success Percentage
Enter the percentage that you want the Thief option to be successful. (Default is 15% of the time)

and change the %
nope that option isnt on my theif management

maidos
08-24-2006, 02:05 PM
when installing i cant access the vbplaza.php

it says ur usergroup are not permitted, where do i change that setting?

y2krazy
08-24-2006, 03:43 PM
Who is currently providing the support for this hack?

Don.Hanks
08-25-2006, 11:27 AM
great stuff, works well but found a problem.

when I am trying to view 'most sold', it says 'You are not allowed to view Item History.', why?

Bugtap
08-26-2006, 04:35 AM
I've uploaded all the files into the forum's root folder, I believe.

I'm trying to install the xml file and it's not working. This is the message I get:
same thing happens to me, I hope we can find out whats wrong soon!!

geevest.com
08-26-2006, 07:39 AM
anyone know to reset all point for all usergroup?

maidos
08-27-2006, 07:00 AM
i get this error

Your usergroup does not have permission to purchase vbPlaza Options.

what the heck how do chan ge that setting, i did tried in admincfp but no results help me

Wolf_Hook
08-28-2006, 10:16 AM
https://vborg.vbsupport.ru/showthread.php?t=120976

https://vborg.vbsupport.ru/showthread.php?t=123227

Well it seems this afternoon it was indeed my turn to be locked out of my own forum. I am the head administrator of the board and now am relying on a moderator to set me up a new account to merge into.

Once I have full administrator rights again I will be wasting no time in uninstalling this mod.

It really makes me wonder about other users because some of most prolific posters have not shown up for a few days.

To say I am not happy would be an understatement as I feel quite close to taking to the streets and just beating up a random person that comes my way.

I realise that these mods are purely at the users risk but a response from the people that made it would be welcome, even if it was a f$*k you or something!

My advice to people thinking about installing this mod is really do your research on it and the errors reported. 95% of the time it works great and the users love it but when it does go wrong, it is quite serious as I and two other of my members have found out.

CP,
08-30-2006, 12:03 PM
Who is currently providing the support for this hack?

nobody ive been stuck for 2 months now almost 3 months coming!

EasyTarget
08-31-2006, 05:01 PM
for anyone using vbplaza with vbulletin 3.6

In the instructions there's a place where it tells you to only make the edit for 3.6 boards, but making that edits disables the abilitiy to tell which threads have new posts and which don't.

peterska2 came up with this quick fix which should let you use vbplaza thread styles and still see new posts in the threads.
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$thread['titlestyle']">style="$thread[titlestyle]"</if>><if condition="$show['gotonewpost']"><strong>New: </strong></if>$thread[threadtitle]</a>

The result will be something like this:
New: unread thread title
New: unread thread title with style
read thread title
read thread title with style

HMBeaty
09-01-2006, 01:16 AM
Well, obviously if theres no support for this product and the creator hasn't been online in almost 2 months, there's no point in installing it anymore.

rezapci
09-01-2006, 02:35 PM
I edite all template, exapt vBulletin 3.6.x Only Edit !

where is vBulletin 3.6.x Only Edit located?

ngocha85
09-01-2006, 04:19 PM
Please help me:
https://vborg.vbsupport.ru/showthread.php?t=125338

TheCrescent
09-02-2006, 09:53 PM
Can anyone tell me how points of members can be recalculated based on their previous activity on the boards using VBplaza?

I have users that would like to have their activities recognized from the past and I was wondering if there is a calculator in the system that will do this.

Thanks,
TheCrescent

sensimilla
09-03-2006, 04:38 PM
For some reason vbux info in memberinfo template is showing twice at my place
How to fix it ? Ive checked that template mentionned and it once there ? :confused:

HMBeaty
09-03-2006, 09:14 PM
Looks to me like you may have put the same code in there twice, thats the only thing I can think of. Recheck your code again.

Shazz
09-03-2006, 09:45 PM
Would be pretty easy to find.. Its either above it or below your code you have currently.

cerulean
09-04-2006, 01:11 PM
Could someone tell me what this add-on does? The screens only show so much. Thanks.

gregwatson
09-05-2006, 01:06 AM
Any word on when the problem with not being able to delete threads will be fixed? The problem still exists with 1.5.8 and version 3.6 ...

Greg

ConnorJoe
09-05-2006, 11:26 AM
is it possible to add new gifts to the system??

kinkarso
09-05-2006, 03:02 PM
Hmm... not sure why I get this error, but I have no idea how to turn vbBux on :p. I set all the settings and everything in admincp, but everytime I post, I don't get any + points :(. When I try to use the donate feature, I get this error:

'Your usergroup does not have permission to purchase vbPlaza Options.'

Please help :).

Thank You,
Donny

G_Man
09-05-2006, 06:48 PM
is it possible to add new gifts to the system??

Just find/design a gif about the size of the others (about 15x15 pixels or so) and upload them to your Gifts directory with the filename that you want displayed. That is all it takes. ;)

calfer
09-05-2006, 10:47 PM
nevermind - found the fix

tazB.ca
09-06-2006, 10:36 PM
I Would Rweally Like It If U Could Intergrate Tha Prop System With This,by Making Tha Points Go Up Tha Amount Of Rep Power Someone Has Givin U,just Like Tha Regular Propz Work

ngocha85
09-07-2006, 01:20 AM
When my Moderator delete or move a thread, i want to subtract points from user (author of that thread).

How to do?

Please help me. Sorry for my bad English.

Hemanth
09-07-2006, 01:16 PM
How to get it installed? I'm trying for a week:(

friscogal
09-07-2006, 04:49 PM
i installed it on 3.6

Shazz
09-07-2006, 08:34 PM
How to get it installed? I'm trying for a week
What kind of troubles are you having?

Comalies
09-08-2006, 07:18 AM
I have kind of a strange question.

Is there any way I can divide everyone's user points by two?
There are just way too many points going around.
(I know there's an economic term for that :P)

Anyway, any way I can do this? Maybe with an SQL query?

G_Man
09-08-2006, 10:19 PM
I have kind of a strange question.

Is there any way I can divide everyone's user points by two?
There are just way too many points going around.
(I know there's an economic term for that :P)

Anyway, any way I can do this? Maybe with an SQL query?

If nothing else you could implememt a 100% tax rate!!! Of course the peasants would have torches and pitchforks out in a matter of hours!!! LOL

browie
09-09-2006, 07:07 PM
I've got this problem when i tried uploading xml file for vBookie

XML Error: Internal error at Line 41

Any help with this? Did i upload things in the wrong order? Help


Because i've got vCash and vBux going on right now... don't know how to change that.
https://vborg.vbsupport.ru/

Shazz
09-09-2006, 07:14 PM
I've got this problem when i tried uploading xml file for vBookie

XML Error: Internal error at Line 41

Any help with this? Did i upload things in the wrong order? Help


Because i've got vCash and vBux going on right now... don't know how to change that.
http://www.browie.com/images1/idk.jpg
You are currently running 3.5.3/?

browie
09-09-2006, 07:38 PM
You are currently running 3.5.3/?

Well, now i'm running 3.6.0 I forgot that i had .3 so i'll update later maybe.

FamilyCorner
09-09-2006, 08:38 PM
I have installed this hack on 3.5.1 with on problems. Everything is running smoothly :) However, I am hoping I didn't misunderstand the purpose of this hack when I installed it. I understand that users can earn points for certain activity as well as spend it for other activities. That part I get.

What I was hoping to use this for was something a little different, and probably someone else is already doing this (I hope so anyway LOL). As the owner of a family/parenting content site I receive a boatload of free books, DVDs, toys, gadgets, etc. I used to give them away in contests, but anyone who runs contests knows this also attracts users JUST for your contests. I wanted something I could use to reward my loyal visitors and board members with. This looked perfect. So my questions are these:

1) If I create a new category (for example, Book Store or Toy Store), can I add tangible items such as DVDs, books, toys, etc as items for sale that can be purchased with points? I have already done so, but when I click on the item I get this: "The vbPlaza option you are trying to purchase has an invalid Set Name."

2) Is there a way to allow people to redeem points based on scavenger hunts or point words? For example, if I state in the newsletter that this week's point word is BUNGEE and it's worth 300 points, is there a way to do this where people can punch in the word and redeem those points?

I really appreciate any help on this. It looks like this could really work for me. I know this is a really, really long thread, so I sure hope I won't be asking anyone to repeat history. :(

Thank you so much in advance!

FamilyCorner
09-09-2006, 09:53 PM
I'm trying to allow users to upgrade memberships with vbplaza, but I get this when I try to upgrade:

error invalid set name

wolfyman, did you ever get an answer on this?

I tried creating a new item in a new category, but when I click on the item I created from the VBPlaza I set

The vbPlaza option you are trying to purchase has an invalid Set Name.

Please help :(

Necrosaro420
09-10-2006, 12:29 AM
How does one go about figuring out how to add new items etc??? Im confused! Thanks!

Shazz
09-10-2006, 12:30 AM
How does one go about figuring out how to add new items etc??? Im confused! Thanks!
In admin CP under VBux. Add new Item and put in all the descriptions.

LILMORA4
09-10-2006, 05:42 PM
I upload thru my server, but I keep getting this message when I try to upload thr admin panel. XML Error: Empty document at Line 1
:cry:

Necrosaro420
09-10-2006, 06:06 PM
In admin CP under VBux. Add new Item and put in all the descriptions.

Would this allow you to create entire new catagories as well? I want to add images of video game box's, since I run a gaming website. Thanks!

LILMORA4
09-10-2006, 06:39 PM
I upload thru my server, but I keep getting this message when I try to upload thr admin panel. XML Error: Empty document at Line 1

Necrosaro420
09-10-2006, 07:51 PM
In admin CP under VBux. Add new Item and put in all the descriptions.

Ok, I tried one, and verifed that the image is correct link wise etc...and this is what comes up

"The Store option you are trying to purchase has an invalid Set Name."

I did not touch the set name, since it said for advanced users only, and I am not an advanced user when trying to look at the code. Thanks!