I am running 744. Some of my charters are still not showing up. I have tried deactivating and reactivating, didn’t work. And I checked the day of the week also. This is really messing up my operation as many of my charters are tied together. Would some of you other VA’s have a look and see if your schedules are doing this?
I have noticed that some of my schedules are missing too.
This may be your problem:
REASON: One of your pilots has bid on the flight.
From the changelog:
NEW: Added option to allow only one bid per schedule, and hide schedule
To fix:
Go to core/templates/schedule_results.tpl and open it up
You should see the following code near the top:
This will skip over a schedule if it's been bid on
This only runs if the below setting is enabled
If you don't want it to skip, then comment out
this code below by adding // in front of each
line until the END DISABLE SCHEDULE comment below
If you do that, and want to show some text when
it's been bid on, see the comment below
*/
if(Config::Get('DISABLE_SCHED_ON_BID') == true && $route->bidid != 0)
{
continue;
}
Make the true into a false
I have been having that problem with my VA and soon I will be removing the entire bidding function,
Hope this helps
Mitchell Williamson
Australian Frontier VA Administrator
Mitchell, you don’t have to do all that. Simply, in the local.config.php, change the line:
Config::Set('DISABLE_SCHED_ON_BID', true);
To false. If it’s not there, just add it (it’s in the app.config.php). My comment text there was wrong, I’m not sure why I didn’t say to just change the line in the config. My bad.
No one has bid on the flights, I checked all that.
Ok, adding that line in the local.config.php seemed to fix it. Thanks nabeel.
That worked , thank you
It’s ok now?