vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Major Additions - VBay! Transform your vbulletin into an auctionhouse! (https://vborg.vbsupport.ru/showthread.php?t=132544)

lycheepassion 11-04-2009 03:47 PM

Quote:

Originally Posted by nathanrich (Post 1142377)
Just an fyi, depending on where you live there might be regulations regarding running online auctions on your website. I'm not trying to scare anyone away, just saying do your homework, especially if your auctions start getting alot of traffic.


I am worried about this, my state you need an auctioneering license I think but not sure about online im studying it.




Quote:

Originally Posted by kjsmith84 (Post 1909913)
can i get some better instructions then waht is posted?

"To install
Upload files, and import product as usual"

im trying to set this up so i have have auctions on donated product for a christmas fund for familys in need. So please is some one could help.

thanks.


I need some better instructions too, please!!! I have it installed found the direct link from reading this board, but now what> Its not active on the forum anywhere?

final kaoss 11-04-2009 07:32 PM

lycheepassion there is an EDIT button, use it.

https://vborg.vbsupport.ru/external/2012/01/7.gif

gerbil249 11-04-2009 10:21 PM

Quote:

Originally Posted by lycheepassion (Post 1910203)
I am worried about this, my state you need an auctioneering license I think but not sure about online im studying it.

Here's what I did,

Google your state's code about merchanting and business. I filled out a short application, mailed it to the saint Louis county of revenue, and It costs $5 per year. That is for my state, others may be different.

gerbil249 11-04-2009 10:22 PM

Also, when will the 3.8.3 version be out?

lycheepassion 11-05-2009 05:36 AM

Quote:

Originally Posted by gerbil249 (Post 1910334)
Here's what I did,

Google your state's code about merchanting and business. I filled out a short application, mailed it to the saint Louis county of revenue, and It costs $5 per year. That is for my state, others may be different.


Merchanting & Business? You mean a statute for auctioneering/online auctions? I couldn't find much really.

kjsmith84 11-05-2009 04:35 PM

Quote:

Originally Posted by Blaine0002 (Post 1903796)
just posting a preview if anyone is interested...

how long until its done?

having alot of issues with this one -

for some reason if you use the "buy it now" before the "reserved" amount is hit; it says you didnt win it with a pm?? and if you do win it it send the winner your address when its a paypal- shouldnt it send a paypal request?

AfterWorldForum 11-05-2009 04:56 PM

One more feature I'd love to see implemented in the next version: The ability to exclude individual members from using the auctioning system.

Thanks :tiphat:

kjsmith84 11-05-2009 05:18 PM

also have an issue with only being able to upload one picture. how do i fix this?

kjsmith84 11-05-2009 06:07 PM

Quote:

Originally Posted by AfterWorldForum (Post 1899861)
Awesone news. If you're looking to handle the BuyOut options, I think I came up with a way that does part of the work.

in vbay_info_View, find:

Code:

<a href="vbay.php?do=buy&id={$item[id]}">$vbphrase[vbay_auction_buy_it_now_bang]</a>
Replace with:
Code:

<a href="vbay.php?do=buy&id={$item[id]}&buyout=true">$vbphrase[vbay_auction_buy_it_now_bang]</a>
In vbay_buy_confirm, replace:

Code:

<form action="vbay.php?$session[sessionurl]do=dobuy" method='post' enctype='multipart/form-data'>
<input type="hidden" name="id" value="{$vbulletin->GPC['id']}">

with:

Code:

<form action="vbay.php?$session[sessionurl]do=dobuy" method='post' enctype='multipart/form-data'>
<input type="hidden" name="id" value="{$vbulletin->GPC['id']}">
<input type="hidden" name="buyout" value="{$vbulletin->GPC['buyout']}">

In vBay.php, under BUYOUT, replace:

Code:

      $vbulletin->input->clean_array_gpc('p', array('id' => TYPE_INT));
with:

Code:

      $vbulletin->input->clean_array_gpc('p', array('id' => TYPE_INT, 'buyout' => TYPE_BOOL));
    $buyout = $vbulletin->GPC['buyout'];

and

Code:

      } else {
          $db->query("update " . TABLE_PREFIX . "vbay_items SET highbidder = " . $vbulletin->userinfo['userid'] . ", bids = bids+'1', completetime = '0' WHERE id=" . $vbulletin->GPC['id'] . "");
          $vbulletin->url = "vbay.php?do=item&viewitem=" . $vbulletin->GPC['id'] . $vbulletin->session->vars['sessionurl'] . "";
          eval(print_standard_redirect('vbay_buy_success', true, true));
      }

