vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - Point Market System 3.1x (https://vborg.vbsupport.ru/showthread.php?t=232676)

abqtj 05-17-2010 02:11 PM

I'm really sorry, I'm not seeing it.

I'm in the Admin Control Panel->User Groups->Usergroup Manager->then I'm selecting any usergroup and Editing. I've got nothing that says anything about the Market.

I have set myself and another up as admin in the Point Market already.

Bigj85 05-17-2010 02:39 PM

Quote:

Originally Posted by abqtj (Post 2038538)
I'm really sorry, I'm not seeing it.

I'm in the Admin Control Panel->User Groups->Usergroup Manager->then I'm selecting any usergroup and Editing. I've got nothing that says anything about the Market.

I have set myself and another up as admin in the Point Market already.

I think "bitfield_pointmarket.xml" is missing from the newest release,you'll need that file to see usergroup permissions in the usergroup manager

abqtj 05-17-2010 02:42 PM

Quote:

Originally Posted by Bigj85 (Post 2038564)
I think "bitfield_pointmarket.xml" is missing from the newest release,you'll need that file to see usergroup permissions in the usergroup manager

AH!!!!!!!! No wonder

m200RED 05-17-2010 03:05 PM

Is there a way to edit individual user's gifts? I want to either manually add/remove gifts from individual users with Admin CP.

abqtj 05-17-2010 05:55 PM

Quote:

Originally Posted by Bigj85 (Post 2038564)
I think "bitfield_pointmarket.xml" is missing from the newest release,you'll need that file to see usergroup permissions in the usergroup manager

any chance someone's got that file?

Bigj85 05-17-2010 05:59 PM

1 Attachment(s)
Quote:

Originally Posted by abqtj (Post 2038643)
any chance someone's got that file?


I've attached the file,it goes in includes/xml/

abqtj 05-17-2010 06:05 PM

Thanks very much!

Now I need to cure my database error that's popping up (but I still have 4.0.1...might be related).

TheMayhem 05-17-2010 07:21 PM

I updated the zip file to include the missing .xml file. Nooo clue why it wasn't included the first time but it has since been corrected.

alloutvb 05-18-2010 12:48 PM

when i click on Maintenance in the admincp i got this error
Warning: file_get_contents() [function.file-get-contents]: http:// wrapper is disabled in the server configuration by allow_url_fopen=0 in [path]/admincp/market.php on line 1441

Warning: file_get_contents(https://vborg.vbsupport.ru/misc.php?...id=pointmarket) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in [path]/admincp/market.php on line 1441

its a security risk to have it enabled all its trying to show is this https://vborg.vbsupport.ru/misc.php?...id=pointmarket
just the version number but because its app get whatever
that means you could set up a injection on a website and then hit that in the browsser

gruftiradio 05-18-2010 12:57 PM

Is there a way to update the product, without overwriting the phrases? I translated them to German and don't want to do it again...

Veer 05-18-2010 03:52 PM

I still don't understand where is the option to purchase gift for someone else?

TheMayhem 05-18-2010 04:18 PM

Quote:

Originally Posted by Veer (Post 2039300)
I still don't understand where is the option to purchase gift for someone else?

Under the Other Users category.

alloutvb 05-18-2010 06:11 PM

so your not going to say any thing about my error im having with your mod?

Veer 05-18-2010 06:47 PM

Quote:

Originally Posted by TheMayhem (Post 2039324)
Under the Other Users category.

okay, I got it.

Honestly speaking its too complicated and difficult to understand. I was wondering a simple way of sending gifts to users. however its just buying and selling gift items system, that's not my need.

Hope you make it better in future.

Kayden 05-18-2010 07:51 PM

Question: What is the minimum requirement for MySQL for this mod?

TheMayhem 05-19-2010 05:18 AM

Quote:

Originally Posted by alloutvb (Post 2039390)
so your not going to say any thing about my error im having with your mod?

Many mods and vBulletin software itself use a version checker function to check that the mod is up to date. Since your server has the file_get_contents() function disabled, this is what you are going to need to do to correct:

Open admincp/market.php

Find

PHP Code:

// Get Latest Version from vBulletin.org
$productVerCheckURL "https://vborg.vbsupport.ru/misc.php?do=productcheck&pid=pointmarket";
$latestVersion file_get_contents($productVerCheckURL);
$latestVersion ereg_replace("[^A-Za-z0-9.]"""$latestVersion );
$latestVersion substr($latestVersion23);
$latestVersion ereg_replace("[^0-9.]"""$latestVersion ); 

Replace with:

PHP Code:

$latestVersion "2.1.0"

That will take away the PHP error you are getting. I hope that helps :)






Quote:

Originally Posted by Kayden (Post 2039451)
Question: What is the minimum requirement for MySQL for this mod?

It has been tested extensively and performs the best with Mysql 5x+. However, some of the users here have been using Mysql 4.1x and it has worked sufficiently well as of the 2.1.0 series. Before that, there were some issues which the Point Market 2.1.0 attempted to fix.

alloutvb 05-19-2010 03:27 PM

Quote:

Originally Posted by TheMayhem (Post 2039621)
Many mods and vBulletin software itself use a version checker function to check that the mod is up to date. Since your server has the file_get_contents() function disabled, this is what you are going to need to do to correct:

Open admincp/market.php

Find

PHP Code:

// Get Latest Version from vBulletin.org
$productVerCheckURL "https://vborg.vbsupport.ru/misc.php?do=productcheck&pid=pointmarket";
$latestVersion file_get_contents($productVerCheckURL);
$latestVersion ereg_replace("[^A-Za-z0-9.]"""$latestVersion );
$latestVersion substr($latestVersion23);
$latestVersion ereg_replace("[^0-9.]"""$latestVersion ); 

Replace with:

PHP Code:

$latestVersion "2.1.0"

That will take away the PHP error you are getting. I hope that helps :)








