vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - vbBux / vbPlaza v1.5.8 (Points + Store System) (https://vborg.vbsupport.ru/showthread.php?t=106953)

CMX_CMGSCCC 02-06-2006 12:47 AM

Quote:

Originally Posted by LBSources
anyway to add the ability to purchase an additional usergroup for X amount of time? 1,2,3 months?

i want to create a usergroup just for such a product to purchase.. it will have certain perk access to a part of the site..

possible CMX?

This is a feature I'm going to add soon, an eStore item to add a secondary usergroup.

-CMX

CMX_CMGSCCC 02-06-2006 12:48 AM

Quote:

Originally Posted by Frugal
I really need help. I can't figure out the correct syntax to add more groups to the immunity.


I know I need to edit this section
Code:

// you cant change an administrators title :p
 if (($touser['usergroupid'] == '6') || ($touser['userid'] == '1'))

And I know I need to use ors but I can't find the correct syntax. If someone can show me the correct syntax so that I can include groups 27 and 32 to this I'd be really grateful.

Frugal

Maybe try this...
Code:

if (is_member_of($touser, 6, 27, 32))
-CMX

The Chief 02-06-2006 12:53 AM

hey CMX I am having problem with a user, he cannot see the eStore, he sees it as a guest...

I will pm you the info for the account if you wanna test it...

Frugal 02-06-2006 12:54 AM

Thanks, I'll give that a try.

Also while you are reading, I've found a limitation of the permissions system. If there is a particular group that you don't wish to buy one of the store items you need to make sure they are not a member of a secondary group that can buy the item. It would be great if you could deny something to members of a particular user group regardless of any other groups they are members of. Not sure if that would be doable or not though.

Frugal

CrazyShooter 02-06-2006 12:54 AM

Quote:

Originally Posted by Frugal
I really need help. I can't figure out the correct syntax to add more groups to the immunity.


I know I need to edit this section
Code:

// you cant change an administrators title :p
 if (($touser['usergroupid'] == '6') || ($touser['userid'] == '1'))

And I know I need to use ors but I can't find the correct syntax. If someone can show me the correct syntax so that I can include groups 27 and 32 to this I'd be really grateful.

Frugal

Try this:
Code:

// you cant change an administrators title :p
 if (($touser['usergroupid'] == '6, 27, 32') || ($touser['userid'] == '1'))


CMX_CMGSCCC 02-06-2006 12:57 AM

Quote:

Originally Posted by Frugal
Thanks, I'll give that a try.

Also while you are reading, I've found a limitation of the permissions system. If there is a particular group that you don't wish to buy one of the store items you need to make sure they are not a member of a secondary group that can buy the item. It would be great if you could deny something to members of a particular user group regardless of any other groups they are members of. Not sure if that would be doable or not though.

Frugal

The denied should override the allowed groups. Add the one you want to deny to the denied.

-CMX

ChurchMedia 02-06-2006 12:58 AM

Updated action for selling physical products. Just upload this to the estore folder and create a new action(s). It will automatically PM the user's address to you and PM the user a receipt.

LBSources 02-06-2006 01:00 AM

Quote:

Originally Posted by ChurchMedia
Updated action for selling physical products. Just upload this to the estore folder and create a new action(s). It will automatically PM the user's address to you and PM the user a receipt.

church im sorry what does this do?

The Chief 02-06-2006 01:00 AM

Quote:

Originally Posted by gamebgs
hey CMX I am having problem with a user, he cannot see the eStore, he sees it as a guest...

I will pm you the info for the account if you wanna test it...

can you check your pms please CMX :)

LBSources 02-06-2006 01:01 AM

Quote:

Originally Posted by CMX_CMGSCCC
This is a feature I'm going to add soon, an eStore item to add a secondary usergroup.

-CMX

Great thanks!

Lenny

Frugal 02-06-2006 01:07 AM

Quote:

Originally Posted by CMX_CMGSCCC
Maybe try this...
Code:

if (is_member_of($touser, 6, 27, 32))
-CMX

