FlightBookingSystem_V1.0

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.

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.

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.

AFAIK my cron is working good. All other calculations are done correctly, signatures generated, etc.

I believe have the latest version. I downloaded it from Github yesterday using this link. https://github.com/p…hive/master.zip

I have also used the file provided to create the database. flightbookingsystem_location There’s nothing in it though. Only the structure.

Any Solutions?

Can you give me a login to your website?

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?

An FTP would be better. PM me please.

ok.

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.

And how about Flight Booking v2? Any progress?

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

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

Is there a way to hide the disabled flights from the search results?

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;
}