The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vB Easy Auction v1.1 Details »» | |||||||||||||||||||||||||
vB Easy Auction v1.1
by yoyoyoyo Don't let the length of this post fool you... this is actually very simple to setup... I just tend to get long-winded at times... WHAT YOU NEED: * vBulletin Software (for vBulletin integration - the perl files will work fine without vBulletin) * Web server account that has CGI capabilities, and will allow you to run executable cgi files. * Perl 5.6 or better installed on that web server. Contact your server administrator if you are unsure (most servers are running version 5.8.X, so this should not be a problem). If you do not have perl installed then read a little further below about perlsp. * Access to either Sendmail, BLAT, or Sockets mail. No mail can be sent without at least ONE of the above. If you are using either BLAT or Sockets mail (NT users usually), you will also need access to an SMTP mail server. Contact your server administrator to find out if you do. Note: the SMTP mail server needs to allow the user to send mail without requiring them to log into the server. OVERVIEW This will add auctions to your site quickly and easily. Simply edit the auction.pl file and admin.pl files to reflect your server's filepaths, etc., and then upload the files to your server. Create a template and make a couple edits to your vbulletin files to allow navigation to your auctions and that is it! The core of the auction is based on a HEAVILY modified version of EveryAuction Release Version 1.53, and can be further edited or modified to suit your needs, as long as you follow the GNU public license. SEE POST #1 OF THIS THREAD FOR INSTALL INFO, ETC. If members of your site are interested in participating in the auctions then they need to register for them also, since this is not integrated with the vBulletin database for security reasons (since people put actual contact info, etc. in their auction registrations). FEATURES
LEGAL NOTICE Version: vB Easy Auction 1.0 Last update: 07/20/2005 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. modifications and integration with vbulletin released at vbulletin.org by yoyoyoyo No additional rights reserved by the author Matt Hahnfeld DBA EverySoft expressly emphasizes that this program is *NOT* an official release version of EveryAuction, and that this program is *NOT* sanctioned or distributed by Matt Hahnfeld DBA EverySoft. Dieter Werner expressly emphasizes that this program is *NOT* an official release version of eAuction, and that this program is *NOT* sanctioned or distributed by Dieter Werner. vB Easy Auction for vBulletin is not affiliated with eBay or jelsoft or any affiliated companies. The author of this release agrees to these statements absolutely. VERSION 1.1: Added the optional ability to allow users to create their own auction sites using the easy-auction ezauctgn.zip script. PLEASE CLICK INSTALL IF YOU FIND THIS USEFUL! Supporters / CoAuthors Show Your Support
|
Comments |
#22
|
|||
|
|||
I havn't installed -- but from what I have read....would be cool if there could be "auction feedback" for each user.
|
#23
|
|||
|
|||
Quote:
|
#24
|
|||
|
|||
Hmm, While I was reading the installation instructions I got very lost because it says make the chnages necessary in each php file but how do I know the changes that needs to be changed? I am somewhat of a newb to this.
|
#25
|
|||
|
|||
Quote:
|
#26
|
||||
|
||||
Quote:
|
#27
|
||||
|
||||
Quote:
Also use the info.cgi script that came with the file to determine things like the file path, as mentioned in previous posts. After you get the script running you can add the categories you wnat, etc., but for now just try the base script with the default categories, and edit the settings below in the config area of the auction.pl script (the area at the top). These are the main settings you need to worry about in the config area- the rest have been deleted in the example below since they can be left at default to get your script up and running, so be sure to edit those as well. The settings below are only for EXAMPLE, and are not meant to be pasted in to your script, since they are already there!: Code:
# The Base Directory. We need an # absolute path for the base directory. # Include the trailing slash. THIS SHOULD # NOT BE WEB-ACCESSIBLE! # **CHANGE THIS TO SUIT YOUR SERVER** $config{'basepath'} = '/home/yoursite/public_html/cgi-bin/auction/'; # This is the password for deleting auction # items. # **CHANGE THIS FOR SECURITY REASONS** $config{'adminpass'} = 'password'; # You need to assign either a mail program or # a mail host so confirmation e-mails can # be sent out. # Leave one commented and one uncommented. # # YOU NEED EITHER A MAIL PROGRAM # $config{'mailprog'} = '/usr/lib/sendmail -t'; # # OR YOU NEED A MAIL HOST (SMTP) # **CHANGE THIS TO SUIT YOUR SERVER** $config{'mailhost'} = 'localhost'; # This line should be your e-mail address # **CHANGE THIS TO SUIT YOUR SERVER** $config{'admin_address'} = 'admin@yoursite.com'; # This line should point to the URL of # your server. It will be used for sending # "you have been outbid" e-mail. The script # name and auction will be appended to the # end automatically, so DO NOT use a trailing # slash. If you do not want to send outbid # e-mail, leave this blank. # **CHANGE THIS TO SUIT YOUR SERVER** $config{'scripturl'} = 'http://www.yoursite.com'; # URL TO THE "MAIL TO FRIEND" ICON $config{'mfriendicon'} = '<IMG border=0 alt="envelope" height=9 width=13 src="http://yoursite.com/cgi-bin/auction/images/mail.gif">'; |
#28
|
|||
|
|||
what's the average setup time?
|
#29
|
||||
|
||||
Quote:
After you do that you can test the functionality of the auction.pl script without even editing a vbulletin template by just going to the URL for your auction.pl file and checking it out before you go to the bother of editing your ACP index file, etc., to see if it is something you think would be useful, or will work on your server. All you need to do to test the functionality of the script is edit the basepath url to match the full filepath on your server to that file, which is the top setting in the auction.pl config area.. the rest can be edited later after you get it running. 1 file edit and a CHMOD shouldn't take too long |
#30
|
||||
|
||||
QUICK & EASY 1-2-3 INSTRUCTIONS FOR INSTALLING & TESTING:
1) upload the contents of the cgi-bin folder in the file to your cgi-bin directory on your server, creating a subdirectory named 'auction,' and CHMOD that new directory to 755 along with the subdirectories, contents etc.. 2) Go to your web browser and type in: Code:
http://yoursite.com/cgi-bin/auction/info.cgi Code:
/home/yoursite/public_html/cgi-bin/auction/info.cgi Code:
$config{'basepath'} = '/home/yoursite/public_html/cgi-bin/auction/'; If you follow those steps correctly you should see the auction.pl script display properly at: Code:
http://yoursite.com/cgi-bin/auction/auction.pl Once you have the script running you should edit the other areas of the config area, such as site name, etc., but that is all you need to worry about to test the auction.pl script on your site. |
#31
|
|||
|
|||
Something like this based on PHP and MySQL would be awsome
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|