Hi. These pages are filled with updates for PHPauction GPL script versions and news about
The PHPAuction GPL 2.51 Enhanced script is available here. |
|
Paths problem. Q: I have followed steps in 1read_me...txt then have i run auction/admin/install.php In install4.php (2 errors - can't find config.inc.php + password.inc.php) i have tryed to set up it, but nothing has worked for me. -=-=- A: Sounds like you have your paths set wrong. PHPauction works best in a folder right off your webroot called /auction/ Check your config files and make sure the paths match the paths on your server. ![]() Script showing $0.00 bids problem (version 2.51) There is a problem with double quotes in 2.51 that causes some bids to show as $0.00 even when they are higher. The problem is on line number 22 in the file bid.php. Change the following code: $query = "select bid from PHPAUCTION_bids where auction=\"$id\""; should be $query = "select bid from PHPAUCTION_bids where auction='$id' "; ![]() How can I require users to log in before viewing the auctions? (version 2.51) If you would like to require users to log in before viewing your auctions, insert the following code into index.php at the appropriate place: #// Force user login if(!isset($_SESSION["PHPAUCTION_LOGGED_IN"])) { $_SESSION["REDIRECT_AFTER_LOGIN"]= "index.php"; Header("Location: user_login.php"); exit; } ![]() Install problems and register_globals (version 2.51) If you try to install and get the following error message followed by some line numbers: "Warning fopen(config.inc.tmp) [function.fopen] failed to open stream. No such file or directory in /home/thatsmy1/public_html/austion/admin/install4.php" make sure that "register_globals" is set to ON in php.ini. Sometimes you can add the line register_globals=on to your .htaccess file and alter the setting yourself, otherwise you may need to contact your host. ![]() Pages 1 |