Mega Font Download$9.99
Related Searches:Every Auction V101 everyauctionv101.zip Every Free Every Auction Every Auction Download Every V101 V101 Auction
Name: everyauctionv101 Size: 14.8 KB Type: Compressed (zipped) Folder Date modified: 6/26/2002 9:51 AM Date created: 8/19/2008 6:08 AM Date accessed: 8/19/2008 6:08 AM
E v e r y A u c t i o n 1.01 _____________________________ The Freeware Auction Solution
-----------------------------------------------------------------EULA: READ THIS CAREFULLY BEFORE INSTALLING OR USING EVERYAUCTION-----------------------------------------------------------------
EveryAuction is NOT shareware, GPL, or public domain...
You MAY NOT redistribute, give away, rent, lease, share or sellthis software. When you download or receive the files from avalid source (either http://www.drizware.com/ or an authorizedredistributor), you are granted permission to use a single copyof the script(s) free of charge on your own machine or serverONLY. You may modify the software for your own use, but you maynot redistribute modified versions of the software. Any otheruse of this software is in violation of the license agreement.
EveryAuction is distributed AS-IS, with no guarantees orwarrantees of any kind.
If you do not agree with this license agreement, please deletethis software immediately. By using the software in thisarchive, you agree to accept all terms of this license agreement.If you feel you have received this software from an unauthorizedsource, please contact sales@drizware.com immediately.
By popular request, here are some FAQs about EverySoft'spolicies and license agreement:
1. I am a site developer. May I install the software for myclients?
You may install the software for a client as long as the clienthas approached you and he/she has downloaded the softwarehim or herself from http://www.drizware.com/. You also mustmake it clear to the client that the software is freeware and youMAY NOT charge the client for the software. You must be surethe client has this readme file and all source code.
2. May I sell web sites with EveryAuction pre-installed oradvertise auction installation on my site?
No. That is in violation of the freeware license agreement.Contact us if you are interested in purchasing a redistributionlicense.
3. May I sell the script to my clients?
4. May I mirror the script (post it for download somewhere)?
No. EveryAuction can be downloaded at http://www.drizware.com/
5. May I modify the script?
Yes, but only for your own use on your own site.
6. May I remove the "powered by EveryAuction" link?
Please do not remove the link unless you give us credit and alink elsewhere on your site. Links from auction sites are theonly way for us to keep EveryAuction freeware.
-----------------------------------------------------------------
EveryAuction (c)1998-99 EverySoftREDISTRIBUTION IS PROHIBITED
===QUICK START (UNIX)===
1. Make a directory that is given write permissions.2. Open the script with a plain text editor and edit thefirst line of the configuration section to point to thedirectory you just made. Also, edit the first line of the scriptto point to the perl executable on your system.3. Put auction.cgi in your cgi-bin dir and give it executablepermissions.
===QUICK START (Windows, Mac, Other)===
1. Make a new folder.2. Open the script with a plain text editor (notepad, etc.)and edit the first line of the configuration section topoint to the directory you just made. Use forward slashes likein the example. (ie: $basepath = '/auction/'; if it is in C:/auction/)3. Put auction.cgi in your cgi-bin or cgi-shl dir. Read your serverdocs about how to use perl scripts. You may have to rename it toauction.pl.
===CONTENTS===
I. First Things FirstII. InstallationIII. ConfigurationIV. FAQ/TroubleshootingV. SupportVI. Version History
===I. First Things First===
A legal copy of this script will always be available free of chargeat http://www.drizware.com/ or the author's current web site.
If anyone is ever caught trying to sell this script or a modificationof this script, immediate legal action will be taken. Perl is free,and so is this script.
===II. Installation===
1. Make a base directory somewhere on your server. It should not beweb-accessible, but the script should be able to read and write datato and from the directory.
UNIX:mkdir auctionchmod a+rwx auction (OR chmod 777 auction)
WINDOWS95/NT:File->New->Folder
2. Install Perl if it is not already installed. Most ISPs/IPPs alreadyhave Perl installed. Perl is also included with most flavors of UNIX.You can also download Perl free of charge.
UNIX:http://www.drizware.com/
WINDOWS95/NT:http://www.drizware.com/ (get Perl for Win32)
3. Put auction.cgi in your CGI-BIN directory. Be sure it is executable.
UNIX ONLY:chmod a+rx auction.cgi (OR chmod 755 auction.cgi)
4. Configure the script to run like you want it to! (see next section)
===III. Configuration===
Line 1: This should point to your Perl executable.
UNIX EXAMPLE:#!/usr/bin/perl
WINDOWS95/NT EXAMPLE:#!c:/perl/bin/perl
Line 77: This should point to the base directory (the one you justmade). It must be an absolute or relative path. Be sure to includethe trailing slash.
UNIX EXAMPLE:$basepath = '/home/hahnfld/auction/';
WINDOWS95/NT EXAMPLE:$basepath = 'c:/auction/';
Line 99: List your categories here. Follow the examples. Be sureit is in the correct format.
All other lines in the configuration section are optional and heavilycommented. If you want e-mail notifications to work properly, youmust edit line 117 and line 128.
===IV. FAQ/Troubleshooting===
Q. My users keep getting the error message: Something is wrong with the NEWREG field. Hit back to try again!
-or-
Something is wrong with the NEWREG field. Hit back to try again!
A. This is usually caused when a user is trying to bid on anitem or post an item and the server permissions are not setcorrectly. Be sure the folder you made has write permissionsand the path is correct in the script. You also should notput any files or directories in the folder you created. Thescript will create them automatically.
Q. Mail is not sent to the user when the auction closes. Why?
A. This is probably caused by a bad smtp server definition.Be sure line 117 of the script points the IP ADDRESS of a validSMTP server. If it still doesn't work, visit the home page anddownload the sendmail add-on.
Q. How do I make new/different categories?
A. Edit line 54 of the script to point to new categories.The directories listed will be automatically created by thescript. Each category should be listed like:
[dir] => [category name],
Q. How do I delete entries from the auction before the auctioncloses?
A. The system administrator may remove items from the auctionat any time. Just use the URL:
auction.cgi?[category]&[number]&r&[adminpass]
The easiest way to do this is to go to the item you want toremove and append "&r&[adminpass]" to the end of the URL.
The administrator password is defined on line 109 of the script.If it is not set, anyone may remove any item.
Q. Do users need accounts to post a product or place a bid?
A. Maybe... If the $regdir variable is defined in the configurationsection then users will be required to register. Random passwordswill be sent via e-mail and user data will be stored in the regdiryou specify. If $regdir is undefined, then users will be presentedwith the "classic" interface where registration is not required.
Q. Are closed items retained on the server?
A. Maybe... When an item closes, e-mail is sent to both the winningbidder and the seller explaining the results. If a closed itemdirectory is specified, the item will be copied to that directoryupon close, otherwise it will just be deleted. Users can view closeditems using the closed item viewer utility included.
Q. When is e-mail sent out?
A. E-Mail is sent out when auctions close. If $scripturl is defined,then outbid e-mails will also be sent. If $regdir is defined, userswill receive passwords via e-mail when they register.
Q. I clicked on an item and it displayed the list of items orI clicked on a category and it displayed a list of categories.
A. When the script is executed, it automatically determineswhether the item/category exists. If it does not, it displaysthe list. Maybe the item you tried to access was closed orthe item was deleted? Maybe you didn't give your basedirectory write permissions so the script could create itsdirectories?
Q. How does the command line for the script work?
A. When called from a web browser, the script can be calledwith many different options. They are listed in the headerof the script.
Q. I do not want users to be able to post new items, but Iwant to be able to. Is this possible?
A. Yes, set $newokay = 0 (or leave it undefined) and the linkto post a new item will not be visible. Users who are supposedto post an item may post items using the command line:
http://www.drizware.com/cgi-bin/auction.cgi?1&1&n
Q. What is file locking, and how can I enable/disable it?
In version 1.01, file locking is included to eliminate therisk of data corruption on high-traffic sites. If two users tryto post a bid at the EXACT SAME TIME, file locking will delaythe second poster until the first poster is finished posting. Filelocking should be enabled unless your server does not support it.If you get weird flock errors or your script crashes, try setting$flock = 0. If it complains about not finding a flock definition,you should delete line 966 (use Fcntl...) and change line 967 to say:flock (NEWITEM, 2);
===V. Support===
Free support is available via our online forums located at:
http://www.drizware.com/
Commercial support, installation, and customization services arealso available at:
===VI. Version History===
This is EveryAuction version 1.01.
Version 1.01 - Fixed reposting (quotes bug), fixed e-mailand closed item viewing for items that did not meet the reserveprice, minor cosmetic changes (corrected link to EveryAuctionhome page, added site name to config section).
Version 1.0 - First non-beta release. Added numerous newfeatures and a new look. EveryAuction is now professional, reliableauction software being used by over 50 Internet auction sites.
! Visit CONFLICT2K.COM.URLauction.cgireadme.txt
Price: $0.00