It has been tested extensively and performs the best with Mysql 5x+. However, some of the users here have been using Mysql 4.1x and it has worked sufficiently well as of the 2.1.0 series. Before that, there were some issues which the Point Market 2.1.0 attempted to fix.

its funny tho yours is the only one giving me this error and i have a lot of mods on my site with no errors

TheMayhem 05-19-2010 04:13 PM

Quote:

Originally Posted by alloutvb (Post 2039922)
its funny tho yours is the only one giving me this error and i have a lot of mods on my site with no errors

Not sure why, I'll look into an alternative php function instead of that one for the next release so you don't have to re-edit it each and everytime.

Kayden 05-19-2010 09:40 PM

I'm very pleased with this mod. Haven't run into any problems yet.

Will this mod be for only vB 4.x ? I'm curious because I have a vB 3.8.5 board as well, and have been in dire need of a mod such as this.

unicorn2433 05-20-2010 03:13 PM

Am I the only one who is not getting pm notifications?
Is this happening to anyone else?
I am trying to figure out what I may have done wrong.

TheMayhem 05-22-2010 06:29 PM

I have started working on the next version today which will feature 3 main additions:

Multiple Currencies
Coupons
Real Money Converter

Stay tuned for more information and please continue to report bugs.

m200RED 05-22-2010 08:10 PM

No one has replied to my post.

Is there a way to edit individual user's gifts? I want to either manually add/remove gifts from individual users with Admin CP.

I would also like it to be able to reorganize/reorder the gifts (not in the order they are bought) in postbit or profile that I bought so it looks better.

Juggernaut 05-22-2010 09:15 PM

You can remove gifts in the admin cp, but so far as I know, you can't add them, as to the other question, I don't know the answer to that question :D

Juggernaut 05-24-2010 11:43 AM

Hi, I noticed that if I'm saving my custom css as files, the username and usertitle modifications, don't show, is there any way to change this or must I save the CSS in the database?

TheMayhem 05-24-2010 04:06 PM

Ummm... that'd be a bug then I guess I get to fix for the next version. *Mutters*

