Stealthbird97 Posted December 25, 2012 Report Share Posted December 25, 2012 ok. Quote Link to comment Share on other sites More sharing options...
Moderators Parkho Posted December 27, 2012 Moderators Report Share 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 Link to comment Share on other sites More sharing options...
pavul0n Posted December 31, 2012 Report Share Posted December 31, 2012 And how about Flight Booking v2? Any progress? Quote Link to comment Share on other sites More sharing options...
Moderators Parkho Posted December 31, 2012 Moderators Report Share Posted December 31, 2012 I don't think I'll be spending time on v2.0 but I will on v3.0 Quote Link to comment Share on other sites More sharing options...
pavul0n Posted January 1, 2013 Report Share Posted January 1, 2013 And how things are going with 3.0? 1 Quote Link to comment Share on other sites More sharing options...
loplo Posted January 23, 2013 Author Report Share 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 Link to comment Share on other sites More sharing options...
Kapitan Posted March 23, 2013 Report Share Posted March 23, 2013 Can someone help me with display them 2 images ? like on screenshot Quote Link to comment Share on other sites More sharing options...
GustavoMinuano Posted April 20, 2013 Report Share Posted April 20, 2013 Parkho! FBS V3.0 are avaliable for download? Thanks Quote Link to comment Share on other sites More sharing options...
loplo Posted April 24, 2013 Author Report Share Posted April 24, 2013 Is there a way to hide the disabled flights from the search results? Quote Link to comment Share on other sites More sharing options...
Moderators Parkho Posted April 24, 2013 Moderators Report Share 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 Link to comment Share on other sites More sharing options...
Moderators Parkho Posted April 24, 2013 Moderators Report Share 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 Link to comment Share on other sites More sharing options...
loplo Posted April 24, 2013 Author Report Share 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 Link to comment Share on other sites More sharing options...
Moderators Parkho Posted April 24, 2013 Moderators Report Share Posted April 24, 2013 Sorry. I changed the code: if($route->enabled == "0") { continue; } 1 Quote Link to comment Share on other sites More sharing options...
loplo Posted April 24, 2013 Author Report Share Posted April 24, 2013 That did the trick. Thanks! Quote Link to comment Share on other sites More sharing options...
Moderators Parkho Posted April 24, 2013 Moderators Report Share Posted April 24, 2013 Perfect. Quote Link to comment Share on other sites More sharing options...
GustavoMinuano Posted April 24, 2013 Report Share 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 Link to comment Share on other sites More sharing options...
michael Kraan Posted August 5, 2013 Report Share 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 Link to comment Share on other sites More sharing options...
Marmus Posted August 16, 2013 Report Share 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 Link to comment Share on other sites More sharing options...
loplo Posted December 21, 2013 Author Report Share 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 Link to comment Share on other sites More sharing options...
SiedlerP Posted January 16, 2014 Report Share 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 Link to comment Share on other sites More sharing options...
SiedlerP Posted January 29, 2014 Report Share Posted January 29, 2014 fixed!!! Quote Link to comment Share on other sites More sharing options...
Junior Posted June 3, 2014 Report Share 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 Link to comment Share on other sites More sharing options...
Moderators servetas Posted June 3, 2014 Moderators Report Share 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 Link to comment Share on other sites More sharing options...
Junior Posted June 4, 2014 Report Share Posted June 4, 2014 thank you a lot for this but unfortunately its not working.. pilot still can bid in any aircraft 1 Quote Link to comment Share on other sites More sharing options...
Jakubovsky Posted July 15, 2014 Report Share 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 Link to comment Share on other sites More sharing options...
amir Posted February 5, 2015 Report Share 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 Link to comment Share on other sites More sharing options...
amir Posted February 7, 2015 Report Share 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 Link to comment Share on other sites More sharing options...
Fernando Posted February 11, 2015 Report Share 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 Link to comment Share on other sites More sharing options...
Fernando Posted May 1, 2015 Report Share Posted May 1, 2015 Pako, Any idea on the module just bring flights departing from my last arrival? Quote Link to comment Share on other sites More sharing options...
Iraklis Posted July 10, 2015 Report Share 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 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.