Moderators Parkho Posted December 27, 2012 Moderators Report Posted December 27, 2012 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. Quote
pavul0n Posted December 31, 2012 Report Posted December 31, 2012 And how about Flight Booking v2? Any progress? Quote
Moderators Parkho Posted December 31, 2012 Moderators Report Posted December 31, 2012 I don't think I'll be spending time on v2.0 but I will on v3.0 Quote
pavul0n Posted January 1, 2013 Report Posted January 1, 2013 And how things are going with 3.0? 1 Quote
loplo Posted January 23, 2013 Author Report Posted January 23, 2013 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. Quote
Kapitan Posted March 23, 2013 Report Posted March 23, 2013 Can someone help me with display them 2 images ? like on screenshot Quote
GustavoMinuano Posted April 20, 2013 Report Posted April 20, 2013 Parkho! FBS V3.0 are avaliable for download? Thanks Quote
loplo Posted April 24, 2013 Author Report Posted April 24, 2013 Is there a way to hide the disabled flights from the search results? Quote
Moderators Parkho Posted April 24, 2013 Moderators Report Posted April 24, 2013 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; } Quote
Moderators Parkho Posted April 24, 2013 Moderators Report Posted April 24, 2013 Parkho! FBS V3.0 are avaliable for download? Thanks The FBS V3 is not yet available as it has had some issues for a long time and I need to resolve those issues before I can release it but once it's gonna be available I think I might release it as payware. Quote
loplo Posted April 24, 2013 Author Report Posted April 24, 2013 Before <?php foreach($allroutes as $route) { if(Config::Get('DISABLE_SCHED_ON_BID') == true && $route->bidid != 0) { continue; } if(Config::Get('RESTRICT_AIRCRAFT_RANKS') === true && Auth::LoggedIn()) { if($route->aircraftlevel > Auth::$userinfo->ranklevel) { continue; } } ?> after <?php foreach($allroutes as $route) { if(Config::Get('DISABLE_SCHED_ON_BID') == true && $route->bidid != 0) { continue; } if(Config::Get('RESTRICT_AIRCRAFT_RANKS') === true && Auth::LoggedIn()) { if($route->aircraftlevel > Auth::$userinfo->ranklevel) { continue; } } if($route->disabled == "1") //The $route variable might be something different in your schedule_results.tpl, so make sure of that. { continue; } ?> No impact. Quote
Moderators Parkho Posted April 24, 2013 Moderators Report Posted April 24, 2013 Sorry. I changed the code: if($route->enabled == "0") { continue; } 1 Quote
GustavoMinuano Posted April 24, 2013 Report Posted April 24, 2013 The FBS V3 is not yet available as it has had some issues for a long time and I need to resolve those issues before I can release it but once it's gonna be available I think I might release it as payware. Hmmm no problem. How cost the module? Thanks. Quote
michael Kraan Posted August 5, 2013 Report Posted August 5, 2013 Hi Parko i have a question, when i now on my last location and i search for a new flight, than i see all the flights from the airport. is it possible that the people can search on departure too? example when i search on departure airport that i see only the airports by arrivals where a schedule for is from the departure airport. Let me know! Quote
Marmus Posted August 16, 2013 Report Posted August 16, 2013 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; } Parkho, Greeting! I have a similar question to the one quoted above....but I want to filter out the airlines that are not enabled. As it works right now, the airline listing pull down lists all airline....I have several that are currently disabled and do not want them to show up in this list. Any help would be greatly appreciated. Quote
loplo Posted December 21, 2013 Author Report Posted December 21, 2013 Hey guys, I'm getting the following error after booking a flight. Strict Standards: Non-static method SchedulesData::setBidOnSchedule() should not be called statically in /home/taromvir/public_html/core/common/SchedulesData.class.php on line 853 Anyone with a solution? Quote
SiedlerP Posted January 16, 2014 Report Posted January 16, 2014 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. Hi, i have the same problem i think, i use a jumpseat the location changes, for Example from Frankfurt to Stuttgart, but if i want see the Routes from Stuttgart i allways earn Routes from Frankfurt if i look at location it says Frankfurt but at flightbookingsystem he told me Stuttgart, any solutions for that ??? Quote
Junior Posted June 3, 2014 Report Posted June 3, 2014 im having a problem with this module.. all pilots can bid in any aircraft (the rank restrictions are not working) Quote
Moderators servetas Posted June 3, 2014 Moderators Report Posted June 3, 2014 Open the schedule_results.tpl file and replace this: if(Config::Get('RESTRICT_AIRCRAFT_RANKS') === true && Auth::LoggedIn()) { if($route->aircraftlevel > Auth::$userinfo->ranklevel) { continue; } } with this one: if(Auth::LoggedIn()) { if($route->aircraftlevel > Auth::$userinfo->ranklevel) { continue; } } I do not know why parkho uses this config setting as it does not exist on the app.config.php file on mine phpvms version and i think on yours too. Check this and let me know if it works... Quote
Junior Posted June 4, 2014 Report Posted June 4, 2014 thank you a lot for this but unfortunately its not working.. pilot still can bid in any aircraft 1 Quote
Jakubovsky Posted July 15, 2014 Report Posted July 15, 2014 Its possilbe add on: someting like that When you arrival on airport "B" you can book flights only from airprot "B", but if some Pilots take that flight and on airprot "B" not aviable AC... Only take ticket to home base or airprot than stay some AC Quote
amir Posted February 5, 2015 Report Posted February 5, 2015 Hi, is there any way to make this module to show aircraft name WITH their register in the search page ? actually at i want to show the results like : FOKKER100(register) instead of FOKKER100 Quote
amir Posted February 7, 2015 Report Posted February 7, 2015 Hi, is there any way to make this module to show aircraft name WITH their register in the search page ? actually at i want to show the results like : FOKKER100(register) instead of FOKKER100 no one knows? Quote
Fernando Posted February 11, 2015 Report Posted February 11, 2015 The system when you search for flights departing from the current place, it returns flights from its current location and other airports. example I'm in SBCF want to fly SBBR I believe that could appear only flights departing from this airport. SBCF - SBBR SBCF - SBBR SBCF- SBBR SBCF- SBBR However, the system returns thus SBCF-SBBR SBRF-SBBR SBGL-SBBR SBSV-SBBR 1 Quote
Fernando Posted May 1, 2015 Report Posted May 1, 2015 Pako, Any idea on the module just bring flights departing from my last arrival? Quote
Iraklis Posted July 10, 2015 Report Posted July 10, 2015 thank you a lot for this but unfortunately its not working.. pilot still can bid in any aircraft did the same..not working!!! Quote
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.