fly 05-25-2010 10:13 PM

I can only assume this uncached template is from this mod?

market_navbar_link

edit: And market_home

TheMayhem 05-26-2010 12:56 AM

Quote:

Originally Posted by flypaper (Post 2043383)
I can only assume this uncached template is from this mod?

market_navbar_link

edit: And market_home

Yes that's from the Market, I am trying to clean up the templates, css, and other sloppy things I've done in the next release; however, that release won't be out until sometime in June.

An update to all, I've been in my lab for the past week with a pen, a lot of energy drinks, and an unlimited supply of ramen noodles working on our next version. It is the second time I do a serious overhaul on the coding. I am trying to make the version more adaptable to users being able to use multiple currencies so for example a person could use the uCash and vBCredits at the same time or Activity and vBookie with multiple point fields and then charge items accordingly. It is taking a lot of time because I have to redo pretty much every table and line of coding to take into account multiple currencies; however, I think it will be very warranted and allow for people to experiment with multiple point systems.

Please keep updating this thread with bug findings as I am watching it daily. Oh and thank you to those who have donated.

Veer 05-26-2010 04:38 AM

Sounds good mate.

Please also consider on making the gifts interface better, A nice and easy interface to send gift to user and show that gifts in user profiles.

Thanks.

Trip3151 05-26-2010 06:40 AM

This is a great mod it installed flaws less on my forum and it's easy to use but it lacks a few features, I hope in the up coming relsease we can see some of these features.

*Buy Avatars

*Steal fuction to have a 2 day cut off or have it so the Steal fuction has 100% life and every time some one trys and steal off you it goes down by 20% or 40%.

* Buy signature every time user wants to change or add a signature they will need to pay for it .

* Pay for useing the download section of the forum

That's all I can think off for now :)

If you made a Pro version of this mod I will be one of the first people to buy it , keep up the good work and can't wait for the next release :)

Regards

Skyrider 05-26-2010 07:10 AM

TheMayhem, idea!

Can you add the username ability to change their nickname in to an image?

btw.. who's online:

Unknown Location
/market.php?do=cat&id=39

EquinoxWorld 05-26-2010 10:19 AM

hello, I was wondering about this feature : "Detailed market transaction history purchase ability" . Where would we go to see this transaction history? and is there any way for admin to see all users transaction history? Awesome hack btw , very useful.

also couldn't find this either :"Ability to Manually Edit User Purchases in Admin CP". Would appreciate your help with these issues. Thank you again for the very good work.

Skyrider 05-26-2010 12:09 PM

Quote:

Originally Posted by EquinoxWorld (Post 2043571)
hello, I was wondering about this feature : "Detailed market transaction history purchase ability" . Where would we go to see this transaction history? and is there any way for admin to see all users transaction history? Awesome hack btw , very useful.

also couldn't find this either :"Ability to Manually Edit User Purchases in Admin CP". Would appreciate your help with these issues. Thank you again for the very good work.

Your second question, edit their user information within the mod/admincp and check out the bottom right.

TheMayhem 05-26-2010 06:27 PM

Quote:

Originally Posted by Veer (Post 2043496)
Sounds good mate.

Please also consider on making the gifts interface better, A nice and easy interface to send gift to user and show that gifts in user profiles.

Thanks.

I worked on the gift interface a lot in 2.1.0 with you guys being able to control where the location is of the gifts; however, in the next release I am going to add category functions to gifts so that gifts will be displayed by categories instead of all at once. I think that is the one highly requested item missing with the gifts.

Quote:

Originally Posted by Trip3151 (Post 2043520)
This is a great mod it installed flaws less on my forum and it's easy to use but it lacks a few features, I hope in the up coming relsease we can see some of these features.

*Buy Avatars

*Steal fuction to have a 2 day cut off or have it so the Steal fuction has 100% life and every time some one trys and steal off you it goes down by 20% or 40%.

* Buy signature every time user wants to change or add a signature they will need to pay for it .