That works but only if the 6 27 or 32 is their primary group, 32 is a secondary group :(

Frugal

Frugal 02-06-2006 01:09 AM

Quote:

Originally Posted by CMX_CMGSCCC
The denied should override the allowed groups. Add the one you want to deny to the denied.

-CMX

Holy crap, I didn't see denied, did you add it in 1.06? Thanks though, that's just what I needed :D

Frugal

ChurchMedia 02-06-2006 01:14 AM

Quote:

Originally Posted by LBSources
church im sorry what does this do?

Like if you want to give away a t-shirt or a book or something physical, this action will collect the user's address and PM it to you. Click "Add New Option" and fill out like in the screen shot.

CrazyShooter 02-06-2006 01:15 AM

like there HOME address ?

The Chief 02-06-2006 01:17 AM

are you guys having some problems with users not seeing items that they can purchase?

ChurchMedia 02-06-2006 01:18 AM

Quote:

Originally Posted by CrazyShooter
like there HOME address ?

Yeah -- their shipping address. They give it to you through a form when they purchase the product....

LBSources 02-06-2006 01:20 AM

Quote:

Originally Posted by ChurchMedia
Like if you want to give away a t-shirt or a book or something physical, this action will collect the user's address and PM it to you. Click "Add New Option" and fill out like in the screen shot.

oh .. very nice.. thanks..

EDIT: Church .. Tried using this and got this error .. Fatal error: Unable to proceed with save while $errors array is not empty in class vb_datamanager_pm in /includes/class_dm.php on line 758

CrazyShooter 02-06-2006 01:23 AM

u need to set it so that they can in the admin CP, click the item and then edit the allowed Usergroups, u need to put the id

The Chief 02-06-2006 01:24 AM

Quote:

Originally Posted by CrazyShooter
u need to set it so that they can in the admin CP, click the item and then edit the allowed Usergroups, u need to put the id

ah, thanks for that, thats just the info I needed :)

ChurchMedia 02-06-2006 01:56 AM

Quote:

Originally Posted by LBSources
oh .. very nice.. thanks..

EDIT: Church .. Tried using this and got this error .. Fatal error: Unable to proceed with save while $errors array is not empty in class vb_datamanager_pm in /includes/class_dm.php on line 758

Make sure you fill out the new option stuff completely -- the script location and the item table name (user). It's working on my site, so I'm not sure what the error is. Also make sure you have v1.0.6.1 of eBux. There was a change in terminology somewhere.

LBSources 02-06-2006 02:04 AM

Quote:

Originally Posted by ChurchMedia
Make sure you fill out the new option stuff completely -- the script location and the item table name (user). It's working on my site, so I'm not sure what the error is. Also make sure you have v1.0.6.1 of eBux. There was a change in terminology somewhere.

Church,

Its filled out correctly.. dont know whats wrong .. but oh well .. thanks for the effort.. and im on the latest estore as he updates

The Chief 02-06-2006 02:05 AM

Quote:

Originally Posted by LBSources
Church,

Its filled out correctly.. dont know whats wrong .. but oh well .. thanks for the effort.. and im on the latest estore as he updates

lol, so am I, I just love how CMX does everything so fast and listens to all of our suggestions ;)

ChurchMedia 02-06-2006 02:07 AM

Quote:

Originally Posted by LBSources
Church,

Its filled out correctly.. dont know whats wrong .. but oh well .. thanks for the effort.. and im on the latest estore as he updates

Sorry -- we'll mess with it some more after a few more updates :)

XtremeOffroad 02-06-2006 02:12 AM

Quote:

Originally Posted by gamebgs
lol, so am I, I just love how CMX does everything so fast and listens to all of our suggestions ;)

Ditto

LBSources 02-06-2006 02:14 AM

Quote:

Originally Posted by ChurchMedia
Sorry -- we'll mess with it some more after a few more updates :)

you got it ;)

The Chief 02-06-2006 02:23 AM

Do you know if CMX has done the images...

