Jump to content

loplo

Members
  • Posts

    110
  • Joined

  • Last visited

Everything posted by loplo

  1. 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?
  2. I'm getting the Open Flash Chart JSON Parse Error [syntax Error] Error at character 0, line 1: 0: <br /> Erorr on charts. I think my hosting provider just updated the PHP. PHP version 5.4.22 Any workaround on this?
  3. Just finished my second flight, and the landing rate matched this time. Thanks for the clarifications.
  4. Great addon. It would be great to be able to change the FPL. Sometimes there are last minute changes, due to NOTAMs, etc, and having the option to file a new FPL would me more than helpful. LE Some issues: 1. "You Landed @ 57 Knots and with 0 Vertival Speed". Actually I've landed with 117kt at a vertical speed of -158 ft/min. I really don't know where that 57 and 0 came from. 2. typo "Vertival" -> "Vertical" 3. "Below Fl100 you need to turn on the landing lights" it is not completely correct. It is encouraged to have the landing lights on, but it is not mandatory. Lots of pilots turn on the landing lights at "gear down" or after receiving landing celarance 4. some posiotion reports would also be nice, let's say every 30 or 15 minutes. Coordintates, altitude and speed. 5. reaching and leaving cruising altitude would be also nice to have, in the log.
  5. 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.
  6. Is there a way to hide the disabled flights from the search results?
  7. Is there a way to test this or I have to wait x days, until I retire automatically. I've tried to retire myself, manually, from the backend, but this way no email is sent.
  8. Sorry for the misunderstanding. So, my VA is set to retire pilots after 30 days of inactivity. The pilots receive an email to let them know that their status has been changed. The subject of the received email is "SITE_NAME: You've been marked as retired" instead of "xxxxxx : You've been marked as retired". xxxxxx being the VA name.
  9. I'm talking about the automated email, the one is sent out to the member to notify him that his status changed to retired. The subject of the received emails, now, looks like this: "SITE_NAME: You've been marked as retired" The site name, in any other emails is OK, but the one that is announcing the retirement.
  10. Hey guys, the SITE_NAME is not being recognized in the email subject. Is there a workaround?
  11. 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.
  12. On the public profile, I'm getting "Pilot is currently Offline", no matter what.
  13. AFAIK my cron is working good. All other calculations are done correctly, signatures generated, etc.
  14. I'm getting Parse error: syntax error, unexpected T_PUBLIC in /home/taromvir/public_html/core/common/SchedulesData.class.php on line 886 line 886 is public static function removeBid($bidid) - the next function. Any solution!? LE there was a missing closing bracket } LE2 It's not working. I've also created a cronjob to run "maintenance" every hour and still no joy. Anyone?!
  15. 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.
  16. I see. I thought it's going to be just an addon, like the others. I assume it's not going to be free, or maybe not even public.
  17. Parviz, when are you going to release this addon?
  18. In pilot public profile I'm getting "Pilot is currently Offline" even if the pilot is on and flying. Anyone knows what could be wrong? <?php $usersOnline = StatsData::UsersOnline(); $check = false; if($usersOnline != null || !empty($usersOnline)){ foreach($usersOnline as $user){ if($user->pilotid == $pilot->pilotid){ $check = true; }else{ $check = false; } if($check){ break; } } if($check){ echo 'Pilot is currently Online'; }else{ echo 'Pilot is currently Offline'; } }else{ echo 'Pilot is currently Offline'; } ?>
  19. Guys, could you put all the changes needed in one post? It's pretty hard to follow up. Thanks in advance.
  20. It is in the third row. "Check out the docs". You have to go into your backend and edit/remove the news.
  21. No problems on my side. Although I have one more question parkho. Is there a way to show only the flights available for the certain day?
  22. 1. anythig, deptime would be much than enough. 2. I can't keep 1ac/schedule. Unrealistic. 3. Looking forward.
×
×
  • Create New...