Parkho
December 20, 2012, 6:18am
21
Well I get,
“No Aircraft Available”
and
“No Airports Available.”
Transfer doesn’t work either.
Do i need to actually do a flight normally for it to work or something?
Make sure you have the table created in your DB. Also I think the table name has been changed. and NO you don’t need an actual flight to be able to transfer. One more thing, If you have the old version, make sure you get the new modified V1.0 from Github, it has changed a lot.
Make sure you have the table created in your DB. Also I think the table name has been changed. and NO you don’t need an actual flight to be able to transfer. One more thing, If you have the old version, make sure you get the new modified V1.0 from Github, it has changed a lot.
I believe have the latest version. I downloaded it from Github yesterday using this link. https://github.com/parkho/FlightBookingSystem_V1.0/archive/master.zip
I have also used the file provided to create the database. flightbookingsystem_location There’s nothing in it though. Only the structure.
loplo
December 24, 2012, 6:54pm
23
Is this addon conflicting anyhow with the local.config.php
I have
Config::Set('LOAD_FACTOR', '70');
and
Config::Set('BID_EXPIRE_TIME', '3');
Both being ignored. I’m getting LF of 99-100% and the bids wont expire.
Parkho
December 25, 2012, 7:29am
24
You have to set a cron job for bids to expire and FBS_V1.0 has nothing to do with local.config.php except for the jump seat.
loplo
December 25, 2012, 8:34am
25
AFAIK my cron is working good. All other calculations are done correctly, signatures generated, etc.
Parkho
December 25, 2012, 9:09am
27
Can you give me a login to your website?
pavul0n
December 25, 2012, 12:28pm
28
Any chance to change Aircraft name in search form to each registration of aircraft available on current airport?
you want a login to my ftp or cpanel?
Parkho
December 25, 2012, 5:15pm
30
An FTP would be better. PM me please.
Parkho
December 27, 2012, 6:39am
32
Any chance to change Aircraft name in search form to each registration of aircraft available on current airport?
You can change the aircraft name to registration in search form but the aircraft location is not doable on this module.
pavul0n
December 31, 2012, 9:27am
33
And how about Flight Booking v2? Any progress?
Parkho
December 31, 2012, 9:12pm
34
I don’t think I’ll be spending time on v2.0 but I will on v3.0
And how things are going with 3.0?
1 Like
loplo
January 23, 2013, 8:56pm
36
Parkho, is there a way to disable bids on bid?
In the default flight search engine the reserved flights are not shown, but in v1.0 the flights are shown and bidable.
Can someone help me with display them 2 images ? like on screenshot
Parkho!
FBS V3.0 are avaliable for download?
Thanks
loplo
April 24, 2013, 7:31am
39
Is there a way to hide the disabled flights from the search results?
Parkho
April 24, 2013, 8:04am
40
Yes there is. Open schedule results.tpl and right after the “foreach()” loop add the following code:
if($route->disabled == "1") //The $route variable might be something different in your schedule_results.tpl, so make sure of that.
{
continue;
}