Rocky,
Sorry about the delay in getting back to you on this. You were right. I
was uploading the scripts in binary! I started using Dreamweaver and found
out that if I didn't define the file extensions in one of my configuration
files, they would default to binary during the upload, instead of staying
ASCII. I never realized that this could happen. THANK YOU for the help!
I've been racking my brain for a long time on this (see subject again).
Now, I've gone back to lots of scripts that didn't work before and am able
to get them running flawlessly. I'm a happy camper now!!!!
I can not express how happy I am with the service that I've received from
YOA. If you ever would like any kind of reference or testimonial, I would
be pleased to comment on your superior service. "Above and beyond" would
be
an understatement! Also, I want to thank you for the calendar script. It
was just what I was looking for!
barry@hometownlinx.com
Auction Software
Making New Categories
Edit line 54 of the script to point to new categories. The directories listed will be
automatically created by the script. Each category should be listed like this:
dir ==> 'category name',
So if you wanted to add a category called SHOES to your auction you would add this to the
code
shoes ==> 'Shoes',
If you wanted to add more directories, you would just add them each under the previous one
so they would be formatted like this:
shoes ==> 'Shoes',
computer => 'Computer Hardware and Software',
elec => 'Consumer Electronics',
Deleting Entries From The Auction
Only the auction administrator (you) can remove posted items from the auction. You can
remove these any time before the auction closes by going to the following url:
http://www.yourdomain.com/cgi-bin/auction/auction.cgi?[category]&[number]&r&[adminpass]
The easiest way to remove an item is to go to the item in the auction that you want to
delete and append
&r&[adminpass]
to the end of the url in your browser.
Note:[adminpass] by default is set to the main username of your domain. For example, if
your domain was bob.com the adminpass would be bob so you would just go to the item you
want to delete and type
&r&bob
after it in your URL box of your web brower, then hit
Turing Off The Ability For Your Users To Post Items
Set the following field : $newokay=0 (or leave it undefined) and the link to post a new
item will not be visible. By default, this is turned on and any registered user can post
items to your auction. If this is turned off only the auction administrator (you) can post
items. Use the following url to post:
http://www.yourdomain.com/cgi-bin/auction/auction.cgi?1&1&n
Changing the Auction Site Name
By default when someone visits your auction they will see
"yourdomain.com Online Auction"
You can change this by editing the following field: $sitename = 'domain.com';
So if you want to call your auction: Troys Toy Auction. Change this to read
$sitename = 'Troys Toy Auction';
And then on every page of your site you will see this header automatically placed in the
upper left hand corner.
|