Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
VBay! Transform your vbulletin into an auctionhouse! Details »»
VBay! Transform your vbulletin into an auctionhouse!
Version: 1.1.10, by Blaine0002 Blaine0002 is offline
Developer Last Online: Jul 2018 Show Printable Version Email this Page

Category: Major Additions - Version: 3.6.8 Rating:
Released: 11-25-2006 Last Update: 06-16-2014 Installs: 524
DB Changes Uses Plugins Template Edits
Additional Files Translations  
No support by the author.

VBay.

This will add an auction section to your bulletin!

If you want to donate to me click the link over there ---------------------->

I am open to suggestions, bugs, comments, insults, and anything else you might say to me at the time :P

To do list:
*use forums/categories/subforums for your auctionhouse.
high bidder userid -> username
*" in description cuts the description at that point
add buyer name
fix pm formatting
add more currencies
intergrate with trader ratings
add paypal api
bidder usergroups
*hot auctions on main < - Available with addon (wont be packaged in vbay)
admin editing auctions
*set up for use with forum commenting.
*fix amount of days an auction can be posted (more than 2 char)
ability to prune old auctions
make sure buy it now is using buy it now price, not bid.
allow admin ability to specify bid/buyitnow/both overrides.

* = Completed.

Features:
Full BBCode support.
Specification of everything, Money Auction length ECT.
Image uploader for auctions.
Closed auction section.
3 auction types, bid, buy it now, or both.


To install
Upload files, and import product as usual
Make a new usergroup and call it the sellers usergroup, do what you want with this group (allow people to request addition maybe?)
Go to vbulletin options and into vbay, set the usergroup id of the sellers group you just made.


To upgrade
re upload all files
import new product
REVERT YOUR TEMPLATES

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #802  
Old 10-18-2007, 03:07 PM
Blaine0002's Avatar
Blaine0002 Blaine0002 is offline
 
Join Date: Jul 2003
Location: Wisconsin.
Posts: 1,350
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

By the way, ive been looking for a way to split payments via paypal and have found that it is currently not possible.

How do you guys suggest this work?
Reply With Quote
  #803  
Old 10-19-2007, 12:54 PM
micheal332001 micheal332001 is offline
 
Join Date: Apr 2004
Posts: 1,112
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi blaine0002

You was looking for a way to find out the diffarence from 2 dates to show how many days left on your arction. well try this out

PHP Code:
function daysDiff($y1$m1$d1) {
$y2 date("Y");
$m2 date("m");
$d2 date("d");

if (
mktime(0,0,0,$m1,$d1,$y1) - mktime(0,0,0,date("m"),date("d"),date("Y"))<0) {
$diff "expiried";
} else {
$y $y1 $y2;
$m $m1 $m2;
$d $d1 $d2;
$daysInMonth date("t",$m1);
if (
$d<0) {$m--;$d=$d+$daysInMonth;}
if (
$m<0) {$y--;$m=$m+12;}

if (
$y>0$diff .= $y=="1 year " "$y years ";
if (
$m>0$diff .= $m==1"1 month and " "$m months and ";
if (
$d>0$diff .= $d=="1 day " "$d days ";
$diff .= " remaining";
}
return 
$diff;
}
print 
"<br>";
print 
daysDiff(2007,12,25); 
Or you could try this out

PHP Code:
$today1 strtotime ('now');
$today=date("d.m.Y",$today1);
$f_date1 mktime(0,0,0,12,24,2007);
$f_date=date("d.m.Y",$f_date1);
$difference intval(($f_date1 $today1)/86400+1);

//output

echo"Today is : $today<br>";
echo
"Your date : $f_date<br>";
echo
"Days To Go Before Christmas : $difference"
Hope this helps you out
Reply With Quote
  #804  
Old 10-19-2007, 06:08 PM
Blaine0002's Avatar
Blaine0002 Blaine0002 is offline
 
Join Date: Jul 2003
Location: Wisconsin.
Posts: 1,350
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hehe i found that out a LONG time ago
But thanks for helping


Good to see you again though, havent seen you in a long time.
Reply With Quote
  #805  
Old 10-19-2007, 06:16 PM
Blaine0002's Avatar
Blaine0002 Blaine0002 is offline
 
Join Date: Jul 2003
Location: Wisconsin.
Posts: 1,350
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The next version will probably be a bugfix version.
The version after im thinking will include itrader integration and more features and MIGHT be commercial if i can get the correct resources together.
Reply With Quote
  #806  
Old 10-20-2007, 01:05 PM
micheal332001 micheal332001 is offline
 
Join Date: Apr 2004
Posts: 1,112
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Blaine0002 View Post
Hehe i found that out a LONG time ago
But thanks for helping


Good to see you again though, havent seen you in a long time.
Hi there

I have not been any where just very busy sorting out some new scripts.
but they are commercial scripts with all the bells and whistls on
have remade the league system making a new lottery system new jokes system and so on.

Adding alot of new things in to all the scripts i have made before.
Glad to see you again m8 and if you need help with any thing feel free to contact me.
Reply With Quote
  #807  
Old 10-20-2007, 01:54 PM
acorndomains.co acorndomains.co is offline
 
Join Date: Mar 2005
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by acorndomains.co View Post
Did anyone find ways to do the following:

Show a list of ending soon auctions
Show a list of recently added auctions
Remove the need to post your address
Allow more than 1 currency
Allow more than 1 payment method
Take a slice of the action by having a percentage of all sales sent to your PayPal account

It's on my site here:
www.acorndomains.co.uk/vbay.php

Many thanks
Any ideas?
Reply With Quote
  #808  
Old 10-20-2007, 11:01 PM
dirtycrow dirtycrow is offline
 
Join Date: Apr 2004
Posts: 350
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i tried to uninstall and reinstall vbay and i keep on getting this error

Quote:
Database error in vBulletin 3.6.8:

Invalid SQL:
ALTER TABLE user ADD COLUMN `vbayaddress` text NOT NULL;

MySQL Error : Duplicate column name 'vbayaddress'
Error Number : 1060
Date : Saturday, October 20th 2007 @ 07:58:29 PM
Script : http://forums.mysite.com/admincp/plu...=productimport
Referrer : http://forums.mysite..com/admincp/pl...?do=productadd
IP Address : 72.224.77.159
Username : admin
Classname : vb_database
i keep on trying to drop the tables, but the error persists.
Reply With Quote
  #809  
Old 10-20-2007, 11:59 PM
Blaine0002's Avatar
Blaine0002 Blaine0002 is offline
 
Join Date: Jul 2003
Location: Wisconsin.
Posts: 1,350
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

you need to drop the tables, then go into the user table and drop the vbayaddress row

sorry about the problems ill see if i can fix them in the next update.
Reply With Quote
  #810  
Old 10-21-2007, 12:12 AM
dirtycrow dirtycrow is offline
 
Join Date: Apr 2004
Posts: 350
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Blaine0002 View Post
you need to drop the tables, then go into the user table and drop the vbayaddress row

sorry about the problems ill see if i can fix them in the next update.
worked like a charm, but now i get
Quote:
Warning: Invalid argument supplied for foreach() in /vbay.php on line 205
at the top of the page.
Reply With Quote
  #811  
Old 10-21-2007, 02:00 AM
Blaine0002's Avatar
Blaine0002 Blaine0002 is offline
 
Join Date: Jul 2003
Location: Wisconsin.
Posts: 1,350
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

are you using php4 as well?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:23 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.11514 seconds
  • Memory Usage 2,337KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_php
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete