#======================================================== # MakeBid Auction Software Installation Instructions #======================================================== # Setting up a percentage fee based off high winning bid #======================================================== The closing percentage fee are setup in the close_percents.bill file in the accounting dir. In this file you will see the below example you can have as many lines as needed or just one line: 0.020:::0.00:::150.99 0.018:::151.00:::250.99 0.015:::251.00:::500.99 0.013:::501.00:::99999999.99 percentage from $ to $ 0.020 :::0.00 :::150.99 Then in the config.pl file in your auction dir you need to find this line below and turn it 'on' ############################## # Auction closing percentage fee # based off high winning bid # off or on $config{'percentageclose'} = 'on'; =================================================================== You have to create all the html for any closing percentage fees the script can not do this for you, in the fees.pl file and in the auction.pl file under the new and new2 subs find these lines:
Insertion Fees
Now just past some thing like this under the above found lines:
Commissions
Closing percentage
Closing percentage commissions based of the winning bid. no commission if not sold! 0.00 to 150.99 = 2.0%
151.00 to 250.99 = 1.80%
251.00 to 500.99 = 1.5%
501.00 to 999999.99 = 1.3%