* Pay for useing the download section of the forum

That's all I can think off for now :)

If you made a Pro version of this mod I will be one of the first people to buy it , keep up the good work and can't wait for the next release :)

Regards

There will be new market items in the next release. I'm aiming to add 5 to 10 new items; however, I'm not sure which items I'll be scripting. I do however plan to add certain timeout features to market items so that users have to constantly purchase to encourage continuous market activity. As for making this a paid mod, I refuse to ever make this a paid modification as I fundamentally do not agree with everyone offering "lite" versions and "pro" versions elsewhere. If you want to donate you are more then welcome to but I will always offer all features here on vb.org.

Skyrider 05-27-2010 04:31 AM

:) awesome to hear that TheMayhem.

Is there anyway that:

1), Items can have a timer so your item will disappear if xx hours,days or weeks are up.
2), Like my post above, the ability to replace your username with an image.
3), Make it compatible with the Arcade system plugin. (this one)

sweetguy2004 05-27-2010 07:29 AM

very Interesting its almost convert VB into FB :D

ForenOpfer 05-27-2010 11:07 AM

Quote:

Originally Posted by ZuFett (Post 2016478)
@Atze

hab den Hack heute ?bersetzt. Wenn ich raus bekomme wie man das exportieren kann, dann gebe ich dir die ?bersetzung (Wenn der Mod-Author zustimmt)

@Mayhem
how i disable the menuepoint in navbar?

Hallo (;

Ich w?rde mich auch f?r ne deutsche ?bersetzung interessieren. Wie siehts aus, hat der Autor zugestimmt und der export hat geklappt?

Gru?
ForenOpfer

GONUMBER6 05-27-2010 03:32 PM

This may be a silly question- but how does a user earn the points?

Quote:

In addition, if you do not want to integrate this hack directly with another point system. You can still install this hack and use the reputation field, which will allow user's to purchase items based off of their reputation. I suggest if you choose this option that you set all prices to not include any decimals, as it will be useless and cause unwanted errors.
So can this system be intergrated with vbactivity?

https://vborg.vbsupport.ru/showthrea...ghlight=points

Veer 05-27-2010 06:32 PM

Quote:

Originally Posted by GONUMBER6 (Post 2044156)
This may be a silly question- but how does a user earn the points?



So can this system be intergrated with vbactivity?

https://vborg.vbsupport.ru/showthrea...ghlight=points

Yes, it is working. I tested in my localhost.

Bigj85 05-27-2010 08:14 PM

Quote:

Originally Posted by TheMayhem (Post 2043739)
I worked on the gift interface a lot in 2.1.0 with you guys being able to control where the location is of the gifts; however, in the next release I am going to add category functions to gifts so that gifts will be displayed by categories instead of all at once. I think that is the one highly requested item missing with the gifts.



There will be new market items in the next release. I'm aiming to add 5 to 10 new items; however, I'm not sure which items I'll be scripting. I do however plan to add certain timeout features to market items so that users have to constantly purchase to encourage continuous market activity. As for making this a paid mod, I refuse to ever make this a paid modification as I fundamentally do not agree with everyone offering "lite" versions and "pro" versions elsewhere. If you want to donate you are more then welcome to but I will always offer all features here on vb.org.


would it be possible to add a feature to use the gift categories as variables,for example on my board I use the market to sell stuff like userbars,I'd like to be able to have users buy other items and manually put where they appear in the templates using a variable for that category,so I could have a category for userbars that I could say manually place under peoples avatars or a category for banners I could place in my header,I think it would add a lot of funcionality to the market and help add to the posibilities

GONUMBER6 05-27-2010 08:44 PM

Quote:

Originally Posted by Veer (Post 2044235)
Yes, it is working. I tested in my localhost.


Is there anything I will need to do to get it to work or will it work automatically? TY :)


All times are GMT. The time now is 02:43 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.02916 seconds
  • Memory Usage 1,860KB
  • 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
  • (4)bbcode_php_printable
  • (19)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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