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
and you should see a screen that lists all of your server variables. Go to the line that says:
"SCRIPT_FILENAME" and note what it says.
Look at the "SCRIPT_FILENAME" setting display and it will look something like:
Code:
/home/yoursite/public_html/cgi-bin/auction/info.cgi
3) just cut off the
info.cgi from the end of the "SCRIPT_FILENAME" path you discovered in the previous step and that is your needed filepath. Just paste that info in here:
Code:
$config{'basepath'} = '/home/yoursite/public_html/cgi-bin/auction/';
in your auction.pl script and reupload it to your site's cgi-bin directory, making sure that it is CHMOD'ed to 755.
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
If you get errors then recheck your file path and edits and CHMOD settings. If you still get errors then it is most likely a server issue, as long as you make sure you followed the above steps.
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.