mattsmith Posted September 28, 2016 Report Share Posted September 28, 2016 Once i have bid on a flight if i don't fly it , it automatically cancels and i need to bid on it again. Is there a way to stop this? Quote Link to comment Share on other sites More sharing options...
web541 Posted September 29, 2016 Report Share Posted September 29, 2016 Go into admin/maintenance.php and change this if(Config::Get('CLOSE_BIDS_AFTER_EXPIRE') === false) { SchedulesData::deleteExpiredBids(); CronData::set_lastupdate('check_expired_bids'); } To this if(Config::Get('CLOSE_BIDS_AFTER_EXPIRE') === true) { SchedulesData::deleteExpiredBids(); CronData::set_lastupdate('check_expired_bids'); } That should work it you've set the maintenance script to run. If you want to enable it again though, place the following into your local.config.php file # Whether to close any bids after a certain amount of time Config::Set('CLOSE_BIDS_AFTER_EXPIRE', true); Config::Set('BID_EXPIRE_TIME', '48'); # How many hours to hold bids for Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.