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??


All times are GMT. The time now is 12:12 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.02339 seconds
  • Memory Usage 1,755KB
  • 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
  • (8)bbcode_code_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

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

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