with

Code:

                        if ($vbulletin->GPC['buyout']) {
                  $db->query("update " . TABLE_PREFIX . "vbay_items SET highbidder = " . $vbulletin->userinfo['userid'] . ", price=buyitnowprice, bids = bids+'1', completetime = '0' WHERE id=" . $vbulletin->GPC['id'] . "");
                  $vbulletin->url = "vbay.php?do=item&viewitem=" . $vbulletin->GPC['id'] . $vbulletin->session->vars['sessionurl'] . "";
                  eval(print_standard_redirect('vbay_buy_success', true, true));
                    } else {
                  $db->query("update " . TABLE_PREFIX . "vbay_items SET highbidder = " . $vbulletin->userinfo['userid'] . ", bids = bids+'1', completetime = '0' WHERE id=" . $vbulletin->GPC['id'] . "");
                  $vbulletin->url = "vbay.php?do=item&viewitem=" . $vbulletin->GPC['id'] . $vbulletin->session->vars['sessionurl'] . "";
                  eval(print_standard_redirect('vbay_buy_success', true, true));
      }

Which ensures the price will equal the buyout price. Crude, but it works. I'm playing with the idea of adding another field to the database called BuyOutUsed for items bought with buyout.

Left would be automatically closing an auction as soon as the regular bidding price equals the buyout price.




were do i find ---In vBay.php, under BUYOUT ???

kjsmith84 11-05-2009 06:35 PM

Quote:

Originally Posted by kjsmith84 (Post 1910661)
were do i find ---In vBay.php, under BUYOUT ???

ok i did the changes and now i have an issue?

Parse error: syntax error, unexpected $end in /home/******/public_html/forums/vbay.php on line 857

what is this??

lycheepassion 11-08-2009 01:37 AM

can anyone tell me how to link this or do I just set up a forum for it?

lycheepassion 11-08-2009 01:46 AM

Quote:

Originally Posted by Dabbi (Post 1527106)
Has the ability to add pictures been resolved yet? I just uploaded this to my test vb and there's nothing where there normally is to add pictures like my members can in posts.

If I missed the info elsewhere I apologize but I did try search and all I could find is that it was coming out soon and that was quite a while ago now.

ETA:


Hi, there may be an easier way (I'm still learning this stuff) but I found it this way:
Languages & phrases > Search phrases > Search for: vbay_main
FWIW I checked "Phrase Text and Phrase Variable Name".. you can edit the words to what you want from there. :)


What do I say on the main page? What does the trader rep mean ? do I need to install itrader? thansk!1

lycheepassion 11-08-2009 03:42 AM

Quote:

Originally Posted by Blaine0002 (Post 1825326)
the next version will have everything integrated into a thread system, so people would be able to reply to auctions just like they were able to reply to a thread.


is this out yet or did I not install right/ can someone help me? thanks

TheInsaneManiac 11-08-2009 01:43 PM

Quote:

Originally Posted by lycheepassion (Post 1911512)
is this out yet or did I not install right/ can someone help me? thanks

Probably not, since the last update was a year ago...

AfterWorldForum 11-08-2009 04:14 PM

One more requested feature: D

How about the ability to assing a maximum number of auctions allowed at a single time on a per-usergroup basis?

lycheepassion 11-08-2009 06:08 PM

Quote:

Originally Posted by TheInsaneManiac (Post 1911624)
Probably not, since the last update was a year ago...

Ok thanks so there is no thread integration?

MGP_Tech 11-11-2009 04:01 PM

There really hasn't been much said about this mod working with later versions of vbulletin... anyone using it with the 3.8.x series? Can I get a confirm on it working or not working? Thanks!

AfterWorldForum 11-12-2009 04:28 PM

Quote:

Originally Posted by camarilladee (Post 1912764)
There really hasn't been much said about this mod working with later versions of vbulletin... anyone using it with the 3.8.x series? Can I get a confirm on it working or not working? Thanks!

I use it on 3.8.4, and without trouble.

The coder expressed he does not have money to upgrade to VB4, so he most likely will not be porting the mod. Version 2.0 is due to be released soon, though.

fenildf 11-19-2009 07:36 AM

