I dont have 1.3.7 (and dont really want to dig it up) so I dont really have any way to determine if it will work.
I did find the $1 minimum problem. I am working on some other stuff so I am not ready to publish a new package, but the code fix is easy if you want to just edit the file....
BACKUP BACKUP!!!!
../includes/modules/pages/product_auction_info/header_php.php
Replace this line (line #30)
$auction_current_bid = ($auction_current_bid >= 1) ? $auction_current_bid : 1;
with this:
$auction_current_bid = ($auction_current_bid >= 0) ? $auction_current_bid : 0.01;
notice the "0" and the penny - The logic says "IF the current auction bid is greater than or equal to 0 (which is actually silly, but anyway), then return the current bid. Otherwise, return a penny. This sets the minimum price of any bid (including a raise) to 1 cent. you can change it to ten cents if you want (replace 0.01 with 0.10).
That will fix the $1 problem.
The emails do indeed seem to work on my machine. I do get outbid notices. I think that the YOU WIN notice will only appear if someone views the auction page after the closing time. (hence the cron job comment earlier).
I think that an initial bid email is never sent out. I will look into that (only winners, losers and outbids). I am also working on logging the emails which isnt happening even though there is a DB table for it.
Anyway... as time allows.....
Cheers!
AHB


Reply With Quote