In the Options manager it gives links to images, but its not included in the .zip..??

XtremeOffroad 02-06-2006 02:25 AM

Quote:

Originally Posted by gamebgs
Do you know if CMX has done the images...

In the Options manager it gives links to images, but its not included in the .zip..??

It ws mentioned earlier that he was not including images yet allough they are mentioned in the cp for future release.

StevenIsProek 02-06-2006 02:28 AM

THANKS
*installs*

The Chief 02-06-2006 02:31 AM

Quote:

Originally Posted by XtremeOffroad
It ws mentioned earlier that he was not including images yet allough they are mentioned in the cp for future release.

cool, thanks for the reply ;)

caimakale 02-06-2006 02:58 AM

Quote:

Originally Posted by CMX_CMGSCCC
Sorry, I didnt find the hooks in time but I left the message there, oops.

Soon as I find the hooks I can add the gifts action in.

-CMX

CMX just an FYI to get the gifts to display in the postbit, I am using hooks showthread_start and postbit_imicons. Everything is showing up fine, I am just trying to get this php action file to work...gonna try another approach. Also I need to look at the changes you made and update my xml file.

***EDIT*** Just to clarify, I am using these hooks for the ribbons hack, not the gifts hack.

evenmonkeys 02-06-2006 03:00 AM

######### BUG REPORT #########

In the forum manager when you go to edit the options per thread, it's putting the options/fields in with other categories. In my case, it's adding them to the ecdownloads options. Really confused me. Lol.

######### BUG REPORT #########

Ignignokt 02-06-2006 03:11 AM

Stealing xYarub's format :)

######### BUG REPORT #########

On the main bank page, the caption below "Change User Title Immunity" is "This will allow you to change your own custom user title."

######### BUG REPORT #########

memorex 02-06-2006 03:15 AM

Awesome Mod!! HOTM For Sure!

moonclamp 02-06-2006 03:33 AM

Couple of requests/suggestions.

earn points for uploading a profile photo or avatar but it costs points to remove it. Swapping for a different one remains neutral or earns less points.

compatibility with vbadvanced/photopost vbagallery ... earn points for uploading a photo

Thanks :)

DJ XtAzY 02-06-2006 04:45 AM

I have just one request for the eStore:

* Attachment manager: Each time a member download an attachment will cost X amount of points. You can choose which attachments will cost the points on the file extension you choose (So if i mp3 and psd as my file extension, then it will cost the points, else if its pictuires like jpg, it will cost nothing). Im eager to find some sort of a credit system available.

im just wondering, if a new member register the board, is there a way to have the member start out with a given number of points?

EasyTarget 02-06-2006 04:53 AM

I had been wanting a ban user feature for the estore, but I think that's not broad enough for everyone to get a use out of, so what about this:

A change users usergroup. (can be self or someone else).
The admin can select what usergroups are available for users to join via the store. (primary or secondary)

For me this means I can select the usergroup that limits posting to one specific forum called the timeout forum. Users would be able to force other users to this forum by using the estore to add this group to a user's group list.

For others this may mean letting users purchase access to premium areas.

kylek 02-06-2006 08:40 AM

After trying twice to install ushop I came back to the one I should have started with the first time, quick install, no problems.

off to click install!!!

kylek 02-06-2006 09:11 AM

Playing with the different settings and no problems so far except how do you remove an item that was purchased. For example - I purchased the glowing username as a test, have reset points and bank back to 0 but still have the glowing username.

lordofgun 02-06-2006 12:00 PM

AWESOME JOB CMX!

I'm sticking with ebux/estore for sure! Your support has been amazing.

LBSources 02-06-2006 12:26 PM

Quote:

Originally Posted by XtAzY
I have just one request for the eStore:

im just wondering, if a new member register the board, is there a way to have the member start out with a given number of points?

check the points settings.. examine all settings

Lenny


All times are GMT. The time now is 04:31 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.03748 seconds
  • Memory Usage 1,839KB
  • 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
  • (5)bbcode_code_printable
  • (23)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

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

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