any news on the VBAY?


Quote:

Originally Posted by Blaine0002 (Post 1844040)
I have not seen anyone with this issue. The new version of vbay is almost finished, so I would suggest waiting for this!


farsgsm 11-20-2009 10:46 AM

how to make categories, plz
someone help me.

AfterWorldForum 11-20-2009 05:27 PM

Quote:

Originally Posted by farsgsm (Post 1917670)
how to make categories, plz
someone help me.

Admin CP -> VBay Settings -> Add categories

sv2bnv 11-27-2009 06:35 PM

When will the new version be available?

Hornstar 12-07-2009 10:11 PM

Is this what digitalpoint are using on their buy and sell forum? or did they customize this or are they using something unique?

sv2bnv 12-22-2009 04:57 AM

When will the new version be available?

morrow 01-06-2010 09:04 PM

Just installed on 3.8.4 and so far, so good!

lille L 01-23-2010 01:39 PM

Turns this the hole forum into vbay? Or is it possible to use just some of the forumcategories to vbay function?

zombietom 01-23-2010 02:03 PM

no it does not turn the whole forum into vbay.

Digital Jedi 01-24-2010 08:01 AM

Quote:

Originally Posted by lille L (Post 1964350)
Turns this the hole forum into vbay? Or is it possible to use just some of the forumcategories to vbay function?

It has it's own section unrelated to the forums.

Eruantien 03-19-2010 09:18 PM

I would love to see someone update this for 4.x

brittca 03-23-2010 04:40 PM

Has Anyone created a Mod so that image THUMBNAILS show up to the left of each auction? Similar to on ebay??

any help would be GREATLY appreciated!

Olgi 05-01-2010 11:54 PM

Any updates on this Blaine!?

Most of us are / will be selling digital products so the shipping info is not needed (so there should be an option on admin panel to disable that)

Also, instead of paying for a membership, I would like the option where members pay for every single listing, can that be done? Can it be also integrated with vBCredits?

I could also pay you if you have some time for this!

Regards

appsfinder 06-13-2010 07:54 AM

Hi how do i set currency! it shows in $ not £ please can you help?

appsfinder 06-13-2010 09:23 AM

please can you help theres no Description menu also cannot edit aution Description?

promoprompt 06-14-2010 05:36 PM

Hello,

is this Mod/add also for VB4.0.3 updated?

Is this still alive? :)

I hope so.

Katman 06-23-2010 04:36 PM

I installed this on my 3.8.4 vB and it worked great for 3 auctions I recently posted. The problem is now that the auctions are over where did all the information about the auctions go? There is nothing listed that shows I even had an auction posted, no email to me telling who the winner was and for how much, nothing. Can anyone help?

RickyG 07-12-2010 03:23 PM

I was using this on a VB3.X site and loved it. Now my new site is 4.X Reading here it doesnt look possible to run on VB4,,,,is this correct?

MagicThemeParks 07-18-2010 05:48 PM

I was thinking of using vBay as a feature of a site that I'd like to develop. Only problem is, does it work without a hitch?

I noticed a few issues as I read through some of the recent pages. Are there any potential 'deal breakers' for those using this?

mimi123 07-27-2010 02:40 PM

o man !! none for vb 4.0 ? :(

CyBrSuFr 09-04-2010 03:37 PM

Installed on VB 3.8.5 and only had one error that was quickly resolved with the following edit to Vbay.php on Line 130 right after the SELECT * FROM there is an extra ' before the " that needs to be removed for the link to the category to work correctly.

Code:

$get_all_items = $db->query("SELECT * FROM `" . TABLE_PREFIX . "vbay_items` where completed='0' AND catid = '" . $vbulletin->GPC['showcat'] . "' " . $sort . " LIMIT " . ($limitlower - 1) . ", " . $vbulletin->GPC['max'] . "");
Code:

$get_all_items = $db->query("SELECT * FROM " . TABLE_PREFIX . "vbay_items` where completed='0' AND catid = '" . $vbulletin->GPC['showcat'] . "' " . $sort . " LIMIT " . ($limitlower - 1) . ", " . $vbulletin->GPC['max'] . "");

crashys 09-10-2010 09:33 AM

VB4 version will make this the mod of the month!


All times are GMT. The time now is 03:26 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.02912 seconds
  • Memory Usage 1,834KB
  • 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
  • (10)bbcode_code_printable
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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