Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. You could go to your DB/ phpvms_airlines/ structure and change the Length/Values of "code" column from "3" to "5". Then you can add an airline or edit your current airline to a 5 letter code.
  2. It's because the PIREP is still in PIREPS table in database. I think it's not deleted there, so look for it in the table and delete it manually.
  3. I think yes. Remove it to see if the page is fixed.
  4. Yes, that's what i meant Daniel Just didn't write it right.
  5. Where are you loading the page from? Is it in pilot profile? or front page?
  6. I think you added "Announcement" at top and that's why. If you need that, I suggest you add it to your schedule_results.tpl or the search form cause those 2 are different and the module shows the search form at the top and then renders the schedule_results at the bottom once you click on search button.
  7. As stated above, adding it manually is a lot easier.
  8. Can you attach only the file you have edited?
  9. Right after this: foreach($allroutes as $route) { Don't forget to close the bracket after 'continue;'
  10. Okay. For phpMyadmin the command is the same you just need to enter it correctly in "SQL" tab in there. Update:: I just check my DB, if you hit the SQL tab there is button that says "update" click that and the command comes up then modify it to your need and click go.
  11. It's not bug. It happens when you actually try to do some changes and somehow the changes doesn't match the website configuration, so if you have changed or modified your front page then you need to make sure what you have done is correct. What i think is that to log in part at the top is not as default, so you may want to check that area or post what you need to do and we can help you sort it out.
  12. You would write in your Data.class.php like: public function update($id) { $sql = "UPDATE table_name SET table_column = '$id' "; DB::query($sql); } Now to pass the value to the function you would write: YourData::update(value); Hope this will help
  13. Send your TPL to my email and I'll fix it for you. cheers
  14. Here it is: <?php if(Auth::LoggedIn()) { if(Config::Get('RESTRICT_AIRCRAFT_RANKS') === true && Auth::LoggedIn()) { $aircraft = OperationsData::getAircraftByReg($route->registration); $pilotrank = Auth::$userinfo->ranklevel; $aircraftrank = $aircraft->ranklevel; if($aircraftrank > $pilotrank) { echo 'Sorry rank too low!'; } else { ?> <a id="<?php echo $route->id; ?>" class="addbid" href="<?php echo url('/schedules/addbid');?>"><strong>Book Flight</strong></a> <?php } ?>
  15. Yes, But you'll need to apply this inside the <td> tag that contains the "Add Bid" link. If you paste that part I can apply it for you.
  16. Yes it's possible by showing pilots schedules from their last arrival airport. Are you using the default schedule search? If yes add the following right after the "foreach" loop in your schedue_results.tpl: $pilotid = Auth::$userinfo->pilotid; $pirep = PIREPData::getLastReports($pilotid, 1); if($pirep->arricao != $route->depicao) { continue; }
  17. Here is another approach: if(Auth::LoggedIn()) { if(Config::Get('RESTRICT_AIRCRAFT_RANKS') === true && Auth::LoggedIn()) { $aircraft = OperationsData::getAircraftByReg($route->registration); $pilotrank = Auth::$userinfo->ranklevel; $aircraftrank = $aircraft->ranklevel; if($aircraftrank > $pilotrank) { continue; } And make sure you have set the aircraft ranking higher than your pilot ranking to see if it works.
  18. Do you have the following added to your local.config.php? If not you need to add that. Config::Set('RESTRICT_AIRCRAFT_RANKS', true);
  19. Change this: if(Auth::LoggedIn()) { if(Config::Get('RESTRICT_AIRCRAFT_RANKS') === true && Auth::LoggedIn()) { if($route->ranklevel > Auth::$userinfo->rankid) { continue; } To this: if(Auth::LoggedIn()) { if(Config::Get('RESTRICT_AIRCRAFT_RANKS') === true && Auth::LoggedIn()) { if($route->aircraftlevel> Auth::$userinfo->rankid)//$route->ranklevel is changed to $route->aircraftlevel. { continue; } And that should resolve the issue.
  20. I think you have empty pilotid column for those rows in activity table.
  21. yw
  22. The code: <h3>Activities</h3> <hr> <table> <?php $count = 10; $allactivities = ActivityData::getActivity(array(), $count); foreach($allactivities as $activity) { $pilot = PilotData::getPilotData($activity->pilotid); ?> <tr><td><?php echo $pilot->code.$pilot->pilotid ;?> - <?php echo $pilot->firstname.' '.$pilot->lastname ;?> ( <img src="<?php echo Countries::getCountryImage($pilot->location);?>"> ) - <?php echo $activity->message ;?> </td></tr> <?php } ?> </table> Screenshot:
  23. lol! Of course you do. Let me come up with the code and let you know.
  24. rgr, yw
×
×
  • Create New...