need help making auction

2002-01-23 Thread frank crowley

see attached file.


=
frank crowley

__
Do You Yahoo!?
Send FREE video emails in Yahoo! Mail!
http://promo.yahoo.com/videomail/

#!/usr/bin/perl
use vars qw(%config %category %form);
use strict;
#-###
# 
# In accordance with the GPL, this copyright notice MUST remain intact:
#
# EveryAuction Release Version 1.51 (5/13/00)
# Copyright (C) 2000 EverySoft
# Registered with the United States Copyright Office, TX5-186-526
# http://www.everysoft.com/
#
#-###
#
# 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.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#
#-###
#
# Modification Log (please add new entries to bottom):
#
# * 02/2000
#   Matt Hahnfeld ([EMAIL PROTECTED]) - Original Concept and Design
#   Version available from http://www.everysoft.com/
#
# * MM/
#   Name (email) - Modification
#   Availability
#
#-###

#-#
# Configuration Section
# Edit these variables!
local %config;

# The Base Directory.  We need an
# absolute path for the base directory.
# Include the trailing slash.  THIS SHOULD
# NOT BE WEB-ACCESSIBLE!

$config{'basepath'} = '/home/hahnfld/auctiondata/';

# Closed Auction Directory
# This is where closed auction items are stored.
# Leave this blank if you don't want to store
# closed auctions.  It can potentially take
# up quite a bit of disk space.

$config{'closedir'} = 'closed';

# User Registration Directory
# This is where user registrations are stored.
# Leave this blank if you don't want to
# require registration.  It can potentially
# take up quite a bit of disk space.

$config{'regdir'} = 'reg';

# List each directory and its associated
# category name.  These directories should
# be subdirectories of the base directory.

%category = (
computer = 'Computer Hardware and Software',
elec = 'Consumer Electronics',
other = 'Other Junk',
);

# This is the password for deleting auction
# items.

$config{'adminpass'} = 'auction';

# 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)

$config{'mailhost'} = 'localhost';

# This line should be your e-mail address

$config{'admin_address'} = '[EMAIL PROTECTED]';

# 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.

$config{'scripturl'} = 'www.your.host.com';

# This will let you define colors for the
# tables that are generated and the
# other page colors.  The default colors
# create a nice professional look.  Must
# be in hex format.

$config{'colortablehead'} = '#BB';
$config{'colortablebody'} = '#EE';

# Site Name (will appear at the top of each page)

$config{'sitename'} = 'Your Site Name Here';

# You can configure your own header which will
# be appended to the top of each page.

$config{'header'} =EOF;
HTML
HEAD
TITLE$config{'sitename'} - Powered By EveryAuction/TITLE
/HEAD
BODY TEXT=#00 BGCOLOR=#FF LINK=#88 VLINK=#88 ALINK=#88
TABLE WIDTH=100\% BORDER=0TRTD VALIGN=TOP WIDTH=100\%
FONT SIZE=+2$config{'sitename'}/FONT
BR
FONT SIZE=+1Online Auction/FONT
/TDTD VALIGN=TOP ALIGN=LEFT
FORM ACTION=$ENV{'SCRIPT_NAME'} METHOD=POST
INPUT TYPE=TEXT NAME=searchstring
INPUT TYPE=SUBMIT VALUE=Search
INPUT TYPE=HIDDEN NAME=action VALUE=search
FONT SIZE=-2INPUT TYPE=RADIO NAME=searchtype VALUE=keyword 
CHECKEDkeyword INPUT TYPE=RADIO NAME=searchtype VALUE=usernameusername /FONT
/FORM
/TD/TR/TABLE
P
EOF

# You can configure your own footer which will
# be appended to the bottom of each page.
# Although 

Re: need help making auction

2002-01-23 Thread Melvin Smith

At 01:39 PM 1/23/2002 -0800, frank crowley wrote:
see attached file.


=
frank crowley

What is it that you wanted us to see?

-Melvin






Re: need help making auction

2002-01-23 Thread Casey West

On Wed, Jan 23, 2002 at 01:39:09PM -0800, frank crowley wrote:
:
:see attached file.

Hi frank,

This mailing list is not designed to help folks get their Perl 5
programs working.  EverySoft, the company that built the program you
attatched has their own online forum for helping you.

  Home Page:http://www.everysoft.com/frames.html
  Online Forum: http://209.15.166.219/cgi-bin/forum.pl

Please go to their forum and ask them to help you, I'm sure they would
be more than happy to.  No further response is necessary.

  Casey West

-- 
Technology makes it possible for people to gain control over
everything, except over technology. 
-- John Tudor



Re: need help making auction

2002-01-23 Thread Melvin Smith

At 01:43 PM 1/23/2002 -0800, you wrote:
i need help on making it into an auction that will
work.

Ok I thought so.

You might try [EMAIL PROTECTED] for some beginner
tips but I doubt you want to submit a whole script, maybe
rephrase your stuff into specific problems you are having.

Good luck,

-Melvin